Dim textcxdz As String = e.Form.Controls("Textcxdz").text
Dim textwjlj As String = e.Form.Controls("Textwjlj").text
If textcxdz >"" And textwjlj>"" Then
Dim Proc As New Process
Proc.WaitForClose = False \'逻辑型,设为True,直到关闭外部程序,才会执行接下来的代码.
Proc.File = textcxdz
Proc.Arguments = textwjlj
Proc.Start
Proc.WaitForInputIdle() \'等程序自动结束并进入空闲状态
\'MessageBox.Show(textwjlj)
\'MessageBox.Show(11)
\'Sendkeys.SendWait("^{DEL}") \'发送按键信息
\'MessageBox.Show(21)
\'Sendkeys.SendWait("{F8}") \'发送按键信息
\'MessageBox.Show(31)
Sendkeys.SendWait("+^(P)") \'发送按键信息
Else
MessageBox.Show("请检查是否有输入程序地址或文件路径!")
End If