c# - What is the maximum amount of data that can be loaded into a Windows form control? -
Can I load maximum data on a form control?
My application also consume too much memory and hangs when more than 500,000 records are added to any Windows form control in my experience. any clue?
Yes, this will cause problems.
Do not add too many records.
No need for many, instead what you need to do is add the filtering capabilities so that users can specify which data they want to use.
For example, let the user decrease the search by date (if it is time
but I can guarantee that finding a way to add 500K rows to a grid or Whatever is not a solution .
Comments
Post a Comment