IPC Examples in VB.net?

  • Thread starter Thread starter Viet
  • Start date Start date
V

Viet

Is there any Inter-process Communication examples out there in VB.NET?
Specifically, I have app1 that executes app2 as a process and I would like
to have app2 display messages in a status bar in app1. I understand that IPC
is an option to successfully execute this.

TIA!
Jonathan
 
This question was asked less than a week ago in this newsgroup, but I cannot
remember the subject, so, I am unable to point you to that answer
 
Viet said:
Is there any Inter-process Communication examples out there in VB.NET?
Specifically, I have app1 that executes app2 as a process and I would like
to have app2 display messages in a status bar in app1. I understand that
IPC
is an option to successfully execute this.

There are many different IPC mechanisms like named pipes, socket
communication, .NET remoting, and 'WM_COPYDATA', just to give you some
keywords.

<URL:http://groups.google.de/[email protected]>
 
Is there any Inter-process Communication examples out there in VB.NET?
Specifically, I have app1 that executes app2 as a process and I would like
to have app2 display messages in a status bar in app1. I understand that IPC
is an option to successfully execute this.

TIA!
Jonathan

What kind of IPC are you looking for? Sockets are one method, remoting
another. There are other methods - such as wm_copydata using p/invoke.
Give some more info, and someone might be able to help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top