K
Krish
I have an application that I want to open from my .net application. I
want this application as a clild window of my application. not as a
separate process. Is this posssible?
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "Mspaint.exe";
p.Start();
The following code will open mspaint from my application.. but it will
be a free window. I want this to be like a child window of my
application.
want this application as a clild window of my application. not as a
separate process. Is this posssible?
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "Mspaint.exe";
p.Start();
The following code will open mspaint from my application.. but it will
be a free window. I want this to be like a child window of my
application.