Oct 3, 2007 #1 fmrock Programmer Sep 5, 2006 510 US Is there any way to make an array size greater then 1000? The report is getting an error when it reaches 1000 Code: Redim Preserve strQC_Array[Count(strQC_Array) + 1]
Is there any way to make an array size greater then 1000? The report is getting an error when it reaches 1000 Code: Redim Preserve strQC_Array[Count(strQC_Array) + 1]
Oct 3, 2007 #2 synapsevampire Programmer Mar 23, 2002 20,180 US Not that I'm aware of. However you might switch to a secondary array once you hit 1000 by testing for ubound(yourarray), which is the size of the array. I suspect you should post technicqal information and requirements, perhaps there's a better means than using arrays, they can skewer performance. -k Upvote 0 Downvote
Not that I'm aware of. However you might switch to a secondary array once you hit 1000 by testing for ubound(yourarray), which is the size of the array. I suspect you should post technicqal information and requirements, perhaps there's a better means than using arrays, they can skewer performance. -k
Oct 4, 2007 Thread starter #3 fmrock Programmer Sep 5, 2006 510 US Thats what I thought, this is just a temp solution anyways until we can develop another solution. Thanks for your help synap. Upvote 0 Downvote
Thats what I thought, this is just a temp solution anyways until we can develop another solution. Thanks for your help synap.