Well I am attempting to make a Java IDE in C#, and I have everything done, but I don’t know how I would make a console window at the bottom of the GUI window that will display the output of the Java code.
Any ideas?
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 may be misreading your question, and if I am I apologize, but the Process class, which you will use to start the user’s program, has the StandardOutput and StandardError properties, which you can use to get the output of the program as it runs and display it to a window.