bring an already running app to the front



My program checks to see if another program is already running and if so I want it to "restore" as windows puts it that other program so it appears on top of anything else on the screen. I know how to check to see if it's running

If UBound(System.Diagnostics.Process.GetProcessesByName("programX")) > 1 then

then what? How do I get programX "restored"?

Thanks
.


Loading