L14: Working with Variables Flashcards
1
Q
a declaration telling VB that you’re setting up a variable
A
Dim
2
Q
VB looks for the name of your variable
A
Number1
3
Q
tells VB that the variable is going to be a number or an integer
A
As Integer
4
Q
it means “assign a value of”
A
=
5
Q
no other part of the program can see this code except for our button
A
private
6
Q
short for Subroutine, tells VB that some code follows and needs to be executed
A
sub
7
Q
subroutine ends here, signifies end of code
A
end sub
8
Q
variables that can also be names or texts
A
string variables