The following code produces the error "Subscript out of range" and I do not know why. Can someone please explain?
Dim errorc As Integer
Dim myarray() As Variant
errorc = 1
If Len(Me.txt_Listnum) = 0 Then
ReDim Preserve myarray(errorc)
myarray(errorc) = "Numer Listy"
errorc = errorc + 1
End If
If Len(Me.cbo_ByWho) = 0 Then
ReDim Preserve myarray(errorc)
myarray(errorc) = "Wystawione przez"
errorc = errorc + 1
End If
If Len(Me.cbo_ForWho) = 0 Then
ReDim Preserve myarray(errorc)
myarray(errorc) = "Wystawione na"
errorc = errorc + 1
End If
For i = LBound(myarray) To UBound(myarray)
msg = msg & myarray(i) & vbNewLine
Next i
If errorc > 0 Then
MsgBox "da" & msg
End If
Your code will fail if all of the form controls are populated and therefore
myarray
never getsReDim
'd. For an unititialized dynamic array,(i.e., one that has not been subsequently sized with
ReDim
), callingLBound()
orUBound()
on it will fail with "Subscript out of range."My VB(A) is far away, but still. the
(Re)Dim()
method defines the size of the array; the index of the array goes from 0 to size-1. Therefore, when you do this :ReDim Preserve myarray(errorc)
). it will have only 1 index : 0myarray(errorc) = "Numer Listy"
), which will fail with the error message you mention.So what you should to is organize things like this :
EDIT
Following your remark, I had a look at this page. I'm a bit surprised. From where I see it UBound should return the size of the array -1, but from the examples given it seems it returns the size of the array, point. So, if the examples on that page are correct (and your error seems to indicate they are), you should write your loop this way :