2
I wonder if there is any way to know if the process came out, even continuing the implementation of the project.
When using Processo.WaitForExit
it to the application, its execution is stopped.
I wonder if there’s a way to use this WaitForExit
, keeping the execution, example:
Dim i As Process = New Process()
i.StartInfo.FileName = "Meu executável"
i.UseShellExecute = False
i.Start
i.WaitForExit
'Agora queria que o aplicativo funcionasse normalmente, sem que os botões fiquem congelados...
MsgBox("Aplicativo saiu.", 0)
It worked, thanks....
– CypherPotato