You aren't specifying a size for the array. If you know how big it is going to be include the size in the initializing code
Dim clust(5) As bicluster
Or use the redim method to redefine it with a size:
ReDim clust(5)
If you don't know the size of the array use an arrayList instead as they can grow without the performance hit brought on by repeated ReDims.
hericles
Veteran Poster
1,065 posts since Nov 2007
Reputation Points: 156
Solved Threads: 228
Skill Endorsements: 9
Question Answered as of 9 Months Ago by
hericles