私のPCでは動作しますが、別のマシンに入れると、「ソース:システムプロセスが終了したため、要求された情報が利用できません」というエラーが発生し、exeが出力されません。経験豊富な仲間が助けてくれますか?感謝!
p = New Process
With p
.EnableRaisingEvents = True
.StartInfo.FileName = Application.StartupPath & "\EXE\CDMObjectSelection\CDMObjectSelection.exe"
.StartInfo.Arguments = strArgs
.StartInfo.ErrorDialog = True
.StartInfo.WindowStyle = ProcessWindowStyle.Normal
.StartInfo.UseShellExecute = True
.Start()
End With
p.WaitForInputIdle()
While (ginthwnd = IntPtr.Zero)
System.Threading.Thread.Sleep(100)
p.Refresh()
ginthwnd = p.MainWindowHandle
End While