My lab partner and I are working on a school project in Visual Studio 2008 in C#. He emailed me the latest version of the project. When I open it, some, but not all, forms that I previously created are now missing all the components that were added to them. However, when I run the project, the components are there and work. Everything on the form except for the border is "hidden."
Any ideas how I can access the missing components and edit the forms? ShowAllForms is active.
It appears something similar to the code below has been added to the .cs code for each form (but not by me). I read elsewhere on the internet that this code could be auto generated by Visual Studios. Could this be the problem? If so, why is Visual Studios adding it to my code?
private void InitializeComponent()
{
this.SuspendLayout();
//
// VideoPoker
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.ClientSize = new System.Drawing.Size(804, 549);
this.Name = "VideoPoker";
this.Load += new System.EventHandler(this.VideoPoker_Load_1);
this.ResumeLayout(false);
}
Thank you.