vb.net启动天龙八部程序game.exe\Launch.exe

时间:2022-04-03 13:58:29
用了shell()
Process.Start
都没有成功,

        'myProcess = Process.Start("D:\XTLBB\Bin\Game.exe")
        ' myProcess2 = Process.Start("D:\XTLBB\Launch.exe")
        ' myProcess3 = Shell("D:\XTLBB\Launch.exe")
        'System.Diagnostics.Process.Start("D:\XTLBB\Bin\Game.exe")

求各位帮帮! vb.net启动天龙八部程序game.exe\Launch.exe

4 个解决方案

#1


看下快捷方式的链接用那个

#2


引用 1 楼 slwsss 的回复:
看下快捷方式的链接用那个


Process.Start("D:\XTLBB\Launch.exe")
无法启动,没有反应

#3


单独点击exe运用程序,可以启动么??路径正确的话,那就是其他原因了。
供参考!

#4


Imports System.IO    

Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
        Dim a As String
        a = "C:\Program Files (x86)\KuGou\KGMusic\KuGou.exe"
        System.Diagnostics.Process.Start(a)

    End Sub
 这样就可以了

#1


看下快捷方式的链接用那个

#2


引用 1 楼 slwsss 的回复:
看下快捷方式的链接用那个


Process.Start("D:\XTLBB\Launch.exe")
无法启动,没有反应

#3


单独点击exe运用程序,可以启动么??路径正确的话,那就是其他原因了。
供参考!

#4


Imports System.IO    

Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
        Dim a As String
        a = "C:\Program Files (x86)\KuGou\KGMusic\KuGou.exe"
        System.Diagnostics.Process.Start(a)

    End Sub
 这样就可以了