On Sat, Apr 18, 2009 at 1:11 AM, rajesh <[email protected]> wrote: > > Is there anything analogous to Signal feature of Unix, on .NET > platform? > How can any VB.Net application send signal to another VB.NET > application?
No. However, MS Windows has its own ways of doing IPC. Try Google to get some more info on the different ways to do IPC on MS Windows. Signals are a nice and fast ways to send very basic commands to a process. MS Windows supports: Clipboard COM Data Copy DDE File Mapping Mailslots Pipes RPC Windows Sockets You didn't give any detail about your needs so do a little research to see which method will work for you. Jim
