[Contents]>>[Lesson 2]
- Visual Basic 2013 Express
- Visual Basic 2013 Express For Desktop Window
- Download Visual Basic 2013 Express
- Visual Studio Community 2013 Download
Microsoft Visual Basic 2013 Step By Step Book. Book Desciption: This books is Free to download. 'Microsoft Visual Basic 2013 Step By Step book' is available in PDF Formate. Learn from this free book and enhance your skills. Language: English. When the operating system is in high-DPI mode, applications that use the Microsoft Foundation Classes (MFC) library of Microsoft Visual C 2013 may behave incorrectly. For example, icons in an application's ribbon may be drawn at incorrect positions. Office 2013 Visual Basic for Applications (VBA) errors. 'The Visual Basic for Applications (VBA) macros in this workbook are corrupted and have been deleted.' Opening existing workbooks. The Visual Basic, Macros, and Record Macro options are disabled under the Developer and View ribbon. Visual Basic 3.0 was released in the summer of 1993 and came in Standard and Professional versions. VB3 included version 1.1 of the Microsoft Jet Database Engine that could read and write Jet (or Access) 1.x databases. Visual Basic 4.0 (August 1995) was the first version that could create 32-bit as well as 16-bit Windows programs. Microsoft Visual Basic 2013 is designed around an intuitive drag and drop interface. To create an application, you need to make one or more forms, each of which will correspond to a screen in the application Then you need to fill them with various 'objects,' which can be buttons, text fields, menus and other options.
1.1 Introduction to Visual Basic 2013
Visual Basic Express 2013 is the version of Visual Basic launched by Microsoft in 2013. It is a fully object-oriented programming language implemented on the .NET Framework. Similar to Visual Basic 2012, Visual Basic Express 2013 is integrated with other Microsoft Programming languages C# and C++ in an IDE known as Visual Studio 2013. Although Microsoft had launched the latest Visual Studio 2017, you can still download the older version Visual Studio 2013 Express Edition from the following link
Upon clicking the download link, you will be presented with the screen as shown in Figure 1.1
As we are focusing on learning VB2013 for desktop, select Visual Studio Express 2013 for Windows Desktop from the available links. Daggerwin fs19 competition multiplayer.
1.2 Visual Studio 2013 Integrated Development Environment
The Integrated Development Environment when you launch Visual Studio 2013 Express is shown in Figure 1.1.
Figure 1.1: Visual Studio 2013 Start Page
1.3 Creating a New Project in Visual Studio 2013
The initial window is the Start Page tab. To start a new Visual Studio Express 2013 project, click on New Project under the Start section to launch the Visual Studio 2013 New Project page as shown in Figure 1.2 below. You can also choose to open a recent project:
Figure 1.2: Visual Studio 2013 Project Page
The New Project Page comprises three templates, Visual Basic, Visual C# and Visual C++. Since we are only learning Visual Basic 2013, we shall select Visual Basic. Http_referer php. Visual Basic 2013 offers you four types of projects that you can create, they are Windows Forms Application, WPF Application, Console Application and Class Library.
Since we only learn how to create Windows applications, we shall select Windows Forms Application.At the bottom of this dialog box, you can change the default project name WindowsApplication1 to some other name you like, for example, MyFirstProgram. After you have renamed the project, click OK to continue. The following IDE Windows will appear, it is similar to Visual Basic 2012. The Toolbox is not shown until you click on the Toolbox tab.When you click on the Toolbox tab or use the shortcut keys Ctrl+w+x, the common controls Toolbox will appear.
Figure 1.3: Visual Basic 2013 IDE
Visual Basic 2013 Express
VB2013 IDE comprises a few windows, the Form window, the Solution Explorer window and the Properties window. It also consists of a toolbox which contains many useful controls that allows a programmer to develop his or her Visual Basic 2013 programs. The toolbox is shown in Figure 1.4.
Figure 1.4: Visual Basic 2013 Toolbox
Now, we shall proceed to show you how to create your first program. First, change the text of the form to My First Program in the properties window, it will appear as the title of the program. Next, insert a button and change its text to OK. The design interface is shown in Figure 1.5
Visual Basic 2013 Express For Desktop Window
Figure 1.5: The Design Interface
Now click on the OK button to bring up the code window and enter the following statement between Private Sub and End Sub procedure, as shown in Figure 1.6:
Figure 1.6: Vb2013 Code window
Now click on the Start on the toolbar or press F5 to run the program then click on the OK button, a dialog box that displays the 'My First Visual Basic 2013 Program″ message will appear, as shown in Figure 1.7:
Figure 1.7 The Message Box
Download Visual Basic 2013 Express
The function MsgBox is a built-in function of Visual Basic 2013 and it will display the text enclosed within the brackets.
Now you have created your first program, we shall learn more VB2013 programming techniques in coming lessons.