日期:2014-05-17 浏览次数:20491 次
Dim MyProcess As New System.Diagnostics.Process
MyProcess.StartInfo.CreateNoWindow = True
MyProcess.StartInfo.UseShellExecute = True
MyProcess.StartInfo.WorkingDirectory = "C:\Users\Administrator\Desktop"
MyProcess.StartInfo.FileName = "ODBC-Get.exe"
MyProcess.StartInfo.Arguments = "MyArgument"
MyProcess.Start()