I just wanted to make a button in my applet to launch a program (like if you simply just launch it from explorer) or a file, so it runs in external program NOT in my app.
please help.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
DarkwarrioR WarnerPosted Dec 19, 2009, 8:15 PM
Private Sub Button11_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button11.Click
System.Diagnostics.Process.Start _
("c:\windows\regedit.exe")
End Sub