Variables
Define Variables.
Define Variables with Dim, Public
Example:
Dim a as integer
Dim b as integer
Public i as integer
Here integer is a data type of a variable. Dim is work within the form or procedure. and public is work within the application.
Form1
Form2
Define Variables with Dim, Public
Example:
Dim a as integer
Dim b as integer
Public i as integer
Here integer is a data type of a variable. Dim is work within the form or procedure. and public is work within the application.
Form1
Form2


Comments