Hi,
This may be a very basic problem but im haveing real trouble with it and its driving me crazy!!!!!!!
I have created a class called Class1
I can create a new object by calling
Dim test2 As New Class1
I can change its attrributes by
test2.summary = True
test2.is_stage = False
etc.....
Now what I want to do is store this class in an array. I have tried the folowing code but it doesnt seem to work
Dim proj_tasks(10000) As Class1
proj_tasks(counter) = test2
This keeps erroring and I dont know why! Can somebody help me out!
Also if your feeling very generous could you please adivise me on how I could make this a dynamic array rather than having to set the array to a huge size in the first place
Thanks in advance!
Chris