Click to See Complete Forum and Search --> : How can I introduce a Form1.cs[Desing] in a ConsoleApplication project


biap
06-05-2006, 05:08 PM
I created a ConsoleApplication project and now I need to introduce a Form design class ,which I did. But if I call it from the Main function of the ConsoleApplication,it doesn't show anything. It appears a white form like an error.

static void Main(string[] args)
{
Form1 f1=new Form1();
f1.Show();

....
I have here other code,calling other functions ,which works,and of course none of the functions is from the Form1.cs class
}