Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Having recently installed the beta of VS 2010, I'm curious whether anybody knows how to get it to do something that was quite straightforward with VS 6. To create a simple database browser in VS 6, you could create an MFC application using a database view, connected to (for example an ODBC connection. Then, the interesting part. In a normal application, doing a -double-click on the control will bring up a dialog that lets you connect that control to a member variable of the dialog class. In a database application like this, however, it brings up a dialog that lets you connect the control to a field in the database:

DB Field selection in Add Member Variable dialog

Having done this for the fields we care about, we can build the application (note that we haven't typed in a single line of code) and we can browse data from the database:

Browsing live data

At this point, we have live data being read from (in this case) a SQL Server database, and we can browse through it, modify data, etc. The development is about like we'd used something like Access, but the output is a standalone executable.

How can I do the same (or how close to the same can I get) using Visual Studio 2008 or 2010?

share|improve this question

1 Answer

The last remaining database project templates were removed in VS2008. Nobody writes code like this in C++ anymore. C# and VB.NET, their IDEs have very good dbase integration through the server explorer window. Give it a try, you'll find it easy going.

share|improve this answer
1  
Note that you can write .NET code in C++/CLI, if you are really looking for pain. I'd also suggest C# or VB.NET for new code, however. – OregonGhost Feb 8 '10 at 9:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.