0

Possible Duplicate:
Detecting the launch of a application

Can I register a listener and get notification when an application launch?

I know that in Mac NSWorkSpace can do it, how about windows?

Community
  • 1
  • 1
disorderdev
  • 1,458
  • 1
  • 14
  • 28

1 Answers1

0

You can put a Forever loop while(true) { if(Process.GetProcessesByName("TheSoftwareYouNeed").Length > 0) Notify();//Here you can call a method which handles with notyfind }

Rosmarine Popcorn
  • 10,761
  • 11
  • 59
  • 89