P Pirahnaplant Well-known member Joined Mar 29, 2009 Messages 75 Programming Experience 3-5 Jul 31, 2009 #1 Whenever my application goes into a very long loop, the form stops responding. How can I stop this?
JohnH VB.NET Forum Moderator Staff member Joined Dec 17, 2005 Messages 15,875 Location Norway Programming Experience 10+ Jul 31, 2009 #2 Do work in a worker thread, not in UI thread. Try for example the BackgroundWorker component you'll find in Toolbox. Upvote 0 Downvote
Do work in a worker thread, not in UI thread. Try for example the BackgroundWorker component you'll find in Toolbox.