关于vb shell函数调用程序执行不完全的求助
vb程序中使用shell函数调用一个可执行程序。可执行程序执行完后本应该输出一个txt文件,但通过调用执行程序后没有输出该文件。何解?程序代码:
Private Sub Command5_Click() If Dir(App.Path + "\elenode.txt") = "" Then MsgBox "请选择elenode所在位置" GoTo line1 End If If Dir(App.Path + "\nodedis.txt") = "" Then MsgBox "请选择nodedis所在位置" GoTo line1 End If If Dir(App.Path + "\scope.txt") = "" Then MsgBox "请选scope所在位置" GoTo line1 End If Shell App.Path + "\inicss4n.exe", 1 MsgBox "运算结束!" line1: End Sub