namespace FutureValue { partial class frmFutureValue { /// /// 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.label1 = new System.Windows.Forms.Label(); this.txtMonthlyInvestment = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.txtInterestRate = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this.txtYears = new System.Windows.Forms.TextBox(); this.label4 = new System.Windows.Forms.Label(); this.txtFutureValue = new System.Windows.Forms.TextBox(); this.btnCalculate = new System.Windows.Forms.Button(); this.btnExit = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(18, 15); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(117, 15); this.label1.TabIndex = 0; this.label1.Text = "Monthly Investment:"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtMonthlyInvestment // this.txtMonthlyInvestment.Location = new System.Drawing.Point(158, 12); this.txtMonthlyInvestment.Name = "txtMonthlyInvestment"; this.txtMonthlyInvestment.Size = new System.Drawing.Size(100, 23); this.txtMonthlyInvestment.TabIndex = 1; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(18, 44); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(109, 15); this.label2.TabIndex = 2; this.label2.Text = "Yearly Interest Rate:"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtInterestRate // this.txtInterestRate.Location = new System.Drawing.Point(158, 41); this.txtInterestRate.Name = "txtInterestRate"; this.txtInterestRate.Size = new System.Drawing.Size(100, 23); this.txtInterestRate.TabIndex = 3; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(18, 73); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(98, 15); this.label3.TabIndex = 4; this.label3.Text = "Number of Years:"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtYears // this.txtYears.Location = new System.Drawing.Point(158, 70); this.txtYears.Name = "txtYears"; this.txtYears.Size = new System.Drawing.Size(100, 23); this.txtYears.TabIndex = 5; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(18, 102); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(75, 15); this.label4.TabIndex = 6; this.label4.Text = "Future Value:"; this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtFutureValue // this.txtFutureValue.Location = new System.Drawing.Point(158, 99); this.txtFutureValue.Name = "txtFutureValue"; this.txtFutureValue.ReadOnly = true; this.txtFutureValue.Size = new System.Drawing.Size(100, 23); this.txtFutureValue.TabIndex = 7; this.txtFutureValue.TabStop = false; // // btnCalculate // this.btnCalculate.Location = new System.Drawing.Point(93, 137); this.btnCalculate.Name = "btnCalculate"; this.btnCalculate.Size = new System.Drawing.Size(75, 23); this.btnCalculate.TabIndex = 8; this.btnCalculate.Text = "&Calculate"; this.btnCalculate.UseVisualStyleBackColor = true; this.btnCalculate.Click += new System.EventHandler(this.btnCalculate_Click); // // btnExit // this.btnExit.Location = new System.Drawing.Point(183, 137); this.btnExit.Name = "btnExit"; this.btnExit.Size = new System.Drawing.Size(75, 23); this.btnExit.TabIndex = 9; this.btnExit.Text = "E&xit"; this.btnExit.UseVisualStyleBackColor = true; this.btnExit.Click += new System.EventHandler(this.btnExit_Click); // // frmFutureValue // this.AcceptButton = this.btnCalculate; this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.btnExit; this.ClientSize = new System.Drawing.Size(280, 174); this.Controls.Add(this.btnExit); this.Controls.Add(this.btnCalculate); this.Controls.Add(this.txtFutureValue); this.Controls.Add(this.label4); this.Controls.Add(this.txtYears); this.Controls.Add(this.label3); this.Controls.Add(this.txtInterestRate); this.Controls.Add(this.label2); this.Controls.Add(this.txtMonthlyInvestment); this.Controls.Add(this.label1); this.Name = "frmFutureValue"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Future Value"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label label1; private TextBox txtMonthlyInvestment; private Label label2; private TextBox txtInterestRate; private Label label3; private TextBox txtYears; private Label label4; private TextBox txtFutureValue; private Button btnCalculate; private Button btnExit; } }