namespace ProjectCarbon { partial class frmDnsLookup { /// /// 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.lblHostname = new System.Windows.Forms.Label(); this.txtHostname = new System.Windows.Forms.TextBox(); this.btnLookup = new System.Windows.Forms.Button(); this.lstResults = new System.Windows.Forms.ListBox(); this.lblResults = new System.Windows.Forms.Label(); this.SuspendLayout(); // // lblHostname // this.lblHostname.AutoSize = true; this.lblHostname.Location = new System.Drawing.Point(8, 8); this.lblHostname.Name = "lblHostname"; this.lblHostname.Size = new System.Drawing.Size(58, 13); this.lblHostname.TabIndex = 0; this.lblHostname.Text = "Hostname:"; // // txtHostname // this.txtHostname.Location = new System.Drawing.Point(8, 24); this.txtHostname.Name = "txtHostname"; this.txtHostname.Size = new System.Drawing.Size(304, 20); this.txtHostname.TabIndex = 1; // // btnLookup // this.btnLookup.Location = new System.Drawing.Point(240, 56); this.btnLookup.Name = "btnLookup"; this.btnLookup.Size = new System.Drawing.Size(72, 24); this.btnLookup.TabIndex = 2; this.btnLookup.Text = "Lookup"; this.btnLookup.UseVisualStyleBackColor = true; this.btnLookup.Click += new System.EventHandler(this.btnLookup_Click); // // lstResults // this.lstResults.FormattingEnabled = true; this.lstResults.Location = new System.Drawing.Point(8, 88); this.lstResults.Name = "lstResults"; this.lstResults.Size = new System.Drawing.Size(304, 160); this.lstResults.TabIndex = 3; // // lblResults // this.lblResults.AutoSize = true; this.lblResults.Location = new System.Drawing.Point(8, 72); this.lblResults.Name = "lblResults"; this.lblResults.Size = new System.Drawing.Size(45, 13); this.lblResults.TabIndex = 4; this.lblResults.Text = "Results:"; // // frmDnsLookup // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(322, 256); this.Controls.Add(this.lblResults); this.Controls.Add(this.lstResults); this.Controls.Add(this.btnLookup); this.Controls.Add(this.txtHostname); this.Controls.Add(this.lblHostname); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmDnsLookup"; this.Text = "DNS Lookup"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label lblHostname; private System.Windows.Forms.TextBox txtHostname; private System.Windows.Forms.Button btnLookup; private System.Windows.Forms.ListBox lstResults; private System.Windows.Forms.Label lblResults; } }