B
Bmack500
I have the following bit of code:
j2 = 0
If srvSC(j1) = "XCP CD Proxy" Then
ReDim Preserve badGuys(j2)
badGuys(j2) = j1
j2 += 1
End If
Using .net methods, how can I detect if the badGuys array was never
initialized - even zero times? It throws an exception when I try to do
any kind of test for badguys(0) if it hasn't been given a value!
j2 = 0
If srvSC(j1) = "XCP CD Proxy" Then
ReDim Preserve badGuys(j2)
badGuys(j2) = j1
j2 += 1
End If
Using .net methods, how can I detect if the badGuys array was never
initialized - even zero times? It throws an exception when I try to do
any kind of test for badguys(0) if it hasn't been given a value!