Open a program when I click a button [solved]
What source/What will I do to make a button open up a program for example ...
Button1 = Opens Any Program ..
Like that 
Please help ! TY And the Process class isn't part of the System namespace. It's in the System.Diagnostics namespace.
'imports are at the top...
imports System.Diagnostics
button_click event
Process.Start("C:\location\programname.exe")
' or
shell("filepathhere\blabla.exe")
System.Diagnostics is imported by default (As is System and a few others) so there is no need for that. Your post was pretty pointless as you JUST mentioned Shell before, and Blubb already said Process.Start.
Marked solved then. You guys know the deal (or you should). No more posting unless you have a question about the solution.