If I do Dim array As String() I seem to be able to resize that array and put anything in it on the fly. For example:
Dim PackUrls As String() PackUrls = Split(WebRequest("http://" + sPackBaseURI, sPackBaseURIUsername, sPackBaseURIPassword), ":") And I don't get an error and nothing weird is happening with the array.
I did this without thinking THEN i read that you have to specify the size of the array first! Why is this happening?