Ok I am curious how many items a single list box will hold and what the way is to make it load only so much. SO if you laod a file and it exceeds 35,000 say then it will stop laoding at 35,000? Thanks guys
Printable View
Ok I am curious how many items a single list box will hold and what the way is to make it load only so much. SO if you laod a file and it exceeds 35,000 say then it will stop laoding at 35,000? Thanks guys
VB Code:
Dim reccount as Long 'if you plan on using this more than once reccount = 0 Do While some_condition 'add elements to list box reccount = reccount + 1 if reccount > some_constant Exit Do end if Loop