We’re Engage

Your partner in turning your vision into technical excellence.

Start Your Journey With Us →

For over 25 years, we’ve combined our technical expertise with a partnership-focused approach𑁋delivering results that truly speak for themselves.

What truly sets us apart is how we engage with our partners. We take the time to understand what matters most to them, which is why every approach we take is uniquely tailored to their specific solution.

Discovery & Strategy

We kick off every project by working closely with you and your team in a discovery meeting to understand your vision and needs. Depending on the complexity and scale of our proposed solution, we’ll put together a team that includes project managers, designers, developers, or analysts, all tailored to your specific project. We’ll then present those custom solutions, discuss timelines, and clarify data requirements to make sure everyone is aligned from the start.

User Experience Design

Our design process is rooted in understanding your users and their behaviors. We gather user insights through research, interviews, and questionnaires which inform our design decisions. By focusing on user-centered and intentional designs, we create experiences that resonate with your audience.

Software Development

Our team works closely with you to create a solution that is both scalable and cost-effective. We keep the lines of communication open to ensure we're getting quick feedback from you at every stage. This allows us to continuously improve the solution and guarantee that we deliver the best possible results.

Continuous Optimization

As your partner, we view your solution as a long-term asset that we've designed to evolve alongside your growing needs. Projects typically unfold in multiple phases with each phase designed to optimize performance and ensure lasting success. Your dedicated team will equip you with actionable insights and best practices to keep you informed and supported with regular updates and performance improvements.

“Unlike large software companies where you’re just a number, Engage is a partner that listens, communicates, and adapts to our needs—not just for development, but for the years to come. That’s exactly what we were looking for, and we found it in Engage.”

Matt Wells, Vice President Mid-west Truckers Association Inc

Latest News

Editing .SqlDataProvider scripts within Visual Studio

I had finally had it.  I was no longer accepting the lack of tool support while editing the .SqlDataProvider scripts for DotNetNuke modules.  I needed to figure out a way to make Visual Studio treat those files as if they ended with .sql instead of .SqlDataProvider so that it would give me syntax highlighting for my SQL scripts.  Finally, I found an article about doing the same sort of thing for Torque files.  I don't have any idea what Torque is, but what I found there seemed to do the trick.

 NOTE: The below tip involves editing the registry.  No warranty is expressed or implied.  YMMV.

What I learned from the above linked article is that the file associations are controlled in the registry.  By simply adding a .sqldataprovider key to the correct location and giving it the same value as the .sql key, everything magically works as expected.

The key to create is HKLM:\SOFTWARE\Microsoft\VisualStudio\[version]\Languages\File Extensions\.sqldataprovider where [version] is 7.1 for Visual Studio .NET 2003, 8.0 for Visual Studio 2005, etc.  Those are the two versions I updated, so those are the two I'm sure of.  You should be able to find other versions without too much trouble.  If you're into PowerShell (I'm getting there), here are the four separate commands to run in order to add this functionality to those two versions of Visual Studio.

For Visual Studio .NET 2003:

New-Item -Path 'HKLM:\SOFTWARE\Microsoft\VisualStudio\7.1\Languages\File Extensions\.sqldataprovider'
set-itemproperty -Path 'HKLM:\SOFTWARE\Microsoft\VisualStudio\7.1\Languages\File Extensions\.sqldataprovider' -name "(default)" -value "{A5C4C661-62BB-11D1-9CFD-0000F81E818C}"

 For Visual Studio 2005:

New-Item -Path 'HKLM:\SOFTWARE\Microsoft\VisualStudio\8.0\Languages\File Extensions\.sqldataprovider'
set-itemproperty -Path 'HKLM:\SOFTWARE\Microsoft\VisualStudio\8.0\Languages\File Extensions\.sqldataprovider' -name "(default)" -value "{FA6E5E79-C8EE-4D37-B79A-5067F8BD5630}"

**UPDATE** For Visual Studio 2008:

New-Item -Path 'HKLM:\SOFTWARE\Microsoft\VisualStudio\9.0\Languages\File Extensions\.sqldataprovider'
set-itemproperty -Path 'HKLM:\SOFTWARE\Microsoft\VisualStudio\9.0\Languages\File Extensions\.sqldataprovider' -name "(default)" -value "{FA6E5E79-C8EE-4D37-B79A-5067F8BD5630}"

**UPDATE** I just upgraded to Vista x64, and the registry path changed a bit (as found in a comment to a similar blog post).  I think the change is because of x64, rather than Vista, though if you're on some other x64 OS, you might want to double-check before making this change.  That said:

For Visual Studio 2008 on Vista x64:

New-Item -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\9.0\Languages\File Extensions\.sqldataprovider'
set-itemproperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\9.0\Languages\File Extensions\.sqldataprovider' -name "(default)" -value "{FA6E5E79-C8EE-4D37-B79A-5067F8BD5630}"

 **UPDATE** It looks like this is no longer still required for Visual Studio 2010.  In the Options dialog for Visual Studio, you can go to the File Extensions node under Text Editor, and from there map SqlDataProvider to the Transact-SQL Editor directly within the IDE (instead of directly monkeying around with the registry)  Despite "Transact-SQL Editor" showing up as an option within the "All Extensions" page of "Text Editor" options, I've had no luck getting that to cause any sort of syntax highlighting. However, after rummaging through the registry, I did find the GUID for the VS 2010 SQL editor (which wasn't in the same place as the previous versions, but in HKEY_USERS\.DEFAULT\Software\Microsoft\VisualStudio\10.0_Config\Languages\File Extensions\.SQL).  This worked for me on Visual Studio 2010 on Windows 7 x64:

New-Item -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\10.0\Languages\File Extensions\.sqldataprovider'
set-itemproperty -Path 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\10.0\Languages\File Extensions\.sqldataprovider' -name "(default)" -value "{c4d96929-a9b0-42cc-b3e0-adac0435d7f2}"

Hope it helps!

Turn Your Vision into Technical Excellence

Partner With Us →
© 1999-2025 Engage