M
Mike D
I am trying to populate an array of an uknown deminsion. I am getting a
subscript error. Here is the code
Dim x, arRE_SEQUENCE_NUMBER
x = 0
If Not RS.Eof then
Do while Not RS.Eof
arRE_SEQUENCE_NUMBER(x) = RS("RE_SEQUENCE_NUMBER")
x = x + 1
RS.MoveNext
Loop
End If
What am I missing?
Mike
subscript error. Here is the code
Dim x, arRE_SEQUENCE_NUMBER
x = 0
If Not RS.Eof then
Do while Not RS.Eof
arRE_SEQUENCE_NUMBER(x) = RS("RE_SEQUENCE_NUMBER")
x = x + 1
RS.MoveNext
Loop
End If
What am I missing?
Mike