T
Thomas Scheiderich
I thought I read that the case for the variable names is important.
For example
Dim Wheel As Integer
Wheel here is a different variable from WHEEL.
Is this correct?
It doesn't seem to be in my code. In my code, I am changing WHEEL (just
for testing)many times and displaying Wheel. Wheel is always correct.
I would have assumed that Wheel would have been 0, since I only changed
WHEEL - if case is important.
Also, if you define a variable, does it get initialized?
For example
"Dim Wheel As Integer" is initialized to 0 and "Dim firstName As String"
is initialized to "".
Thanks,
Tom
For example
Dim Wheel As Integer
Wheel here is a different variable from WHEEL.
Is this correct?
It doesn't seem to be in my code. In my code, I am changing WHEEL (just
for testing)many times and displaying Wheel. Wheel is always correct.
I would have assumed that Wheel would have been 0, since I only changed
WHEEL - if case is important.
Also, if you define a variable, does it get initialized?
For example
"Dim Wheel As Integer" is initialized to 0 and "Dim firstName As String"
is initialized to "".
Thanks,
Tom