From Access97 Help file, I know I can declare a dynamic array in the way as following:<br>
<br>
Dim sngArray() As Single<br>
<br>
However, when I ran the following code:<br>
<br>
sngarray(0)=5.5<br>
<br>
I got the error message "subscript out of range."<br>
<br>
So, what exactly is "Dynamic array" in Visual Basic?<br>
<br>
Dim sngArray() As Single<br>
<br>
However, when I ran the following code:<br>
<br>
sngarray(0)=5.5<br>
<br>
I got the error message "subscript out of range."<br>
<br>
So, what exactly is "Dynamic array" in Visual Basic?<br>