How to embedd two different applications in a single windows form?
Suppose I have an application abour calculations and about web cam and I want them to show in a form?
Don’t need only proccess.start()….
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think you may be looking for the SetParent Windows API call.
To do this, you’d need to import the relevant API call:
Add using directives at the top of the file:
Start the external and call
SetParenton it (we are using notepad here):This should work, but I’ve experienced some strange behaviour with it, in general, I would avoid it if possible.