Visual Basic 2010 Express Edition

23.01.2020

With the ever-increasing focus on technology start-ups, there’s no better time to start developing or simply learning to code. Having made that decision, you might be left scratching your head. Choosing a language to learn may be the next logical step, but after that you will want to know what software you need to code.

  1. Microsoft Visual Basic 2010 Express Edition Download

Microsoft Visual Studio 2010 Express is a basic and free toolkit to allow you to develop and build applications for the Web, your smart phone, desktop or the cloud.While billed as software for any level of developer, the people most likely to make use out of this toolkit are beginners. Being free means you don’t have to make any costly commitments to software, which you do not know that you want to keep. Visual Studio 2010 Express works well by integrating the.NET Framework alongside the two supported programming languages: Visual Basic and C#. The suite is easy to use with a shallow learning curve to encourage the amateur user.Pro's: Basic suite that is easy to pick up.Con's: Limited in what it can achieve: either through number of languages or possible application it can create.Conclusion: Visual Basic Studio Express 2010 is, as its name would indicate, an express product offering the very basic options you will need to get your first web or smart phone applications up and running. Before making the commitment to a much more expensive suite such as the Visual Studio that this is a part of, you may find it a wise idea to test out the waters first of all.If you are a dedicated developer, it is very unlikely you will need this but for a newbie or student, there’s nothing better.

Microsoft Visual Basic 2010 Express Edition Download

Edition

Visual Basic 2010 is the version ofVisual Basic launched by Microsoft in 2010.VB2010 is almost similar to Visual Basic2008, but it has added many new features. Like Visual Basic2008, Visual Basic 2010 is also a full fledged Object-OrientedProgramming(OOP) Language, so it has caught up with other OOPlanguages such as C, Java,C# and others.However, you don't have to know OOP to learnVB2010.

In fact, if you are familiar with Visual Basic6, you can learn VB2010 effortlessly because the syntax andinterface are similar. Visual Basic 2010 Express Edition isavailable free for download from the Microsoft site. Click onthis link todownload Vb2010. After installation, you need to register your copy of Visual Basic 2010 Express, otherwise, it will expire in 30 days.The registration is free provided you have a Microsoft account. 1.1 The Visual Basic 2010 Integrated Development EnvironmentThe IntegratedDevelopment Environment when you launch VB2010 Express isshown in the diagram below.

The IDE Start Page consists of afew sections, namely:. The NewProject/Open Project section. The RecentProjects section that shows a list of projects thathave been created by you recently. The GettingStarted Pane- It provides some helpful tips to quicklydevelop your applications. The Latest Newssection- It provides latest online news about Visual Basic2010 Express. It will announce new releases andupdates. The Propertiessection1.2 Creating Your First ApplicationTo start creating your first application, you needto click on New Project.

The following VB2010 New Project dialog boxwill appear.The dialog box offers you five types ofprojects that you can create. As we are going to learn tocreate windows Applications, we will select Windows FormsApplication.At the bottom of this dialog box, you canchange the default project name WindowsApplication1to some other name you like, for exampe,myFirstProgram.

After you have renamed the project, click OKto continue. The following IDE Windows will appear, it isalmost similar to Visual Basic 6.

It consists of an emptyform, the toolbox tab and the properties. The layout isslightly different from vb2008 as the Toolbox is not shownuntil you click on the Toolboxtab.When you click on the Toolbox tab, the common controls Toolboxwill appear.Now drag the button control into the form, and change its defaultText Button1 to OK in the properties window, theword OK will appear on the button in the form, as shown below:Next, click on the OK button and the code window appears. Enter thecode as follows:When you run the the program and click on the OK button, a dialogbox will appear and display the 'WELCOME TO VISUAL BASIC 2010'message,as shown below.

Comments are closed.