I saw a good article explaining how to have .net apps communicate directly with each other (http://ryanfarley.com/blog/archive/2004/05/10/605.aspx), but it involved overriding the WndProc method in your form which I obviously can’t do in vb6.
Do any other methods of inter-application communication exist that could be utilized in vb6?
I am about to start a new project in .net, but there are vb6 forms I will not be able to port as soon as I will need them. After considering a couple of different designs I’ve decided that it may be best to just let the vb6 app run in the background and, when notified to do so, it could present any forms I need it to and then notify the .net application when the form has been closed.
There are many alternatives. If you say more about your requirements, I can provide a more detailed answer.
In the mean time, have a look at named pipes:
http://support.microsoft.com/kb/871044
http://msdn.microsoft.com/en-us/library/windows/desktop/aa365590(v=vs.85).aspx
If your programs reside on different servers:
http://msdn.microsoft.com/en-us/library/bb546085.aspx
They are a reliable method of inter-process communication that do not require any specific OS setup, available to both .NET and VB6.