Visual Basic 2010 Full Version

Posted on by  admin

Not a trial, but a truly free version that they offer users to download....

I was wondering in case I somehow missed the option on their website. Any version of Visual Studio will do.

If not, are there any open-source alternatives (that have similar functionality, or possibly degraded equivalent) of Visual Studio? I am running on Windows 7 if that makes any difference...

Dark TemplarDark Templar

closed as off topic by Jarrod Roberson, GlenH7, Rein Henrichs, user40980, Kilian FothApr 24 '13 at 6:19

Questions on Software Engineering Stack Exchange are expected to relate to software engineering within the scope defined by the community. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about reopening questions here. If this question can be reworded to fit the rules in the help center, please edit the question.

4 Answers

Visual Studio Express is a set of freeware integrated development environments (IDE) developed by Microsoft that are lightweight versions of the Microsoft Visual Studio product line.

A comparison is available here.

If you are a student you may want to take a look at DreamSpark.

Jungle HunterJungle Hunter

The Express versions

The free versions of Visual Studio are 'degraded' version of their big brother, each dedicated to a specific task (or language for 2010 versions). 'Degraded' because Express versions do not support the whole Visual Studio plugin ecosystem. They are great if you are on your own, or even within a small team of developers. They are freely available for 30 days and then require a free product key for ongoing use after 30 days (it takes only a few seconds to get the key, no big deal).

Both 2010 and 2012 versions are still available and nearly all compatible with Windows 7. The lone exception being Visual Studio 2012 for Windows 8 which is technically installable on Windows 7, but requires considerable human effort to be able to build Win 8 apps.

Depending on what app you want to write, here is how to choose:

  • Windows Store (Win 8 and Win RT) apps:
    • Visual Studio 2012 Express for Windows 8
  • Desktop Windows/Console apps:
    • Visual Studio 2012 Express for Windows Desktop (Silverlight and XNA too)
    • Visual C++ 2010 Express (no WPF support, but COM+ support)
    • Visual C# 2010 Express
    • Visual Basic 2010 Express
  • Web apps (ASP.NET, MVC 3/4):
    • Visual Studio Express 2012 for Web
    • Visual Web Developer 2010 Express
  • Windows Phone (Silverlight 3/4, XNA) apps:
    • 7.5/8 apps: Visual Studio Express 2012 for Windows Phone
    • 7/7.5 apps: Visual Studio 2010 Express for Windows Phone

The full trial version

Note also that you can install trial versions of the Visual Studio 2012. If you are on your own it's overkill to try the 'Ultimate' or 'Premium' version. They all have a 90-day trial limit, which is pretty good I think to get a good feel about it, or even to conclude a small-sized project.

The 'Professional' version contains everything you need to build apps for everything mentioned above, plus other types of apps more related to a 'business' environment such as Sharepoint, Office, or Biztalk for example.

Community
JalaynJalayn

For open source, there are a couple like SharpDevelop and MonoDevelop.

BobBob

Well, you can use the free version of Visual Studio Express.For alternatives, you can try:

Personally, I prefer vim for development work (obviously on Linux).

HarshHarsh

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

Comments are closed.