namespace FCC_Uber_MDX_Configurator { partial class AddVariableForm { /// /// 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.label7 = new System.Windows.Forms.Label(); this.COMBO_VALUE_BOOLEAN = new System.Windows.Forms.ComboBox(); this.label8 = new System.Windows.Forms.Label(); this.COMBO_VARIABLE_TYPE = new System.Windows.Forms.ComboBox(); this.TXT_VALUE_NUMERIC = new System.Windows.Forms.TextBox(); this.label3 = new System.Windows.Forms.Label(); this.TXT_Name = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.BTN_SAVE = new System.Windows.Forms.Button(); this.BTN_CANCEL = new System.Windows.Forms.Button(); this.BTN_HELP_VALUE_BOOL = new System.Windows.Forms.Button(); this.BTN_VARIABLE_TYPE = new System.Windows.Forms.Button(); this.BTN_HELP_VALUE_NUMERIC = new System.Windows.Forms.Button(); this.BTN_HELP_NAME = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label7 // this.label7.AutoSize = true; this.label7.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label7.Location = new System.Drawing.Point(8, 136); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(224, 22); this.label7.TabIndex = 95; this.label7.Text = "Variable Value (Boolean):"; // // COMBO_VALUE_BOOLEAN // this.COMBO_VALUE_BOOLEAN.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend; this.COMBO_VALUE_BOOLEAN.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; this.COMBO_VALUE_BOOLEAN.Font = new System.Drawing.Font("Arial", 14.25F); this.COMBO_VALUE_BOOLEAN.FormattingEnabled = true; this.COMBO_VALUE_BOOLEAN.Items.AddRange(new object[] { "True", "False"}); this.COMBO_VALUE_BOOLEAN.Location = new System.Drawing.Point(238, 133); this.COMBO_VALUE_BOOLEAN.Name = "COMBO_VALUE_BOOLEAN"; this.COMBO_VALUE_BOOLEAN.Size = new System.Drawing.Size(133, 30); this.COMBO_VALUE_BOOLEAN.TabIndex = 84; this.COMBO_VALUE_BOOLEAN.Text = "False"; this.COMBO_VALUE_BOOLEAN.Leave += new System.EventHandler(this.Leave_VerifyCOMBOIsValid); // // label8 // this.label8.AutoSize = true; this.label8.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label8.Location = new System.Drawing.Point(8, 80); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(132, 22); this.label8.TabIndex = 93; this.label8.Text = "Variable Type:"; // // COMBO_VARIABLE_TYPE // this.COMBO_VARIABLE_TYPE.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend; this.COMBO_VARIABLE_TYPE.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; this.COMBO_VARIABLE_TYPE.Font = new System.Drawing.Font("Arial", 14.25F); this.COMBO_VARIABLE_TYPE.FormattingEnabled = true; this.COMBO_VARIABLE_TYPE.Items.AddRange(new object[] { "Boolean", "Numeric"}); this.COMBO_VARIABLE_TYPE.Location = new System.Drawing.Point(146, 77); this.COMBO_VARIABLE_TYPE.Name = "COMBO_VARIABLE_TYPE"; this.COMBO_VARIABLE_TYPE.Size = new System.Drawing.Size(225, 30); this.COMBO_VARIABLE_TYPE.TabIndex = 83; this.COMBO_VARIABLE_TYPE.Text = "Boolean"; this.COMBO_VARIABLE_TYPE.SelectedIndexChanged += new System.EventHandler(this.COMBO_VARIABLE_TYPE_SelectedIndexChanged); this.COMBO_VARIABLE_TYPE.Leave += new System.EventHandler(this.Leave_VerifyCOMBOIsValid); // // TXT_VALUE_NUMERIC // this.TXT_VALUE_NUMERIC.Enabled = false; this.TXT_VALUE_NUMERIC.Font = new System.Drawing.Font("Arial", 14.25F); this.TXT_VALUE_NUMERIC.Location = new System.Drawing.Point(238, 194); this.TXT_VALUE_NUMERIC.MaxLength = 255; this.TXT_VALUE_NUMERIC.Name = "TXT_VALUE_NUMERIC"; this.TXT_VALUE_NUMERIC.Size = new System.Drawing.Size(133, 29); this.TXT_VALUE_NUMERIC.TabIndex = 85; this.TXT_VALUE_NUMERIC.Text = "0"; this.TXT_VALUE_NUMERIC.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.TXT_VALUE_NUMERIC.KeyDown += new System.Windows.Forms.KeyEventHandler(this.KeyDown_IsANumber); this.TXT_VALUE_NUMERIC.Leave += new System.EventHandler(this.Leave_VerifyTXTHasAValidNumber); // // label3 // this.label3.AutoSize = true; this.label3.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.Location = new System.Drawing.Point(8, 197); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(224, 22); this.label3.TabIndex = 90; this.label3.Text = "Variable Value (Numeric):"; // // TXT_Name // this.TXT_Name.Font = new System.Drawing.Font("Arial", 14.25F); this.TXT_Name.Location = new System.Drawing.Point(79, 21); this.TXT_Name.MaxLength = 255; this.TXT_Name.Name = "TXT_Name"; this.TXT_Name.Size = new System.Drawing.Size(292, 29); this.TXT_Name.TabIndex = 82; this.TXT_Name.Text = "My Variable"; this.TXT_Name.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.TXT_Name.Leave += new System.EventHandler(this.Leave_VerifyTXTIsNotEmpty); // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(8, 24); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(65, 22); this.label1.TabIndex = 88; this.label1.Text = "Name:"; // // BTN_SAVE // this.BTN_SAVE.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.SaveCheckIcon; this.BTN_SAVE.Location = new System.Drawing.Point(377, 241); this.BTN_SAVE.Name = "BTN_SAVE"; this.BTN_SAVE.Size = new System.Drawing.Size(50, 50); this.BTN_SAVE.TabIndex = 87; this.BTN_SAVE.UseVisualStyleBackColor = true; this.BTN_SAVE.Click += new System.EventHandler(this.BTN_SAVE_Click); // // BTN_CANCEL // this.BTN_CANCEL.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.BTN_CANCEL.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.CancelIcon; this.BTN_CANCEL.Location = new System.Drawing.Point(321, 241); this.BTN_CANCEL.Name = "BTN_CANCEL"; this.BTN_CANCEL.Size = new System.Drawing.Size(50, 50); this.BTN_CANCEL.TabIndex = 86; this.BTN_CANCEL.UseVisualStyleBackColor = true; this.BTN_CANCEL.Click += new System.EventHandler(this.BTN_CANCEL_Click); // // BTN_HELP_VALUE_BOOL // this.BTN_HELP_VALUE_BOOL.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.HelpIcon; this.BTN_HELP_VALUE_BOOL.Location = new System.Drawing.Point(377, 124); this.BTN_HELP_VALUE_BOOL.Name = "BTN_HELP_VALUE_BOOL"; this.BTN_HELP_VALUE_BOOL.Size = new System.Drawing.Size(50, 50); this.BTN_HELP_VALUE_BOOL.TabIndex = 94; this.BTN_HELP_VALUE_BOOL.TabStop = false; this.BTN_HELP_VALUE_BOOL.UseVisualStyleBackColor = true; this.BTN_HELP_VALUE_BOOL.Click += new System.EventHandler(this.BTN_HELP_VALUE_BOOL_Click); // // BTN_VARIABLE_TYPE // this.BTN_VARIABLE_TYPE.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.HelpIcon; this.BTN_VARIABLE_TYPE.Location = new System.Drawing.Point(377, 68); this.BTN_VARIABLE_TYPE.Name = "BTN_VARIABLE_TYPE"; this.BTN_VARIABLE_TYPE.Size = new System.Drawing.Size(50, 50); this.BTN_VARIABLE_TYPE.TabIndex = 92; this.BTN_VARIABLE_TYPE.TabStop = false; this.BTN_VARIABLE_TYPE.UseVisualStyleBackColor = true; this.BTN_VARIABLE_TYPE.Click += new System.EventHandler(this.BTN_VARIABLE_TYPE_Click); // // BTN_HELP_VALUE_NUMERIC // this.BTN_HELP_VALUE_NUMERIC.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.HelpIcon; this.BTN_HELP_VALUE_NUMERIC.Location = new System.Drawing.Point(377, 185); this.BTN_HELP_VALUE_NUMERIC.Name = "BTN_HELP_VALUE_NUMERIC"; this.BTN_HELP_VALUE_NUMERIC.Size = new System.Drawing.Size(50, 50); this.BTN_HELP_VALUE_NUMERIC.TabIndex = 91; this.BTN_HELP_VALUE_NUMERIC.TabStop = false; this.BTN_HELP_VALUE_NUMERIC.UseVisualStyleBackColor = true; this.BTN_HELP_VALUE_NUMERIC.Click += new System.EventHandler(this.BTN_HELP_VALUE_NUMERIC_Click); // // BTN_HELP_NAME // this.BTN_HELP_NAME.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.HelpIcon; this.BTN_HELP_NAME.Location = new System.Drawing.Point(377, 12); this.BTN_HELP_NAME.Name = "BTN_HELP_NAME"; this.BTN_HELP_NAME.Size = new System.Drawing.Size(50, 50); this.BTN_HELP_NAME.TabIndex = 89; this.BTN_HELP_NAME.TabStop = false; this.BTN_HELP_NAME.UseVisualStyleBackColor = true; this.BTN_HELP_NAME.Click += new System.EventHandler(this.BTN_HELP_NAME_Click); // // AddVariableForm // this.AcceptButton = this.BTN_SAVE; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.White; this.CancelButton = this.BTN_CANCEL; this.ClientSize = new System.Drawing.Size(434, 299); this.Controls.Add(this.label7); this.Controls.Add(this.COMBO_VALUE_BOOLEAN); this.Controls.Add(this.BTN_HELP_VALUE_BOOL); this.Controls.Add(this.label8); this.Controls.Add(this.COMBO_VARIABLE_TYPE); this.Controls.Add(this.BTN_VARIABLE_TYPE); this.Controls.Add(this.BTN_HELP_VALUE_NUMERIC); this.Controls.Add(this.TXT_VALUE_NUMERIC); this.Controls.Add(this.label3); this.Controls.Add(this.BTN_SAVE); this.Controls.Add(this.BTN_CANCEL); this.Controls.Add(this.BTN_HELP_NAME); this.Controls.Add(this.TXT_Name); this.Controls.Add(this.label1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.MinimizeBox = true; this.Name = "AddVariableForm"; this.ShowIcon = false; this.ShowInTaskbar = true; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Add Variable"; this.TopMost = false; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label7; private System.Windows.Forms.ComboBox COMBO_VALUE_BOOLEAN; private System.Windows.Forms.Button BTN_HELP_VALUE_BOOL; private System.Windows.Forms.Label label8; private System.Windows.Forms.ComboBox COMBO_VARIABLE_TYPE; private System.Windows.Forms.Button BTN_VARIABLE_TYPE; private System.Windows.Forms.Button BTN_HELP_VALUE_NUMERIC; private System.Windows.Forms.TextBox TXT_VALUE_NUMERIC; private System.Windows.Forms.Label label3; private System.Windows.Forms.Button BTN_SAVE; private System.Windows.Forms.Button BTN_CANCEL; private System.Windows.Forms.Button BTN_HELP_NAME; private System.Windows.Forms.TextBox TXT_Name; private System.Windows.Forms.Label label1; } }