Visual Studio 2013 Lesson 9: Variables and Constants
[Lesson 8] << [Contents] >> [Lesson 10]
9.1 Variable Names
In Visual Studio 2013 , each variable must be given a name. To name a variable in Visual Studio 2013 , you have to follow a set of rules.The following are the rules when naming the variables in Visual Basic. It must be less than 255 characters, no spacing is allowed, it must not begin with a number and period is not permitted
Examples of valid and invalid variable names are displayed in Table 9.1
Table 9.1:
Valid Names | Invalid Name |
---|---|
My_Computer | My.COmputer |
Smartphone123 | 123Smartphone |
Long_Name_Can_beUSE | LongName&Canbe&Use *& is not acceptable |
9.2 Declaring Variables
The syntax is as follows:
Dim VariableName As Data Type
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.1
Private Sub Form1_Load(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles MyBase.LoadDim password As String
Dim yourName As String
Dim firstnum As Integer
Dim secondnum As Integer
Dim total As Integer
Dim doDate As DateEnd Sub
You may also combine the above statements in one line , separating each variable with a comma, as follows:
Dim password As String, yourName As String, firstnum As Integer,………….
Example 9.2
Private Sub Button1_Click(sender As Object, e As
EventArgs) Handles Button1.Click
Dim YourMessage As String
YourMessage = "Happy Birthday!"
MsgBox(YourMessage)
End SubWhen you run the program, a message box that shows the text “Happy
Birthday!” will appear, as shown in 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 Studio 2013 is
Variable=Expression
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
In Visual Studio 2013 , 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.4:
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
Figure 9.2
You can either break the program and continue to run the program.
9.4 Scope of Declaration
In Visual Basic 2015, other than using the Dim keyword to declare the data, 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 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 finished, static keyword preserve 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 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 is
Const Constant Name As Data Type = Value
Example 9.4
P 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:
Figure 9.3