Dim
Proc As New Process
Proc.File = "Notepad.exe" '指定要执行的文件
Proc.Arguments = "c:\table.txt" '指定命令行参数
Proc.Start()
这段代码 调用外部程序,再调用一个文件
现在需要调用 外部程序, 文件1处理完成后,再调用文件2如何处理
Dim Proc As New Process
Proc.File = "Notepad.exe" '指定要执行的文件
Proc.Arguments = "c:\table.txt" '指定命令行参数
Proc.Start()
Dim Procb As New Process
Procb.File = "Notepad.exe" '指定要执行的文件
Procb.Arguments = "c:\table.txt" '指定命令行参数
Procb.Start()
如果这样写则出现共享冲突(程序调用两次了"
如何只调用打开程序一次Proc.File = "Notepad.exe" '指定要执行的文件
但
Proc.Arguments = "c:\table.txt" '指定命令行参数
Proc.Start 要多次