Whats the max number of items a listview can have? I have a program that inserts items as it parses a text file and when it hits 32728 (might not be the exact number) it throws an error and says 'overflow'.
What can I do to stop this?
Printable View
Whats the max number of items a listview can have? I have a program that inserts items as it parses a text file and when it hits 32728 (might not be the exact number) it throws an error and says 'overflow'.
What can I do to stop this?
load the items using a new Threading.Thread
I dont think so, if it stops at 32k its sure has a meaning like... --> maybe that's it's maximum value (its integer's maximum value)Quote:
Originally posted by dynamic_sysop
load the items using a new Threading.Thread
that's what I'm thinking too.