namespace FCC_Uber_MDX_Configurator { partial class COM_Setup_Executable_CommandForm { /// /// 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.LBL_ID = new System.Windows.Forms.Label(); this.TXT_ID = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.TXT_EXTERNAL_ID = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.TXT_PARAMETERS = new System.Windows.Forms.TextBox(); this.BTN_SAVE = new System.Windows.Forms.Button(); this.BTN_CANCEL = new System.Windows.Forms.Button(); this.BTN_HELP = new System.Windows.Forms.Button(); this.SuspendLayout(); // // LBL_ID // this.LBL_ID.AutoSize = true; this.LBL_ID.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.LBL_ID.Location = new System.Drawing.Point(12, 9); this.LBL_ID.Name = "LBL_ID"; this.LBL_ID.Size = new System.Drawing.Size(102, 22); this.LBL_ID.TabIndex = 116; this.LBL_ID.Text = "Internal ID:"; // // TXT_ID // this.TXT_ID.Font = new System.Drawing.Font("Arial", 14.25F); this.TXT_ID.Location = new System.Drawing.Point(120, 6); this.TXT_ID.MaxLength = 255; this.TXT_ID.Name = "TXT_ID"; this.TXT_ID.Size = new System.Drawing.Size(258, 29); this.TXT_ID.TabIndex = 115; this.TXT_ID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // 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(12, 44); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(176, 22); this.label1.TabIndex = 118; this.label1.Text = "External Command:"; // // TXT_EXTERNAL_ID // this.TXT_EXTERNAL_ID.Font = new System.Drawing.Font("Arial", 14.25F); this.TXT_EXTERNAL_ID.Location = new System.Drawing.Point(194, 41); this.TXT_EXTERNAL_ID.MaxLength = 255; this.TXT_EXTERNAL_ID.Name = "TXT_EXTERNAL_ID"; this.TXT_EXTERNAL_ID.Size = new System.Drawing.Size(184, 29); this.TXT_EXTERNAL_ID.TabIndex = 117; this.TXT_EXTERNAL_ID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // label2 // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.Location = new System.Drawing.Point(12, 79); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(289, 22); this.label2.TabIndex = 120; this.label2.Text = "Parameters [Comma Seperated]:"; // // TXT_PARAMETERS // this.TXT_PARAMETERS.Font = new System.Drawing.Font("Arial", 14.25F); this.TXT_PARAMETERS.Location = new System.Drawing.Point(67, 104); this.TXT_PARAMETERS.MaxLength = 255; this.TXT_PARAMETERS.Multiline = true; this.TXT_PARAMETERS.Name = "TXT_PARAMETERS"; this.TXT_PARAMETERS.Size = new System.Drawing.Size(311, 130); this.TXT_PARAMETERS.TabIndex = 119; this.TXT_PARAMETERS.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; // // BTN_SAVE // this.BTN_SAVE.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.SaveCheckIcon; this.BTN_SAVE.Location = new System.Drawing.Point(328, 240); this.BTN_SAVE.Name = "BTN_SAVE"; this.BTN_SAVE.Size = new System.Drawing.Size(50, 50); this.BTN_SAVE.TabIndex = 122; 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(272, 240); this.BTN_CANCEL.Name = "BTN_CANCEL"; this.BTN_CANCEL.Size = new System.Drawing.Size(50, 50); this.BTN_CANCEL.TabIndex = 121; this.BTN_CANCEL.UseVisualStyleBackColor = true; this.BTN_CANCEL.Click += new System.EventHandler(this.BTN_CANCEL_Click); // // BTN_HELP // this.BTN_HELP.Enabled = false; this.BTN_HELP.Image = global::FCC_Uber_MDX_Configurator.Properties.Resources.HelpIcon; this.BTN_HELP.Location = new System.Drawing.Point(216, 240); this.BTN_HELP.Name = "BTN_HELP"; this.BTN_HELP.Size = new System.Drawing.Size(50, 50); this.BTN_HELP.TabIndex = 123; this.BTN_HELP.TabStop = false; this.BTN_HELP.UseVisualStyleBackColor = true; // // COM_Setup_Executable_CommandForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.White; this.ClientSize = new System.Drawing.Size(390, 299); this.Controls.Add(this.BTN_SAVE); this.Controls.Add(this.BTN_CANCEL); this.Controls.Add(this.BTN_HELP); this.Controls.Add(this.label2); this.Controls.Add(this.TXT_PARAMETERS); this.Controls.Add(this.label1); this.Controls.Add(this.TXT_EXTERNAL_ID); this.Controls.Add(this.LBL_ID); this.Controls.Add(this.TXT_ID); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.Name = "COM_Setup_Executable_CommandForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "COM_Setup_Executable_CommandForm"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label LBL_ID; private System.Windows.Forms.TextBox TXT_ID; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox TXT_EXTERNAL_ID; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox TXT_PARAMETERS; private System.Windows.Forms.Button BTN_SAVE; private System.Windows.Forms.Button BTN_CANCEL; private System.Windows.Forms.Button BTN_HELP; } }