Okay, well I have another similiar confusing problem now.
Here is some coding:
VB Code:
max = UBound(sCookies)
If UBound(Cookies) > 2 Then
max = max + UBound(Cookies)
End If
ReDim Preserve Cookies(max, max, max)
It is defined in the declarations, and set like so:
VB Code:
Private Sub Form_Load()
ReDim Cookies(0, 0, 0)
Cookies(0, 0, 0) = "NONE"
End Sub
For some reason I am getting a "Subscript out of range" on the last line of the first block of code. When I debug I look at "max"'s value and see that it's 8. So there is no negative numbers, why would I be getting this error? Sorry if im being to vague.