partial class CreateFileForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.saveButton = new System.Windows.Forms.Button(); this.enterButton = new System.Windows.Forms.Button(); this.exitButton = new System.Windows.Forms.Button(); this.SuspendLayout(); // // saveButton // this.saveButton.Location = new System.Drawing.Point(37, 229); this.saveButton.Name = "saveButton"; this.saveButton.Size = new System.Drawing.Size(86, 31); this.saveButton.TabIndex = 8; this.saveButton.Text = "Save As"; this.saveButton.Click += new System.EventHandler(this.saveButton_Click); // // enterButton // this.enterButton.Enabled = false; this.enterButton.Location = new System.Drawing.Point(136, 229); this.enterButton.Name = "enterButton"; this.enterButton.Size = new System.Drawing.Size(86, 31); this.enterButton.TabIndex = 9; this.enterButton.Text = "Enter"; this.enterButton.Click += new System.EventHandler(this.enterButton_Click); // // exitButton // this.exitButton.Location = new System.Drawing.Point(232, 229); this.exitButton.Name = "exitButton"; this.exitButton.Size = new System.Drawing.Size(86, 31); this.exitButton.TabIndex = 10; this.exitButton.Text = "Exit"; this.exitButton.Click += new System.EventHandler(this.exitButton_Click); // // CreateFileForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(354, 293); this.Controls.Add(this.exitButton); this.Controls.Add(this.enterButton); this.Controls.Add(this.saveButton); this.Name = "CreateFileForm"; this.Text = "Creating a Sequential File"; this.Controls.SetChildIndex(this.saveButton, 0); this.Controls.SetChildIndex(this.label1, 0); this.Controls.SetChildIndex(this.label2, 0); this.Controls.SetChildIndex(this.label3, 0); this.Controls.SetChildIndex(this.label4, 0); this.Controls.SetChildIndex(this.accountTextBox, 0); this.Controls.SetChildIndex(this.firstNameTextBox, 0); this.Controls.SetChildIndex(this.lastNameTextBox, 0); this.Controls.SetChildIndex(this.balanceTextBox, 0); this.Controls.SetChildIndex(this.enterButton, 0); this.Controls.SetChildIndex(this.exitButton, 0); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button saveButton; private System.Windows.Forms.Button enterButton; private System.Windows.Forms.Button exitButton; }