Link to home
Create AccountLog in
Avatar of recruitit
recruitit

asked on

Form loses all controls and formatting in [Design] View, even though the designer code is fine.

I made no changes to this form, nothing at all.  Yet all of a sudden, everything just "dissapears" and it looks like a completely new form.  I checked the form designer code and everything is fine, no errors are reported, my form just completely *insert bad word here* vanished!

Now, I have tried several things to fix this, and nothing has worked so far.  The oddities that I noticed was that.

A.)  When I try to edit code in the designer code, nothing stays, e.g. everytime the form is "viewed" in the Visual c# program, the changes I made in the designer code is completely un-done.

B.)  this.Performlayout();  is no longer at the bottom of the designer code.  As shown below is should look something like this, but I can not insert "this.PerformLayout();", I can but it doesnt save.

//
// frmName
//
*insert code here*
this.PerformLayout();

I am not really good with the form designer code, but I am assuming this must be essential because I see it in all the other forms form designer code.
Avatar of MuhammadAdil
MuhammadAdil
Flag of Pakistan image

Visual Solutions some time behave abnormally.

Try to clean you solution.

Can you show your code. Or send me your source code I'll check that..

Regards,
Adil Fazal
Avatar of recruitit
recruitit

ASKER

The designer code or the form code?

I cant supply you with the form code, plus that fact that it is enormous, over 2800 lines of code.

The only thing that should matter here is the designer code, which as I said before, the only thing that is missing is this.PerformLayout();  which it wont allow me to actually insert this back in forwhatever reason that it initially vanished in the first place.

I must mention that I have 23 Windows Forms in my solution and this is the only one receiving the problem.
Actually, I tell you what, the major problem here is that the designer code isnt saving my changes.  Is there anyway to fix that?
One trick you can apply. Copy your form design and code file to other place. Then delete from solution. And then copied file to you solution again. Let me update.

Regards,
Adil Fazal
Only that form's file that are creating problem...

Regards,
Adil Fazal
Hmm, didnt work.  Cut the 3 files out for the form, deleted it from the project, then copied back, add existing item (selected the three form items), and it came back with the same problem.

Also, just extracted it and put it into a completely new project, with just its own three files, cs, resx, designer.cs.  Again same problem,  the Designer.cs will not keep any changes I make, they just disapear as soon as the form gets loaded into the visual
I am almost 100% sure that because     this.PerformLayout();   is not present under the frmName in the designer code, that is whats causing the form to appear blank, what completely escapes me is that i can edit the designer code, any changes at all are reverted as soon as I look at the form in Design view.
I just modified the file directly from windows explorer, and the changes where wiped.
you can add these file at cs in constructor file after InitializeComponent Method ...
this.PerformLayout();

Regards,
Adil Fazal
Well doh, that didnt solve it either.  Guess that isnt the problem.
ASKER CERTIFIED SOLUTION
Avatar of MuhammadAdil
MuhammadAdil
Flag of Pakistan image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Oh god, I just discovered whats happend, I have lost LOADS of code,  at the moment this is what my form designer code looks like for the frm itself...

this.ClientSize = new System.Drawing.Size(292, 260);
            this.Name = "...";
            this.....ResumeLayout(false);
            this.....ResumeLayout(false);
            this.....ResumeLayout(false);
            this.....ResumeLayout(false);
            this.....PerformLayout();
            this......ResumeLayout(false);
            this......PerformLayout();
            this......ResumeLayout(false);
            this......ResumeLayout(false);
            this......PerformLayout();
            this......ResumeLayout(false);
            this......PerformLayout();
            this.ResumeLayout(false);

When there should be loads of this.Controls.Add(bla);

etc etc... ugh
Not only that but every single Event for each control has been completely severed.  All the codes there, I am just going to have to replace everything.

Thanks for the help.