MortgagePayments.Designer.cs

Friday, May 16th, 2008 at 1:39 am by Jiltin
Filed under: Mortgage Pay 

// calculate your monthly mortgage payments
// a C# Windows GUI with a Form, Labels, TextBoxes, and a Button
// compiled with the neat SnippetCompiler.exe (which uses csc.exe)
// from: http://www.sliver.com/dotnet/SnippetCompiler/
// C# and .NET Framework V2.0 vegaseat 03apr2007

namespace MortgagePayments
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
//private System.ComponentModel.IContainer components = null;

private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.TextBox textBox3;
private System.ComponentModel.Container components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}

#region Windows Form Designer generated code
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.textBox3 = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// label1
//
this.label1.BackColor = System.Drawing.Color.Snow;
this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.label1.Location = new System.Drawing.Point(7, 7);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(106, 20);
this.label1.TabIndex = 0;
this.label1.Text = "Enter total loan ";
//
// label2
//
this.label2.BackColor = System.Drawing.Color.Snow;
this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.label2.Location = new System.Drawing.Point(7, 35);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(106, 20);
this.label2.TabIndex = 1;
this.label2.Text = "Enter interest (%) ";
//
// label3
//
this.label3.BackColor = System.Drawing.Color.Snow;
this.label3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.label3.Location = new System.Drawing.Point(7, 62);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(106, 20);
this.label3.TabIndex = 2;
this.label3.Text = "Enter years to pay ";
//
// label4
//
this.label4.BackColor = System.Drawing.Color.Snow;
this.label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.label4.Font = new System.Drawing.Font("Courier New", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.Location = new System.Drawing.Point(7, 94);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(205, 106);
this.label4.TabIndex = 3;
this.label4.Text = "Change the values to your needs";
//
// button1
//
this.button1.BackColor = System.Drawing.Color.Khaki;
this.button1.Location = new System.Drawing.Point(7, 203);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(205, 31);
this.button1.TabIndex = 4;
this.button1.Text = "Perform Mortgage Calcuations";
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(127, 7);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(83, 20);
this.textBox1.TabIndex = 5;
this.textBox1.Text = "100000";
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(127, 35);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(83, 20);
this.textBox2.TabIndex = 6;
this.textBox2.Text = "6.5";
//
// textBox3
//
this.textBox3.Location = new System.Drawing.Point(127, 62);
this.textBox3.Name = "textBox3";
this.textBox3.Size = new System.Drawing.Size(83, 20);
this.textBox3.TabIndex = 7;
this.textBox3.Text = "30";
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.BackColor = System.Drawing.Color.Lavender;
this.ClientSize = new System.Drawing.Size(225, 246);
this.Controls.Add(this.textBox3);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.button1);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Form1";
this.Text = "Mortgage Calculator - By Jiltin";
this.ResumeLayout(false);
this.PerformLayout();

}
#endregion
}
}

Comments

2 Responses to “MortgagePayments.Designer.cs”

  1. Loan Calculator Mortgage Interest Computer on September 28th, 2008 12:49 am

    I never thought i will find this much information on ePayments.Designer.cs | Jiltin’s Blog today. Nice post mate - keep up the good work.