Get Notification when an external application started

  • Thread starter Thread starter vemulakiran
  • Start date Start date
V

vemulakiran

I have create two windows applications called WinAppX andWinAppY.
First I opened the WinAppX . When ever i opened the WinAppY ( second
app ) , the WinAppX should get notification , after that these two app
should communicate each other someway. How can i do this..
 
You could periodically test the current processes for one of the correct
name (GetProcessByName) say every couple of seconds and then use remoting in
between them or do something like open a socket between them.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Ramuseco Limited .NET consulting
http://www.ramuseco.com

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Back
Top