Open .exe item in Visual Basic
I've added an .exe to my project, as you see in this picture:
http://i.stack.imgur.com/A1B60.png
Now I want it to open when the user clicks on a button. I've searched for how to do it but I can only find the Shell function, which require开发者_C百科s a path, but I want the .exe to be hidden in the main form. So how can I call it?
System.Diagnostics.Process.Start("GetHTMLSource.exe");
Have you tried this?
精彩评论