hi experts....
I have added an executable file in my project.i need to display the forms of that file with in my mdiform of my project..i have used this code to add the file
Process p = new Process();
p=Process.Start(@"E:\RDAgent-VER1\RDAgent\bin\Debug\agent.exe");
p.CloseMainWindow();
but the problem is that ,the file is on the top of my mdiparent.I need to display it with in the mdiparent..
plz help me...
thanks in advance...
Loading
naura paxPosted Jan 13, 2010, 2:46 AM
it won't be possible. You'd probably have to add this project in your solution, set it to type library and add it's reference in your window form project, probably then you can directly call this form as child... i think so