up vote 8 down vote favorite
1
share [g+] share [fb]

I frequently start with a simple console application to try out an idea, then create a new GUI based project and copy the code in. Is there a better way? Can I convert my existing console application easily?

link|improve this question

feedback

2 Answers

up vote 19 down vote accepted

Just add a new Winform, add the following code to your Main:

    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);
    Application.Run(new Form1());

Then right click your project and select properties and change the "Output type" to Windows application and you're done.

link|improve this answer
1  
Nice, proves i'm stupid. – Rayne Sep 27 '08 at 23:28
Thanks a lot :) Just what I needed! – Cort3z Dec 8 '11 at 17:30
feedback

For completeness - and for other newbs like me - you also need to add:

using System.Windows.Forms;

... to the top of Program.cs

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.