Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Array Size

Status
Not open for further replies.

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]
 
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
 
Thats what I thought, this is just a temp solution anyways until we can develop another solution.

Thanks for your help synap.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top