Hi all .. i am trying to create a dynamic array in visual basic 6.0 (not .net)
Now i know abt redim and all ... but in that we need to know the array size before hand ... what if we want to define the size of the array on the run time ?
Something like this :
now above is possible if i dont have to declare dllname before hand ..
But due to company rules it is necessary for me to put an Option explicit statement ....
any ideas ?
Now i know abt redim and all ... but in that we need to know the array size before hand ... what if we want to define the size of the array on the run time ?
Something like this :
Code:
Dim dllname() as string
dllname = split("My name is anthony gonsalves"," ")
But due to company rules it is necessary for me to put an Option explicit statement ....
any ideas ?
Comment