From 38181c3bc1f73a958ed8a86406920fe16a58c115 Mon Sep 17 00:00:00 2001
From:
Date: Thu, 1 Jan 1970 00:00:00 +0000
Subject: future value 3
---
.../FutureValue/frmFutureValue.Designer.cs | 181 +++++++++++++++++++++
1 file changed, 181 insertions(+)
create mode 100644 future_value3/FutureValue/frmFutureValue.Designer.cs
(limited to 'future_value3/FutureValue/frmFutureValue.Designer.cs')
diff --git a/future_value3/FutureValue/frmFutureValue.Designer.cs b/future_value3/FutureValue/frmFutureValue.Designer.cs
new file mode 100644
index 0000000..266c0d6
--- /dev/null
+++ b/future_value3/FutureValue/frmFutureValue.Designer.cs
@@ -0,0 +1,181 @@
+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.btnExit = new System.Windows.Forms.Button();
+ this.btnCalculate = new System.Windows.Forms.Button();
+ this.txtYears = new System.Windows.Forms.TextBox();
+ this.txtInterestRate = new System.Windows.Forms.TextBox();
+ this.txtMonthlyInvestment = new System.Windows.Forms.TextBox();
+ this.label4 = new System.Windows.Forms.Label();
+ this.label3 = new System.Windows.Forms.Label();
+ this.label2 = new System.Windows.Forms.Label();
+ this.label1 = new System.Windows.Forms.Label();
+ this.txtFutureValue = new System.Windows.Forms.TextBox();
+ this.SuspendLayout();
+ //
+ // btnExit
+ //
+ this.btnExit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
+ this.btnExit.Location = new System.Drawing.Point(164, 145);
+ this.btnExit.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+ this.btnExit.Name = "btnExit";
+ this.btnExit.Size = new System.Drawing.Size(88, 27);
+ this.btnExit.TabIndex = 19;
+ this.btnExit.Text = "E&xit";
+ this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
+ //
+ // btnCalculate
+ //
+ this.btnCalculate.Location = new System.Drawing.Point(63, 145);
+ this.btnCalculate.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+ this.btnCalculate.Name = "btnCalculate";
+ this.btnCalculate.Size = new System.Drawing.Size(88, 27);
+ this.btnCalculate.TabIndex = 18;
+ this.btnCalculate.Text = "&Calculate";
+ this.btnCalculate.Click += new System.EventHandler(this.btnCalculate_Click);
+ //
+ // txtYears
+ //
+ this.txtYears.Location = new System.Drawing.Point(154, 74);
+ this.txtYears.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+ this.txtYears.Name = "txtYears";
+ this.txtYears.Size = new System.Drawing.Size(97, 23);
+ this.txtYears.TabIndex = 17;
+ this.txtYears.Tag = "Number of years";
+ //
+ // txtInterestRate
+ //
+ this.txtInterestRate.Location = new System.Drawing.Point(154, 43);
+ this.txtInterestRate.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+ this.txtInterestRate.Name = "txtInterestRate";
+ this.txtInterestRate.Size = new System.Drawing.Size(97, 23);
+ this.txtInterestRate.TabIndex = 16;
+ this.txtInterestRate.Tag = "Yearly interest rate";
+ //
+ // txtMonthlyInvestment
+ //
+ this.txtMonthlyInvestment.Location = new System.Drawing.Point(154, 10);
+ this.txtMonthlyInvestment.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+ this.txtMonthlyInvestment.Name = "txtMonthlyInvestment";
+ this.txtMonthlyInvestment.Size = new System.Drawing.Size(97, 23);
+ this.txtMonthlyInvestment.TabIndex = 15;
+ this.txtMonthlyInvestment.Tag = "Monthly investment";
+ //
+ // label4
+ //
+ this.label4.Location = new System.Drawing.Point(14, 106);
+ this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(133, 23);
+ this.label4.TabIndex = 13;
+ this.label4.Text = "Future Value:";
+ this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // label3
+ //
+ this.label3.Location = new System.Drawing.Point(14, 74);
+ this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(133, 23);
+ this.label3.TabIndex = 12;
+ this.label3.Text = "Number of Years:";
+ this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // label2
+ //
+ this.label2.Location = new System.Drawing.Point(14, 43);
+ this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(133, 23);
+ this.label2.TabIndex = 11;
+ this.label2.Text = "Yearly Interest Rate:";
+ this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // label1
+ //
+ this.label1.Location = new System.Drawing.Point(14, 10);
+ this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(133, 23);
+ this.label1.TabIndex = 10;
+ this.label1.Text = "Monthly Investment:";
+ this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
+ //
+ // txtFutureValue
+ //
+ this.txtFutureValue.Location = new System.Drawing.Point(154, 107);
+ this.txtFutureValue.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+ this.txtFutureValue.Name = "txtFutureValue";
+ this.txtFutureValue.ReadOnly = true;
+ this.txtFutureValue.Size = new System.Drawing.Size(97, 23);
+ this.txtFutureValue.TabIndex = 20;
+ this.txtFutureValue.TabStop = false;
+ //
+ // 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(284, 185);
+ this.Controls.Add(this.txtFutureValue);
+ this.Controls.Add(this.btnExit);
+ this.Controls.Add(this.btnCalculate);
+ this.Controls.Add(this.txtYears);
+ this.Controls.Add(this.txtInterestRate);
+ this.Controls.Add(this.txtMonthlyInvestment);
+ this.Controls.Add(this.label4);
+ this.Controls.Add(this.label3);
+ this.Controls.Add(this.label2);
+ this.Controls.Add(this.label1);
+ this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
+ this.Name = "frmFutureValue";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+ this.Text = "Future Value";
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Button btnExit;
+ private System.Windows.Forms.Button btnCalculate;
+ private System.Windows.Forms.TextBox txtYears;
+ private System.Windows.Forms.TextBox txtInterestRate;
+ private System.Windows.Forms.TextBox txtMonthlyInvestment;
+ private System.Windows.Forms.Label label4;
+ private System.Windows.Forms.Label label3;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.TextBox txtFutureValue;
+ }
+}
+
--
cgit 1.4.1