Catching application start/close events
-
I want my application to trigger on external application start/close events but haven't been able to figure out how to do this. For example. I would like my application to execute a certain task every time Internet Explorer is executed on the system. I would greatly appreciate if someone had a solution to this! Thanks! // T
-
I want my application to trigger on external application start/close events but haven't been able to figure out how to do this. For example. I would like my application to execute a certain task every time Internet Explorer is executed on the system. I would greatly appreciate if someone had a solution to this! Thanks! // T
Well, one way you could do this (which isn't the best way I don't imagine, but I can't think of any other way at the moment) is to create a task watcher process that watches the task list and kicks off event "alerts" that you set when certain tasks are created/exited.
-
Well, one way you could do this (which isn't the best way I don't imagine, but I can't think of any other way at the moment) is to create a task watcher process that watches the task list and kicks off event "alerts" that you set when certain tasks are created/exited.
Yes, this is how I do it now.. I don't feel that this is the correct way of doing it though. I would imagine that you could hook on IE or trap a windows message to do this instead. I've tried searching for it on the net and haven't found anything :-( Hopesfully someone will have a solution :-)