2005-07-19, 10:03 PM
I've got some code that I'm trying to translate from VB6 and raw C to a C# plug-in. The C# version uses...
private Process myProcess;
...to spawn an external application (along with the Process.StartInfo needed for exe name, window style etc.).
The app starts fine but I then need to use the equivalent of SendMessage() for IPC and I can't quite get my head around how this will work with the Process object I've created.
Any help would be gratefully received.
Cheers,
Brian
private Process myProcess;
...to spawn an external application (along with the Process.StartInfo needed for exe name, window style etc.).
The app starts fine but I then need to use the equivalent of SendMessage() for IPC and I can't quite get my head around how this will work with the Process object I've created.
Any help would be gratefully received.
Cheers,
Brian