Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.

Note: this post will not display until it's been approved by a moderator.

Name:
Email:
Subject:
Message icon:

shortcuts: hit alt+s to submit/post or alt+p to preview

Please read the rules before you post!


Topic Summary

Posted by: Steve Walmsley
« on: February 05, 2022, 05:04:41 AM »

Thanks, I'll take a look.
Posted by: se5a
« on: February 04, 2022, 04:30:14 PM »

Steve, I've noticed some large hangups with listview, and looked into it a bit, you might find this topic useful:

https://stackoverflow.com/questions/9008310/how-to-speed-adding-items-to-a-listview

In a nutshell, calling:
listView.BeginUpdate(); before a for/foreach loop and ending withlistView.EndUpdate(); should improve performance here significantly.
The above topic also goes into more detail for getting even further improvements, but at least the above should improve things significantly.