VB.NET 调用外部程序

前端之家收集整理的这篇文章主要介绍了VB.NET 调用外部程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Process.Start(command 指令)

或用以下方法等待命令执行完

Dim objProcess = New System.Diagnostics.Process() objProcess.StartInfo.FileName = "cmd.exe - command argument" objProcess.StartInfo.WindowStyle = ProcessWindowStyle.Normal objProcess.Start() 'Wait until the process passes back an exit code objProcess.WaitForExit()

原文链接:https://www.f2er.com/vb/260619.html

猜你在找的VB相关文章