Scope of Variable
Declaration of Variable - PROCEDURE Level
Declaration of Variable - MODULE Level
Declaration of Variable - PROJECT Level
What is the difference between Dim,private,Public
Constant Variable
Private Sub CommandButton1_Click()
MsgBox pathname
End Sub
Private Sub CommandButton1_Click()
Const mont As Integer = 12
Dim permonth As Integer
permonth = 12000 / mont
MsgBox permonth
End Sub