Detecting Process
-
I need code that detects if a program is running and then opens a form. ex. You turn on your computer and a program starts to run in the background. You open the internet and a form from the program that is already running opens with it. Can anyone help me? Thanks Hengy I like Pie
-
I need code that detects if a program is running and then opens a form. ex. You turn on your computer and a program starts to run in the background. You open the internet and a form from the program that is already running opens with it. Can anyone help me? Thanks Hengy I like Pie
You might want to have a Windows Service running in the background, periodically polling
Process.GetProcesses
to see if a browser has been opened. When it detects a browser has been opened, open your Form. I know that there is some trickiness to getting a Form to appear from a windows service, but there should be an article on CP which explains how to do it. Josh