VB2017 VB2015 VB2013 VB2012 VB2010 VB2008 VB6 VB Sample Codes 中文VB About Us

Lesson 9 Variables and Constants


In Lesson 8, we have understood the concept of data and learned about how to manage them in Visual Basic 2017. In this lesson, we will learn how to store the data and how to declare them. In Visual Basic 2017, data can be stored as variables or as constants. Variables are like mailboxes in the post office. The content of the variable changes every now and then, just like the mailboxes. In  Visual Basic 2017, variables are the specific areas allocated by the computer memory to store data.

9.1 Variable Names

Like the mailboxes, each variable must be assigned a name. To name a variable in Visual Basic 2017, you need to follow a set of rules as follows:

Some examples of valid and invalid variable names are displayed in Table 9.1

Table 9.1
Valid Names Invalid Name
 My_Name  My.Name
 VB2015  2015VB
 Long_Name_Can_beUSE  LongName&Canbe&Use                  *& is not acceptable

9.2 Declaring Variables

In Visual Basic 2017, you have to declare the variables before using them. To declare a variable, you need to assign a name to the variable and state its data type. If you fail to do so, the program will run into an error. Variables are usually declared in the general section of the code windows using the Dim statement.

Example 9.1

The syntax to declare a variable in Visual Basic 2017  is as follows:

Dim VariableName As DataType

If you want to declare more variables, you can declare them in separate lines or you may also combine more in one line, separating each variable with a comma, as follows:

Dim VariableName1 As DataType1, VariableName2 As DataType2, VariableName3 As DataType3

Example 9.2

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.LoadDim password As String
Dim MyName As String
Dim Num1 As Integer
Dim Num2 As Single
Dim Sum As Integer
Dim StartDate As Date
End Sub

You may also combine the above statements in one line, separating each variable with a comma, as follows:

Dim password As String, MyName As String, Num1 As Integer, Num2 as Single. Sum as Integer, StartDate as Date
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

Dim YourName as String="George"
Dim MyMsg As String
MyMsg = "Happy Birthday!" MsgBox(MyMsg&","&YourName) End Sub

Notice that you can assign a value to the string in one line using the = sign instead of declaring the variable and then give it a value in another line.

Dim YourName as String="George"

is same as

Dim YourName as String
YourName="George"

When you run the program, a message box that shows the text "Happy Birthday, George" will appear in a message box, as shown in Figure 9.1.

 
VB2015_fig9.1
Figure 9.1

9.3 Assigning Values to Variables

After declaring various variables using the Dim statements, we can assign values to those variables. The syntax of an assignment in Visual Basic 2015 is

Variable=Expression

*You may also declare a variable by assigning an initial value to it, as shown in the following examples:

Dim VarName as String="ABC"

Dim VarNum as Interger=100

The variable can be a declared variable or a control property value. The expression could be a mathematical expression, a number, a string, a Boolean value (true or false) and more, as illustrated in the following examples:

firstNumber=100
secondNumber=firstNumber-99
userName=”John Lyan”
userpass.Text = password
Label1.Visible = True
Command1.Visible = false
Label4.text = textbox1.Text
ThirdNumber = Val(usernum1.Text)
total = firstNumber + secondNumber+ThirdNumber
MeanScore% = SumScores% / NumSubjects%
X=sqr (16)
TrimString= Ltrim (“ Visual Basic”, 4)
Num=Int(Rnd*6)+1

An error occurs when you try to assign a value to a variable of incompatible data type. For example, if you have declared a variable as an integer but you assigned a string value to it, an error occurred, as shown in Example 9.3:

Example 9.3

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim YourMessage As Integer
YourMessage = "Happy Birthday!"
MsgBox(YourMessage)
End Sub

When you run the program, the following error messages will appear in a dialog box, as shown in Figure 9.2

VB2015_fig9.2

 Figure 9.2 

9.4 Scope of Declaration

In Visual Basic 2015, we usually use the Dim keyword to declare the data. However, you can also use other keywords to declare the data. Three other keywords are private, static and public. The forms are as shown below:

Private VariableName as Datatype
Static VariableName as Datatype
Public VariableName as Datatype

The above keywords indicate the scope of the declaration. Private declares a local variable or a variable that is local to a procedure or module. However, Private is rarely used, we normally use Dim to declare a local variable. The Static keyword declares a variable that is being used multiple times, even after a procedure has been terminated. Most variables created inside a procedure are discarded by Visual Basic when the procedure is terminated. Static keyword preserves the value of a variable even after the procedure is terminated. Public is the keyword that declares a global variable, which means it can be used by all the procedures and modules of the whole Visual Basic 2015 program.

 9.5 Declaring Constants

Constants are different from variables in the sense that their values do not change during the running of the program.The syntax to declare a constant in Visual Basic 2015 is

Const Constant Name As Data Type = Value

Example 9.4

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Const Pi As Single = 3.142
Dim R As Single = 10
Dim AreaCircle As Single
AreaCircle = Pi * R ^ 2
MsgBox("Area of circle with " & "radius" & R & "=" & AreaCircle)
End Sub

Press F5 to run the program and clicking the button will produce the following message:

VB2013_figure9.3
Figure 9.3


❮ Previous Lesson Next Lesson ❯


Copyright©2008 Dr.Liew Voon Kiong. All rights reserved |Contact|Privacy Policy