Communicating between 2 programs
I'd like to be able to send text messages between programs.
I've been searching the web and come up with lots of pieces of info
like use DDE, use SendMessages, use Shared ActiveX exe ...
but, no examples suitable for a neophyte.
Does anyone have working, cut-n-paste VB code that does this?
Thanks, DaveBo
Passing event trigger to connected programs?
I've gotten Edneeis' ActiveX connector/shared scheme working to
pass info between programs, now
how can I send an event through that same path?
e.g. when one program instance has data changed and sends
that to the shared object, I'd like it to force the other sharing
programs to read that.
I tried putting a method in the shared obj. that does a
raiseevent etc. but I can't seem to get the WithEvents to work.
When I try Public Withevents xyz as ExShared in the class
module it apparently starts creating separate instances of the
object for each program.
The event fires, but only for the local/current program.