示例四
下面的代码,调用记事本打开文件“c:\table.txt”。
Dim Proc As New ProcessProc.File = "Notepad.exe" '指定要执行的文件Proc.Arguments = "c:\table.txt" '指定命令行参数Proc.Start()