From a44b50790d15388889d8c6f0e7d9d903d14c7001 Mon Sep 17 00:00:00 2001
From:
Date: Thu, 1 Jan 1970 00:00:00 +0000
Subject: distance calc
---
.../Distance Calculator/Form1.Designer.cs | 131 +++++++++++++++++++++
1 file changed, 131 insertions(+)
create mode 100644 distance_calc/Distance Calculator/Form1.Designer.cs
(limited to 'distance_calc/Distance Calculator/Form1.Designer.cs')
diff --git a/distance_calc/Distance Calculator/Form1.Designer.cs b/distance_calc/Distance Calculator/Form1.Designer.cs
new file mode 100644
index 0000000..ae518c5
--- /dev/null
+++ b/distance_calc/Distance Calculator/Form1.Designer.cs
@@ -0,0 +1,131 @@
+namespace Distance_Calculator
+{
+ partial class distanceCalculator
+ {
+ ///
+ /// 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.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.outputListBox = new System.Windows.Forms.ListBox();
+ this.calculateButton = new System.Windows.Forms.Button();
+ this.exitButton = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // mphLabel
+ //
+ this.mphLabel.AutoSize = true;
+ this.mphLabel.Location = new System.Drawing.Point(36, 21);
+ 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(193, 18);
+ 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(77, 54);
+ 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(193, 54);
+ this.hoursTextBox.Name = "hoursTextBox";
+ this.hoursTextBox.Size = new System.Drawing.Size(100, 22);
+ this.hoursTextBox.TabIndex = 3;
+ //
+ // outputListBox
+ //
+ this.outputListBox.FormattingEnabled = true;
+ this.outputListBox.ItemHeight = 16;
+ this.outputListBox.Location = new System.Drawing.Point(36, 91);
+ this.outputListBox.Name = "outputListBox";
+ this.outputListBox.Size = new System.Drawing.Size(266, 116);
+ this.outputListBox.TabIndex = 5;
+ //
+ // calculateButton
+ //
+ this.calculateButton.Location = new System.Drawing.Point(77, 222);
+ this.calculateButton.Name = "calculateButton";
+ this.calculateButton.Size = new System.Drawing.Size(82, 40);
+ this.calculateButton.TabIndex = 4;
+ 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(184, 222);
+ 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(342, 283);
+ this.Controls.Add(this.exitButton);
+ this.Controls.Add(this.calculateButton);
+ this.Controls.Add(this.outputListBox);
+ 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.ListBox outputListBox;
+ private System.Windows.Forms.Button calculateButton;
+ private System.Windows.Forms.Button exitButton;
+ }
+}
+
--
cgit 1.4.1