1. namespace DNS_Manager
  2. {
  3.     partial class AddEdit
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.  
  10.         /// <summary>
  11.         /// Clean up any resources being used.
  12.         /// </summary>
  13.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14.         protected override void Dispose(bool disposing)
  15.         {
  16.             if (disposing && (components != null))
  17.             {
  18.                 components.Dispose();
  19.             }
  20.             base.Dispose(disposing);
  21.         }
  22.  
  23.         #region Windows Form Designer generated code
  24.  
  25.         /// <summary>
  26.         /// Required method for Designer support - do not modify
  27.         /// the contents of this method with the code editor.
  28.         /// </summary>
  29.         private void InitializeComponent()
  30.         {
  31.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddEdit));
  32.             this.label1 = new System.Windows.Forms.Label();
  33.             this.textBoxRecord = new System.Windows.Forms.TextBox();
  34.             this.label2 = new System.Windows.Forms.Label();
  35.             this.label3 = new System.Windows.Forms.Label();
  36.             this.comboBoxType = new System.Windows.Forms.ComboBox();
  37.             this.label4 = new System.Windows.Forms.Label();
  38.             this.textBoxValue = new System.Windows.Forms.TextBox();
  39.             this.label5 = new System.Windows.Forms.Label();
  40.             this.textBoxComment = new System.Windows.Forms.TextBox();
  41.             this.buttonSave = new System.Windows.Forms.Button();
  42.             this.buttonCancel = new System.Windows.Forms.Button();
  43.             this.SuspendLayout();
  44.             //
  45.             // label1
  46.             //
  47.             this.label1.AutoSize = true;
  48.             this.label1.Location = new System.Drawing.Point(7, 9);
  49.             this.label1.Name = "label1";
  50.             this.label1.Size = new System.Drawing.Size(45, 13);
  51.             this.label1.TabIndex = 0;
  52.             this.label1.Text = "Record:";
  53.             //
  54.             // textBoxRecord
  55.             //
  56.             this.textBoxRecord.Location = new System.Drawing.Point(10, 25);
  57.             this.textBoxRecord.Name = "textBoxRecord";
  58.             this.textBoxRecord.Size = new System.Drawing.Size(335, 20);
  59.             this.textBoxRecord.TabIndex = 1;
  60.             //
  61.             // label2
  62.             //
  63.             this.label2.AutoSize = true;
  64.             this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  65.             this.label2.Location = new System.Drawing.Point(7, 48);
  66.             this.label2.Name = "label2";
  67.             this.label2.Size = new System.Drawing.Size(319, 13);
  68.             this.label2.TabIndex = 2;
  69.             this.label2.Text = "The full name of the record you\'d like to add, e.g. testing.groo.com";
  70.             //
  71.             // label3
  72.             //
  73.             this.label3.AutoSize = true;
  74.             this.label3.Location = new System.Drawing.Point(7, 77);
  75.             this.label3.Name = "label3";
  76.             this.label3.Size = new System.Drawing.Size(34, 13);
  77.             this.label3.TabIndex = 3;
  78.             this.label3.Text = "Type:";
  79.             //
  80.             // comboBoxType
  81.             //
  82.             this.comboBoxType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  83.             this.comboBoxType.FormattingEnabled = true;
  84.             this.comboBoxType.Items.AddRange(new object[] {
  85.             "A",
  86.             "CNAME",
  87.             "NS",
  88.             "PTR",
  89.             "NAPTR",
  90.             "SRV",
  91.             "TXT",
  92.             "SPF",
  93.             "AAAA"});
  94.             this.comboBoxType.Location = new System.Drawing.Point(10, 93);
  95.             this.comboBoxType.Name = "comboBoxType";
  96.             this.comboBoxType.Size = new System.Drawing.Size(121, 21);
  97.             this.comboBoxType.TabIndex = 4;
  98.             //
  99.             // label4
  100.             //
  101.             this.label4.AutoSize = true;
  102.             this.label4.Location = new System.Drawing.Point(7, 126);
  103.             this.label4.Name = "label4";
  104.             this.label4.Size = new System.Drawing.Size(37, 13);
  105.             this.label4.TabIndex = 5;
  106.             this.label4.Text = "Value:";
  107.             //
  108.             // textBoxValue
  109.             //
  110.             this.textBoxValue.Location = new System.Drawing.Point(10, 143);
  111.             this.textBoxValue.Name = "textBoxValue";
  112.             this.textBoxValue.Size = new System.Drawing.Size(335, 20);
  113.             this.textBoxValue.TabIndex = 6;
  114.             //
  115.             // label5
  116.             //
  117.             this.label5.AutoSize = true;
  118.             this.label5.Location = new System.Drawing.Point(7, 177);
  119.             this.label5.Name = "label5";
  120.             this.label5.Size = new System.Drawing.Size(102, 13);
  121.             this.label5.TabIndex = 7;
  122.             this.label5.Text = "Comment: (Optional)";
  123.             //
  124.             // textBoxComment
  125.             //
  126.             this.textBoxComment.Location = new System.Drawing.Point(10, 193);
  127.             this.textBoxComment.Name = "textBoxComment";
  128.             this.textBoxComment.Size = new System.Drawing.Size(335, 20);
  129.             this.textBoxComment.TabIndex = 8;
  130.             //
  131.             // buttonSave
  132.             //
  133.             this.buttonSave.Location = new System.Drawing.Point(189, 219);
  134.             this.buttonSave.Name = "buttonSave";
  135.             this.buttonSave.Size = new System.Drawing.Size(75, 23);
  136.             this.buttonSave.TabIndex = 9;
  137.             this.buttonSave.Text = "Save";
  138.             this.buttonSave.UseVisualStyleBackColor = true;
  139.             this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
  140.             //
  141.             // buttonCancel
  142.             //
  143.             this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  144.             this.buttonCancel.Location = new System.Drawing.Point(270, 219);
  145.             this.buttonCancel.Name = "buttonCancel";
  146.             this.buttonCancel.Size = new System.Drawing.Size(75, 23);
  147.             this.buttonCancel.TabIndex = 10;
  148.             this.buttonCancel.Text = "Cancel";
  149.             this.buttonCancel.UseVisualStyleBackColor = true;
  150.             this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
  151.             //
  152.             // AddEdit
  153.             //
  154.             this.AcceptButton = this.buttonSave;
  155.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  156.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  157.             this.CancelButton = this.buttonCancel;
  158.             this.ClientSize = new System.Drawing.Size(357, 252);
  159.             this.Controls.Add(this.buttonCancel);
  160.             this.Controls.Add(this.buttonSave);
  161.             this.Controls.Add(this.textBoxComment);
  162.             this.Controls.Add(this.label5);
  163.             this.Controls.Add(this.textBoxValue);
  164.             this.Controls.Add(this.label4);
  165.             this.Controls.Add(this.comboBoxType);
  166.             this.Controls.Add(this.label3);
  167.             this.Controls.Add(this.label2);
  168.             this.Controls.Add(this.textBoxRecord);
  169.             this.Controls.Add(this.label1);
  170.             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  171.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  172.             this.MaximizeBox = false;
  173.             this.MinimizeBox = false;
  174.             this.Name = "AddEdit";
  175.             this.ShowInTaskbar = false;
  176.             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  177.             this.Text = "Add Record";
  178.             this.ResumeLayout(false);
  179.             this.PerformLayout();
  180.  
  181.         }
  182.  
  183.         #endregion
  184.  
  185.         private System.Windows.Forms.Label label1;
  186.         private System.Windows.Forms.TextBox textBoxRecord;
  187.         private System.Windows.Forms.Label label2;
  188.         private System.Windows.Forms.Label label3;
  189.         private System.Windows.Forms.ComboBox comboBoxType;
  190.         private System.Windows.Forms.Label label4;
  191.         private System.Windows.Forms.TextBox textBoxValue;
  192.         private System.Windows.Forms.Label label5;
  193.         private System.Windows.Forms.TextBox textBoxComment;
  194.         private System.Windows.Forms.Button buttonSave;
  195.         private System.Windows.Forms.Button buttonCancel;
  196.     }
  197. }