Vb.Net调用 外部应用程序的语句
Process.start("路径+程序名")
Process.start("IExplore.exe","地址")
'##################################################
Dim myProcess as process = new process
with myProcess.startInfo
.FileName="路径"
.WindowStyle= ProcessWindowStyle.Normal
.CreateNoWindow=False
End with
myProcess.start()
myProcess.close()