用vb.net运行一个应用程序,以solidworks为例

时间:2021-06-18 13:53:47
Dim myProcess As New Process()
        myProcess.StartInfo.FileName = "C:\Program Files\SolidWorks Corp\SolidWorks\SldWorks.exe"
        myProcess.StartInfo.CreateNoWindow = False
        myProcess.Start()


要注意的是 代码中的 myProcess.StartInfo.CreateNoWindow = False 为程序在前台运行,如果= True的话则为后台运行!