vote up 2 vote down star
1

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?

flag

2 Answers

vote up 10 vote down check

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|flag
Nice, proves i'm stupid. – Rayne Sep 27 '08 at 23:28
vote up 1 vote down

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

using System.Windows.Forms;

... to the top of Program.cs

link|flag

Your Answer

Get an OpenID
or

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