Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Private Sub StartWithArguments()
' Declare and instantiate a new process component.
Dim myproc As System.Diagnostics.Process
myproc = New System.Diagnostics.Process
' Do not receive an event when the process exits.
myproc.EnableRaisingEvents = False
' Start Internet Explorer, passing in a Web page.
myproc.Start("IExplore.exe", "http://www.microsoft.com")
End Sub
System.Diagnostics.Process n = new System.Diagnostics.Process();
n.StartInfo.FileName = listView1.Items[i].SubItems[1].Text;
n.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
n.Start();