To be specific, use IPC in Remoting Add reference System.Runtime.Remoting to your project, Imports System.Runtime.Remoting.Channels.Ipc to your code
and follow the examples of Ipc: http://anoriginalidea.wordpress.com/2007/08/09/simple-inter-process-communication-in-vbnet/ or http://articles.techrepublic.com.com/5100-10878_11-6143016.html for advance Actually IPC use named pipe which is use i/o. but you dont see it. It seems complicated for beginner but you can use ".SaySomething ("Exit")" as simple comm (from the 1st example above) in client and replace "Console.WriteLine(”The client said : ” & text)" with "If text.Equal("Exit") Then Me.Close()" in server side. Good luck On Apr 9, 3:11 am, Bhargav Patel <[email protected]> wrote: > Try Remoting , I thing it suit to ur requirement. > > On Apr 8, 11:48 am, velsankar <[email protected]> wrote: > > > Hi, > > > I am trying to communicate between two c# .net win applications > > without i/o operations. Anyone has idea how to pass values between > > two .net applications (not forms). > > > Some of the purposes are to close the applciations (not killing the > > applications), serial port sharing between applications, sharing mutex > > applications... > > > Many Thanks in Advance. > > > With Best Regards, > > Velsankar
