Console app with a windows form

darker080

Newcomer
Joined
Dec 13, 2002
Messages
7
Hi,

how can i run a console app. in a windows form,

when i now run my console code, there is no screen output .

thx
 
You can't have both - the "console" or "windows exe" is a project property. Class Library is the other type.

If you wanted, you could have changed the project property though you'd have to stub out the Main() yourself, to create the form. Or do as you did, which is probably easier if the project isn't too big. :)

-ner
 
Back
Top