Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

Event programming between 2 application

i am doing an application on vb.net, i need to trigger another application which is running in VC++ when something happens and wait for the process to finish.

VC++ is completed with event programming, how to trigger the application / raise event from vb.net.

thanks in advance
:)
[302 byte] By [saran277] at [2007-11-11 9:58:05]
# 1 Re: Event programming between 2 application
If the VC++ application is a COM server, you may add a reference to it in your VB app and call public methods in the VC++ app from VB. If it is not a COM server, you may use Process.Start to launch the VC++ app and optionally pass parameters to tell it what to do.
Phil Weber at 2007-11-11 21:45:04 >