Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
You may try something ~ like this: [youll need to use threads][code]using System.Threading;// add toppublic delegate void CheckForUpdateCallback();private Thread updateChecker;// menu_clickupdateChecker = new System.Threading.Thread(GetUpdate);updateChecker.Start();// add to end of GetUpdatethis.Invoke(new CheckForUpdateCallback(Finished), new object[] { });// create new method for "finished"private void Finished(){MessageBox.Show("Finished - " + DateTime.Now.ToString());}[/code]This should cause the entire operation to run Asnyc from the UI.
You may try something ~ like this: [youll need to use threads]
[code]
using System.Threading;
// add top
public delegate void CheckForUpdateCallback();
private Thread updateChecker;
// menu_click
updateChecker = new System.Threading.Thread(GetUpdate);
updateChecker.Start();
// add to end of GetUpdate
this.Invoke(new CheckForUpdateCallback(Finished), new object[] { });
// create new method for "finished"
private void Finished()
{
MessageBox.Show("Finished - " + DateTime.Now.ToString());
}
[/code]
This should cause the entire operation to run Asnyc from the UI.