Hi,
I use processExecute to lunch a non-ui application but it always run in background.
Could i let it run in the foreground ?
I use processExecute to lunch a non-ui application but it always run in background.
Could i let it run in the foreground ?
B4X:
Sub ProcessExecute(ExeName As String) As Boolean
Dim shl As Shell
shl.Initialize("shl",ExeName,Null)
shl.WorkingDirectory = File.DirApp
shl.RunWithOutputEvents(-1)
End Sub