Process.Start(文件)问题

时间:2014-12-27 17:21:35

标签: vb.net

Private Sub FlatButton5_Click(sender As Object, e As EventArgs) Handles FlatButton5.Click
    If My.Computer.FileSystem.FileExists(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) & "\LauncherArma\directory.a3") Then
        file = My.Computer.FileSystem.ReadAllText(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) & "\LauncherArma\directory.a3") & "\arma3.exe"
        Process.Start(file)
    Else
        MsgBox("Choose ARMA III Folder before!", MsgBoxStyle.Critical, "Errore")
    End If

End Sub

正如您在此脚本中看到的,一旦选择了arma3文件夹,如果用户点击了"启动Arma3"游戏打开了。我想要做的是创建一个URL,通过点击Start Arma3,游戏直接启动到服务器。我在网站上做的有点像:steam://run/107410//-mod=@Mod%20-connect=IP ADDR%20-port=port n

我需要从上面提取的内容是-Mod和其他。 我怎样才能使它在VB.NET上运行?

此致

0 个答案:

没有答案