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.
static void Main()
{
System.Diagnostics.Process pThis = System.Diagnostics.Process.GetCurrentProcess();
foreach(System.Diagnostics.Process p in System.Diagnostics.Process.GetProcesses())
{
if(p.Id != pThis.Id && p.ProcessName == pThis.ProcessName)
{
MessageBox.Show("Already Running!!!");
return;
}
}
Application.Run(new Form1());
}