namespace GroundZero.KeyCodes { partial class ALResponse { /// /// 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.tabs = new System.Windows.Forms.TabControl(); this.tpRequest = new System.Windows.Forms.TabPage(); this.edRequest = new System.Windows.Forms.TextBox(); this.tpGreeting = new System.Windows.Forms.TabPage(); this.edGreeting = new System.Windows.Forms.TextBox(); this.tpKey = new System.Windows.Forms.TabPage(); this.edKeyCode = new System.Windows.Forms.TextBox(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.sendToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.regenerateMessagesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.cancelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.tabs.SuspendLayout(); this.tpRequest.SuspendLayout(); this.tpGreeting.SuspendLayout(); this.tpKey.SuspendLayout(); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // // tabs // this.tabs.Controls.Add(this.tpRequest); this.tabs.Controls.Add(this.tpGreeting); this.tabs.Controls.Add(this.tpKey); this.tabs.Dock = System.Windows.Forms.DockStyle.Fill; this.tabs.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.tabs.Location = new System.Drawing.Point(0, 26); this.tabs.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.tabs.Name = "tabs"; this.tabs.SelectedIndex = 0; this.tabs.Size = new System.Drawing.Size(983, 533); this.tabs.TabIndex = 4; // // tpRequest // this.tpRequest.Controls.Add(this.edRequest); this.tpRequest.Location = new System.Drawing.Point(4, 27); this.tpRequest.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.tpRequest.Name = "tpRequest"; this.tpRequest.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4); this.tpRequest.Size = new System.Drawing.Size(975, 502); this.tpRequest.TabIndex = 0; this.tpRequest.Text = "Request"; this.tpRequest.UseVisualStyleBackColor = true; // // edRequest // this.edRequest.AcceptsReturn = true; this.edRequest.AcceptsTab = true; this.edRequest.Dock = System.Windows.Forms.DockStyle.Fill; this.edRequest.Location = new System.Drawing.Point(4, 4); this.edRequest.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.edRequest.MaxLength = 132767; this.edRequest.Multiline = true; this.edRequest.Name = "edRequest"; this.edRequest.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.edRequest.Size = new System.Drawing.Size(967, 494); this.edRequest.TabIndex = 1; // // tpGreeting // this.tpGreeting.Controls.Add(this.edGreeting); this.tpGreeting.Location = new System.Drawing.Point(4, 27); this.tpGreeting.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.tpGreeting.Name = "tpGreeting"; this.tpGreeting.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4); this.tpGreeting.Size = new System.Drawing.Size(975, 498); this.tpGreeting.TabIndex = 1; this.tpGreeting.Text = "Greeting message"; this.tpGreeting.UseVisualStyleBackColor = true; // // edGreeting // this.edGreeting.AcceptsReturn = true; this.edGreeting.AcceptsTab = true; this.edGreeting.Dock = System.Windows.Forms.DockStyle.Fill; this.edGreeting.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.edGreeting.Location = new System.Drawing.Point(4, 4); this.edGreeting.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.edGreeting.MaxLength = 132767; this.edGreeting.Multiline = true; this.edGreeting.Name = "edGreeting"; this.edGreeting.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.edGreeting.Size = new System.Drawing.Size(963, 485); this.edGreeting.TabIndex = 2; // // tpKey // this.tpKey.Controls.Add(this.edKeyCode); this.tpKey.Location = new System.Drawing.Point(4, 27); this.tpKey.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.tpKey.Name = "tpKey"; this.tpKey.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4); this.tpKey.Size = new System.Drawing.Size(975, 498); this.tpKey.TabIndex = 2; this.tpKey.Text = "Keycode message"; this.tpKey.UseVisualStyleBackColor = true; // // edKeyCode // this.edKeyCode.AcceptsReturn = true; this.edKeyCode.AcceptsTab = true; this.edKeyCode.Dock = System.Windows.Forms.DockStyle.Fill; this.edKeyCode.Location = new System.Drawing.Point(4, 4); this.edKeyCode.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.edKeyCode.MaxLength = 132767; this.edKeyCode.Multiline = true; this.edKeyCode.Name = "edKeyCode"; this.edKeyCode.ReadOnly = true; this.edKeyCode.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.edKeyCode.Size = new System.Drawing.Size(963, 485); this.edKeyCode.TabIndex = 3; // // menuStrip1 // this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.sendToolStripMenuItem, this.regenerateMessagesToolStripMenuItem, this.cancelToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Padding = new System.Windows.Forms.Padding(8, 2, 0, 2); this.menuStrip1.Size = new System.Drawing.Size(983, 26); this.menuStrip1.TabIndex = 5; this.menuStrip1.Text = "menuStrip1"; // // sendToolStripMenuItem // this.sendToolStripMenuItem.Name = "sendToolStripMenuItem"; this.sendToolStripMenuItem.Size = new System.Drawing.Size(201, 22); this.sendToolStripMenuItem.Text = "&Email reponses to customer"; this.sendToolStripMenuItem.Click += new System.EventHandler(this.sendToolStripMenuItem_Click); // // regenerateMessagesToolStripMenuItem // this.regenerateMessagesToolStripMenuItem.Name = "regenerateMessagesToolStripMenuItem"; this.regenerateMessagesToolStripMenuItem.Size = new System.Drawing.Size(166, 22); this.regenerateMessagesToolStripMenuItem.Text = "&Regenerate messages"; this.regenerateMessagesToolStripMenuItem.Click += new System.EventHandler(this.regenerateMessagesToolStripMenuItem_Click); // // cancelToolStripMenuItem // this.cancelToolStripMenuItem.Name = "cancelToolStripMenuItem"; this.cancelToolStripMenuItem.Size = new System.Drawing.Size(62, 22); this.cancelToolStripMenuItem.Text = "&Cancel"; this.cancelToolStripMenuItem.Click += new System.EventHandler(this.cancelToolStripMenuItem_Click); // // ALResponse // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(983, 559); this.Controls.Add(this.tabs); this.Controls.Add(this.menuStrip1); this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4); this.Name = "ALResponse"; this.Text = "License request response emails"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.tabs.ResumeLayout(false); this.tpRequest.ResumeLayout(false); this.tpRequest.PerformLayout(); this.tpGreeting.ResumeLayout(false); this.tpGreeting.PerformLayout(); this.tpKey.ResumeLayout(false); this.tpKey.PerformLayout(); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TabControl tabs; private System.Windows.Forms.TabPage tpRequest; private System.Windows.Forms.TextBox edRequest; private System.Windows.Forms.TabPage tpGreeting; private System.Windows.Forms.TextBox edGreeting; private System.Windows.Forms.TabPage tpKey; private System.Windows.Forms.TextBox edKeyCode; private System.Windows.Forms.MenuStrip menuStrip1; private System.Windows.Forms.ToolStripMenuItem sendToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem cancelToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem regenerateMessagesToolStripMenuItem; } }