The code in Form1.Designer.cs is used in VS2005Beta, in Standard Edition you should delete the related lines:
private System.Windows.Forms.RaftingContainer leftRaftingContainer;
private System.Windows.Forms.RaftingContainer rightRaftingContainer;
private System.Windows.Forms.RaftingContainer topRaftingContainer;
private System.Windows.Forms.RaftingContainer bottomRaftingContainer;
private System.Windows.Forms.RaftingContainer raftingContainer1;
private System.Windows.Forms.RaftingContainer raftingContainer2;
private System.Windows.Forms.RaftingContainer raftingContainer3;
private System.Windows.Forms.RaftingContainer raftingContainer4;
this.Controls.Add(this.leftRaftingContainer);
this.Controls.Add(this.rightRaftingContainer);
this.Controls.Add(this.topRaftingContainer);
this.Controls.Add(this.bottomRaftingContainer);
((System.ComponentModel.ISupportInitialize)(this.l eftRaftingContainer)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.r ightRaftingContainer)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.t opRaftingContainer)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.b ottomRaftingContainer)).EndInit();
this.leftRaftingContainer.Dock = System.Windows.Forms.DockStyle.Left;
this.leftRaftingContainer.Name = "leftRaftingContainer";
this.rightRaftingContainer.Dock = System.Windows.Forms.DockStyle.Right;
this.rightRaftingContainer.Name = "rightRaftingContainer";
this.topRaftingContainer.Dock = System.Windows.Forms.DockStyle.Top;
this.topRaftingContainer.Name = "topRaftingContainer";
this.bottomRaftingContainer.Dock = System.Windows.Forms.DockStyle.Bottom;
this.bottomRaftingContainer.Name = "bottomRaftingContainer";
this.leftRaftingContainer = new System.Windows.Forms.RaftingContainer();
this.rightRaftingContainer = new System.Windows.Forms.RaftingContainer();
this.topRaftingContainer = new System.Windows.Forms.RaftingContainer();
this.bottomRaftingContainer = new System.Windows.Forms.RaftingContainer();
|