Form with Console

Geek.NET

New member
Joined
Jun 19, 2004
Messages
4
Programming Experience
1-3
hi
since I'm the first to put a thread into this section...well I'd like to know if it is possible to link a console application with the form...in other words, I can load the console from a form upon a user request (like clicking on a button), I'd like to make the user able to interact with the consle...

thanx
 
response

like this one...
VB.NET:
  Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
 		Process.Start("cmd")
 	End Sub
 
Back
Top