• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Visual Studio 2010 Tutorials?

Adigo

Member
I'm in a SQL database class. We need to program a database and a application for our final project. My programming experience is very small. I have the database done I just need to make a Windows APP for it. Is there any nice tutorial sites for Windows form applications with SQL databases? I'm using Visual Studio 2010.
 
What language do you want to use? Also, you should realize that there are several ways to interact with SQL databases.
 
What language do you want to use? Also, you should realize that there are several ways to interact with SQL databases.

We have the option. We can create a Windows Application (C+) or an ASP.NET web application. I have very little programming experience, so whatever is easier.
 
We have the option. We can create a Windows Application (C+) or an ASP.NET web application. I have very little programming experience, so whatever is easier.

Is C++ a requirement for a standalone app? Because C# would likely be a lot easier to get started with.
 
@OP
Shouldn't you have taken some programming intro course first before taking a course like this? I'd expect it to be a prerequisite too...
If you're comfortable with web techs, you can use ASP.NET, otherwise I'd rather use C++ or C# for standalone apps and not get involved with learning extra stuff if the focus is on database programming.
 
No prerequisite.. which pissed me off because the prof is having us create an application. Anyways without going into too much detail allot of students are having issues with this course.

@OP
Shouldn't you have taken some programming intro course first before taking a course like this? I'd expect it to be a prerequisite too...
If you're comfortable with web techs, you can use ASP.NET, otherwise I'd rather use C++ or C# for standalone apps and not get involved with learning extra stuff if the focus is on database programming.
 
C# is pretty easy to create a simple GUI application.

C++ is a bit weird. The Windows windowing system is weird and confusing. I've never actually coded a GUI in C++ so maybe there are some templates or starter code that can extract out the weirdness.
 
Back
Top