0% found this document useful (0 votes)
88 views

Lesson 2: Building Visual Basic Applications: 2.1 Creating Your First Application

This document discusses creating a basic Visual Basic application in 3 steps: 1. Design the user interface with labels, command buttons, and other controls. 2. Set properties for each control like font, size, and alignment to determine appearance and behavior. 3. Write event procedures with VB code to specify how the application responds to user interactions like button clicks or key presses. Although coding requires practice, Visual Basic is relatively easy to learn due to its English-like syntax.
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
88 views

Lesson 2: Building Visual Basic Applications: 2.1 Creating Your First Application

This document discusses creating a basic Visual Basic application in 3 steps: 1. Design the user interface with labels, command buttons, and other controls. 2. Set properties for each control like font, size, and alignment to determine appearance and behavior. 3. Write event procedures with VB code to specify how the application responds to user interactions like button clicks or key presses. Although coding requires practice, Visual Basic is relatively easy to learn due to its English-like syntax.
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

Lesson 2: Building Visual Basic Applications

partner-pub-3033

ISO-8859-1

Search

2.1 Creating Your First Application In this section, we will not go into the technical aspects of Visual Basic programming
yet, what you need to do is just try out the examples below to see how does in VB program look like: Example 2.1.1 is a simple program. First of all, you have to launch Microsoft Visual Basic 6. Normally, a default form with the name Form1 will be available for you to start your new project. Now, double click on Form1, the source code window for Form1 as shown in figure 2.1 will appear. The top of the source code window consists of a list of objects and their associated events or procedures. In figure 2.1, the object displayed is Form and the associated procedure is Load. Figure 2.1 Source Code Window

When you click on the object box, the drop-down list will display a list of objects you have inserted into your form as shown in figure 2.2. Here, you can see a form with the name Form1, a command button with the name Command1, a Label with the name

Label1 and a Picture Box with the name Picture1. Similarly, when you click on the procedure box, a list of procedures associated with the object will be displayed as shown in figure 2.3. Some of the procedures associated with the object Form1 are Activate, Click, DblClick (which means Double-Click) , DragDrop, keyPress and more. Each object has its own set of procedures. You can always select an object and write codes for any of its procedure in order to perform certain tasks. Figure 2.2: List of Objects Figure 2.3: List of Procedures

You do not have to worry about the beginning and the end statements (i.e. Private Sub Form_Load.......End Sub.); Just key in the lines in between the above two statements exactly as are shown here. When you press F5 to run the program, you will be surprise that nothing shown up .In order to display the output of the program, you have to add the Form1.show statement like in Example 2.1.1 or you can just use Form_Activate ( ) event procedure as shown in example 2.1.2. The command Print does not mean printing using a printer but it means displaying the output on the computer screen. Now, press F5 or click on the run button to run the program and you will get the output as shown in figure 2.4. You can also perform arithmetic calculations as shown in example 2.1.2. VB uses * to denote the multiplication operator and / to denote the division operator. The output is shown in figure 2.3, where the results are arranged vertically.

Example 2.1.1 Figure 2.4 : The output of example 2.1.1 Private Sub Form_Load ( )

Form1.show Print Welcome to Visual Basic tutorial End Sub

Example 2.1.2 Private Sub Form_Activate ( ) Print 20 + 10 Print 20 - 10 Print 20 * 10 Print 20 / 10 End Sub Figure 2.5: The output of example 2.1.2

You can also use the + or the & operator to join two or more texts (string) together like in example 2.1.4 (a) and (b) Example 2.1.4(a) Example 2.1.4(b) Private Sub Private Sub A = Tom B = likes" C = to" D = eat" E = burger" A = Tom B = likes" C = to" D = eat" E = burger" Print A & B & C & D & E

Print A + B + C + D + E End Sub

End Sub

The Output of Example 2.1.4(a) &(b) is as shown in Figure 2.7.

2.2 Steps in Building a Visual Basic Application


Step 1 : Design the interface You need to design an interface that is user-friendly and easy to navigate. Give clear instructions by typing suitable captions for the command buttons and labels. If you design the program for fun and games, it has to be reasonably attractive. You can look at the interface of my Star War game, as shown below:

Step 2 : Set properties of the controls (Objects) Each Visual Basic control has its own properties. For example, a textbox has font color property, font size property, text alignment property and more. Setting properties will determine how a control looks and behaves. Therefore, we need to set suitable properties for a control so that the program will run as intended to be. You will more about properties in the next chapter Step 3 : Write the event procedure

The final and the most difficult step is to write the event procedure. An event procedure consists of VB code that control how a VB event executes. We have to write code for any possible event trigger by the user, like clicking the button or pressing a key on the keyboard. Although writing code is not easy, fortunately Visual Basic programming language is the easiest to master amongst all the programming languages. It is English-like so if you know English you should have no problem in mastering the language. We will guide you step by step on writing the VB code in the coming chapters.

<Previous Lesson> <<Home>> <Next Lesson>

You might also like