2

我是 Visual Basic 的新手。我正在使用 VB Premium 2012。有没有办法可以exe使用参数打开/启动文件(不是我的应用程序)。我知道我们可以使用echo和其他东西在批处理编码中做到这一点。可以在vb中完成吗?

我想打开“ app.exe”,参数为“ -login usernamehere passwordhere

4

1 回答 1

9

尝试这个

Dim pHelp As New ProcessStartInfo
pHelp.FileName = "YourApplication.exe"
pHelp.Arguments = "parameter1,parameter2"
pHelp.UseShellExecute = True
pHelp.WindowStyle = ProcessWindowStyle.Normal
Dim proc As Process = Process.Start(pHelp)

我希望这有帮助...

于 2012-10-02T05:39:45.390 回答