Question Opening a new Application in a Panel of a Windows Form

harshsomvansi

New member
Joined
May 12, 2010
Messages
2
Location
Pune,Maharshtra,India
Programming Experience
1-3

Hello Guys....
This is harsh just joined this deadly group......i have a query of opening a new Application(eg. UgNx,Ansys)file with in a Panel (Which is already dropped on a Window Form).

For Example :-There in one Window Form and i have fixed a Panel there now with in the panel i want to open a new Application like other softwares UG NX or Ansys.

Please help me...
Thanks In Advance...


:cool::eek::cool:
 
You would have to use Windows API functions for that. You can use the FindWindow API to find the desired top-level window and then the SetParent API to shift it into your container. Note that this can only be done once the window is open. You should be able to find examples of those API functions if you search online.
 
Back
Top