Form design menu disappeared

  • Thread starter Thread starter Enver A
  • Start date Start date
E

Enver A

I am working with 4 windows forms in my project and i cant see the design
section for the 2 of them. Design section disappears when i choose that
forms.
 
Hi Enver A,

I am not sure what is your problem, but i am assuming.

I assume you see this when you try to see this:

Form1 [Design]

An error occured while loading the document. Fix the error....

Make sure each of your windows forms must have:

// must have inherit from System.Windows.Forms.Form
public class Form1 : System.Windows.Forms.Form
{
}

Hope it helps. Correct me if i am wrong.
 
Hey there,
I checked my forms codes and they all inherit from System.Windows.Forms.Form
The problem is i desisgned that forms 1 week ago and they were working
perfectly now i cant open the design part of the forms.
they just disappeared
Chua Wen Ching said:
Hi Enver A,

I am not sure what is your problem, but i am assuming.

I assume you see this when you try to see this:

Form1 [Design]

An error occured while loading the document. Fix the error....

Make sure each of your windows forms must have:

// must have inherit from System.Windows.Forms.Form
public class Form1 : System.Windows.Forms.Form
{
}

Hope it helps. Correct me if i am wrong.
--
Regards,
Chua Wen Ching :)


Enver A said:
I am working with 4 windows forms in my project and i cant see the design
section for the 2 of them. Design section disappears when i choose that
forms.
 
Back
Top