Hi all,
We are developing two applications using C#.Net 2005. I want to pass a string from one application to another.
For example if the user click a button in the application 1, I want to pass an string from this application(application1) to the another application(application2), also the application2 has to run simultaneously.
Plz any one suggest me, How to do this
Thanks in advance

Ho to pass a string from one application to another
vtortola
Hi, sarathy
Hope it can give you some ideas: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1054380&SiteID=1
stevenmcs
Hi,
you can use remoting in .Net to allow two process to communicate to eachother. To do this you can use an IpcChannel, see: http://msdn2.microsoft.com/en-us/library/system.runtime.remoting.channels.ipc.ipcchannel.aspx also there way a similar post a while ago:http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1096398&SiteID=1 where I wrote a sample that allowed two processes to communicate, if you want to can download it at:
http:\\www.markdawson.org\software\windowsapplication2.zip
Mark.