Could anyone give the reason why this is happening:
------------------------------------------------------
Dim a1, a2, a3, a4, a5, a6, a7, a8 as Integer
a1=a2=a3=a4=a5=a6=a7=a8=0
msgbox ("a1:" & a1) 'Here the value of a1 is -1 and values
of a2 thru a8 are 0
------------------------------------------------------
Dim a1, a2, a3, a4, a5, a6, a7, a8 as Integer
a1=a2=a3=a4=a5=a6=a7=0
msgbox ("a1:" & a1) 'Here the value of a1 is 0 and values
of a2 thru a7 are 0
------------------------------------------------------
Cant I initialize values of more than 7 variables at a
time?