is it possible to add an instance of a java application as a child form a .NET Form?
Thanks
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 don’t think it is. A Java program will have to run in its own process. A window from one process cannot be the child of a window of another process.
EDIT: Apparently I was wrong, it is possible to have a window from one process be a child of a window from another process, for example here
It might work with Java, depending on how the Java GUI framework the application uses works with Windows controls. The Windows Spy can help you figure out a little more about your Java application.