Search Results

0
votes

What is the correct way to deal with procedures that take a “long time” to complete?

You will want to take advantage of Threading. When the user signals to fetch the data, you can spawn a new thread to fetch the data while making a throbber visible on the main form. When the thread …