about summary refs log tree commit diff
path: root/distance_file/Distance Calculator/Form1.Designer.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer1970-01-01 00:00:00 +0000
commit8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61 (patch)
tree71b8f2b90711cfb94d8e0f1c0cdd22308b1bff62 /distance_file/Distance Calculator/Form1.Designer.cs
parentpet info (diff)
downloadsql-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.tar
sql-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.tar.gz
sql-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.tar.bz2
sql-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.tar.xz
sql-8e0b69c9cb4dda70de82b2c6444e99aa3aae5d61.zip
distance file
Diffstat (limited to 'distance_file/Distance Calculator/Form1.Designer.cs')
-rw-r--r--distance_file/Distance Calculator/Form1.Designer.cs121
1 files changed, 121 insertions, 0 deletions
diff --git a/distance_file/Distance Calculator/Form1.Designer.cs b/distance_file/Distance Calculator/Form1.Designer.cs
new file mode 100644
index 0000000..d04a18c
--- /dev/null
+++ b/distance_file/Distance Calculator/Form1.Designer.cs
@@ -0,0 +1,121 @@
+namespace Distance_Calculator

+{

+    partial class distanceCalculator

+    {

+        /// <summary>

+        /// Required designer variable.

+        /// </summary>

+        private System.ComponentModel.IContainer 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

+

+        /// <summary>

+        /// Required method for Designer support - do not modify

+        /// the contents of this method with the code editor.

+        /// </summary>

+        private void InitializeComponent()

+        {

+            this.mphLabel = new System.Windows.Forms.Label();

+            this.mphTextBox = new System.Windows.Forms.TextBox();

+            this.hoursLabel = new System.Windows.Forms.Label();

+            this.hoursTextBox = new System.Windows.Forms.TextBox();

+            this.calculateButton = new System.Windows.Forms.Button();

+            this.exitButton = new System.Windows.Forms.Button();

+            this.saveFile = new System.Windows.Forms.SaveFileDialog();

+            this.SuspendLayout();

+            // 

+            // mphLabel

+            // 

+            this.mphLabel.AutoSize = true;

+            this.mphLabel.Location = new System.Drawing.Point(49, 41);

+            this.mphLabel.Name = "mphLabel";

+            this.mphLabel.Size = new System.Drawing.Size(145, 16);

+            this.mphLabel.TabIndex = 0;

+            this.mphLabel.Text = "Vehicle Speed in MPH:";

+            // 

+            // mphTextBox

+            // 

+            this.mphTextBox.Location = new System.Drawing.Point(206, 38);

+            this.mphTextBox.Name = "mphTextBox";

+            this.mphTextBox.Size = new System.Drawing.Size(100, 22);

+            this.mphTextBox.TabIndex = 1;

+            // 

+            // hoursLabel

+            // 

+            this.hoursLabel.AutoSize = true;

+            this.hoursLabel.Location = new System.Drawing.Point(90, 74);

+            this.hoursLabel.Name = "hoursLabel";

+            this.hoursLabel.Size = new System.Drawing.Size(104, 16);

+            this.hoursLabel.TabIndex = 2;

+            this.hoursLabel.Text = "Hours Traveled:";

+            // 

+            // hoursTextBox

+            // 

+            this.hoursTextBox.Location = new System.Drawing.Point(206, 74);

+            this.hoursTextBox.Name = "hoursTextBox";

+            this.hoursTextBox.Size = new System.Drawing.Size(100, 22);

+            this.hoursTextBox.TabIndex = 3;

+            // 

+            // calculateButton

+            // 

+            this.calculateButton.Location = new System.Drawing.Point(99, 112);

+            this.calculateButton.Name = "calculateButton";

+            this.calculateButton.Size = new System.Drawing.Size(82, 40);

+            this.calculateButton.TabIndex = 5;

+            this.calculateButton.Text = "Calculate";

+            this.calculateButton.UseVisualStyleBackColor = true;

+            this.calculateButton.Click += new System.EventHandler(this.calculateButton_Click);

+            // 

+            // exitButton

+            // 

+            this.exitButton.Location = new System.Drawing.Point(197, 112);

+            this.exitButton.Name = "exitButton";

+            this.exitButton.Size = new System.Drawing.Size(82, 40);

+            this.exitButton.TabIndex = 6;

+            this.exitButton.Text = "Exit";

+            this.exitButton.UseVisualStyleBackColor = true;

+            this.exitButton.Click += new System.EventHandler(this.exitButton_Click);

+            // 

+            // distanceCalculator

+            // 

+            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);

+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;

+            this.ClientSize = new System.Drawing.Size(372, 193);

+            this.Controls.Add(this.exitButton);

+            this.Controls.Add(this.calculateButton);

+            this.Controls.Add(this.hoursTextBox);

+            this.Controls.Add(this.hoursLabel);

+            this.Controls.Add(this.mphTextBox);

+            this.Controls.Add(this.mphLabel);

+            this.Name = "distanceCalculator";

+            this.Text = "Distance Calculator";

+            this.ResumeLayout(false);

+            this.PerformLayout();

+

+        }

+

+        #endregion

+

+        private System.Windows.Forms.Label mphLabel;

+        private System.Windows.Forms.TextBox mphTextBox;

+        private System.Windows.Forms.Label hoursLabel;

+        private System.Windows.Forms.TextBox hoursTextBox;

+        private System.Windows.Forms.Button calculateButton;

+        private System.Windows.Forms.Button exitButton;

+        private System.Windows.Forms.SaveFileDialog saveFile;

+    }

+}

+