Hello
However I am able to Get Process ID (PID) of an EXE i am executing with my application. I want to Hide that EXE Process with the help of it's Process ID.
I am using following command to Get Process ID.
As the above code doesn't support Window HIDE parameter. I donot want to useCode:Dim oShell, oExec, oPid Set oShell = CreateObject("Wscript.Shell") DoEvents Set oExec = oShell.Exec("Exe path here") oPid = oExec.ProcessID
oShell.Run
Is there any option or API to hide External Application's Window with the help of it Process ID?
Thanks with Regards,


Reply With Quote
