namespace IPcalc.NET
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.textBox_Prefix = new System.Windows.Forms.TextBox();
this.label_Prefix = new System.Windows.Forms.Label();
this.label_Netmask = new System.Windows.Forms.Label();
this.textBox_Netmask = new System.Windows.Forms.TextBox();
this.button_Calculate = new System.Windows.Forms.Button();
this.groupBox_SourceData = new System.Windows.Forms.GroupBox();
this.groupBox_Results = new System.Windows.Forms.GroupBox();
this.textBox_TotalHosts = new System.Windows.Forms.TextBox();
this.label_TotalHosts = new System.Windows.Forms.Label();
this.textBox_Broadcast = new System.Windows.Forms.TextBox();
this.textBox_LastHost = new System.Windows.Forms.TextBox();
this.label_Broadcast = new System.Windows.Forms.Label();
this.label_LastHost = new System.Windows.Forms.Label();
this.textBox_FirstHost = new System.Windows.Forms.TextBox();
this.textBox_Network = new System.Windows.Forms.TextBox();
this.label_FirstHost = new System.Windows.Forms.Label();
this.label_Network = new System.Windows.Forms.Label();
this.groupBox_SourceData.SuspendLayout();
this.groupBox_Results.SuspendLayout();
this.SuspendLayout();
//
// textBox_Prefix
//
this.textBox_Prefix.Location = new System.Drawing.Point(80, 20);
this.textBox_Prefix.Name = "textBox_Prefix";
this.textBox_Prefix.Size = new System.Drawing.Size(115, 20);
this.textBox_Prefix.TabIndex = 0;
this.textBox_Prefix.Leave += new System.EventHandler(this.textBox_Prefix_Leave);
this.textBox_Prefix.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox_Prefix_KeyDown);
//
// label_Prefix
//
this.label_Prefix.AutoSize = true;
this.label_Prefix.Location = new System.Drawing.Point(10, 24);
this.label_Prefix.Name = "label_Prefix";
this.label_Prefix.Size = new System.Drawing.Size(57, 13);
this.label_Prefix.TabIndex = 1;
this.label_Prefix.Text = "IP / Prefix:";
//
// label_Netmask
//
this.label_Netmask.AutoSize = true;
this.label_Netmask.Location = new System.Drawing.Point(10, 51);
this.label_Netmask.Name = "label_Netmask";
this.label_Netmask.Size = new System.Drawing.Size(52, 13);
this.label_Netmask.TabIndex = 2;
this.label_Netmask.Text = "Netmask:";
//
// textBox_Netmask
//
this.textBox_Netmask.Location = new System.Drawing.Point(80, 47);
this.textBox_Netmask.Name = "textBox_Netmask";
this.textBox_Netmask.Size = new System.Drawing.Size(115, 20);
this.textBox_Netmask.TabIndex = 3;
this.textBox_Netmask.Leave += new System.EventHandler(this.textBox_Netmask_Leave);
this.textBox_Netmask.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox_Netmask_KeyDown);
//
// button_Calculate
//
this.button_Calculate.Location = new System.Drawing.Point(11, 102);
this.button_Calculate.Name = "button_Calculate";
this.button_Calculate.Size = new System.Drawing.Size(211, 23);
this.button_Calculate.TabIndex = 4;
this.button_Calculate.Text = "Calculate";
this.button_Calculate.UseVisualStyleBackColor = true;
this.button_Calculate.Click += new System.EventHandler(this.button_Calculate_Click);
//
// groupBox_SourceData
//
this.groupBox_SourceData.Controls.Add(this.label_Prefix);
this.groupBox_SourceData.Controls.Add(this.textBox_Prefix);
this.groupBox_SourceData.Controls.Add(this.textBox_Netmask);
this.groupBox_SourceData.Controls.Add(this.label_Netmask);
this.groupBox_SourceData.Location = new System.Drawing.Point(11, 10);
this.groupBox_SourceData.Name = "groupBox_SourceData";
this.groupBox_SourceData.Size = new System.Drawing.Size(211, 81);
this.groupBox_SourceData.TabIndex = 5;
this.groupBox_SourceData.TabStop = false;
this.groupBox_SourceData.Text = "Subnet specification";
//
// groupBox_Results
//
this.groupBox_Results.Controls.Add(this.textBox_TotalHosts);
this.groupBox_Results.Controls.Add(this.label_TotalHosts);
this.groupBox_Results.Controls.Add(this.textBox_Broadcast);
this.groupBox_Results.Controls.Add(this.textBox_LastHost);
this.groupBox_Results.Controls.Add(this.label_Broadcast);
this.groupBox_Results.Controls.Add(this.label_LastHost);
this.groupBox_Results.Controls.Add(this.textBox_FirstHost);
this.groupBox_Results.Controls.Add(this.textBox_Network);
this.groupBox_Results.Controls.Add(this.label_FirstHost);
this.groupBox_Results.Controls.Add(this.label_Network);
this.groupBox_Results.Location = new System.Drawing.Point(11, 135);
this.groupBox_Results.Name = "groupBox_Results";
this.groupBox_Results.Size = new System.Drawing.Size(211, 163);
this.groupBox_Results.TabIndex = 6;
this.groupBox_Results.TabStop = false;
this.groupBox_Results.Text = "Subnet IP addresses";
//
// textBox_TotalHosts
//
this.textBox_TotalHosts.Location = new System.Drawing.Point(80, 126);
this.textBox_TotalHosts.Name = "textBox_TotalHosts";
this.textBox_TotalHosts.ReadOnly = true;
this.textBox_TotalHosts.Size = new System.Drawing.Size(115, 20);
this.textBox_TotalHosts.TabIndex = 14;
//
// label_TotalHosts
//
this.label_TotalHosts.AutoSize = true;
this.label_TotalHosts.Location = new System.Drawing.Point(10, 130);
this.label_TotalHosts.Name = "label_TotalHosts";
this.label_TotalHosts.Size = new System.Drawing.Size(62, 13);
this.label_TotalHosts.TabIndex = 14;
this.label_TotalHosts.Text = "Total hosts:";
//
// textBox_Broadcast
//
this.textBox_Broadcast.Location = new System.Drawing.Point(80, 100);
this.textBox_Broadcast.Name = "textBox_Broadcast";
this.textBox_Broadcast.ReadOnly = true;
this.textBox_Broadcast.Size = new System.Drawing.Size(115, 20);
this.textBox_Broadcast.TabIndex = 13;
//
// textBox_LastHost
//
this.textBox_LastHost.Location = new System.Drawing.Point(80, 74);
this.textBox_LastHost.Name = "textBox_LastHost";
this.textBox_LastHost.ReadOnly = true;
this.textBox_LastHost.Size = new System.Drawing.Size(115, 20);
this.textBox_LastHost.TabIndex = 11;
//
// label_Broadcast
//
this.label_Broadcast.AutoSize = true;
this.label_Broadcast.Location = new System.Drawing.Point(10, 104);
this.label_Broadcast.Name = "label_Broadcast";
this.label_Broadcast.Size = new System.Drawing.Size(58, 13);
this.label_Broadcast.TabIndex = 12;
this.label_Broadcast.Text = "Broadcast:";
//
// label_LastHost
//
this.label_LastHost.AutoSize = true;
this.label_LastHost.Location = new System.Drawing.Point(10, 78);
this.label_LastHost.Name = "label_LastHost";
this.label_LastHost.Size = new System.Drawing.Size(53, 13);
this.label_LastHost.TabIndex = 10;
this.label_LastHost.Text = "Last host:";
//
// textBox_FirstHost
//
this.textBox_FirstHost.Location = new System.Drawing.Point(80, 48);
this.textBox_FirstHost.Name = "textBox_FirstHost";
this.textBox_FirstHost.ReadOnly = true;
this.textBox_FirstHost.Size = new System.Drawing.Size(115, 20);
this.textBox_FirstHost.TabIndex = 9;
//
// textBox_Network
//
this.textBox_Network.Location = new System.Drawing.Point(80, 22);
this.textBox_Network.Name = "textBox_Network";
this.textBox_Network.ReadOnly = true;
this.textBox_Network.Size = new System.Drawing.Size(115, 20);
this.textBox_Network.TabIndex = 7;
//
// label_FirstHost
//
this.label_FirstHost.AutoSize = true;
this.label_FirstHost.Location = new System.Drawing.Point(10, 52);
this.label_FirstHost.Name = "label_FirstHost";
this.label_FirstHost.Size = new System.Drawing.Size(52, 13);
this.label_FirstHost.TabIndex = 8;
this.label_FirstHost.Text = "First host:";
//
// label_Network
//
this.label_Network.AutoSize = true;
this.label_Network.Location = new System.Drawing.Point(10, 26);
this.label_Network.Name = "label_Network";
this.label_Network.Size = new System.Drawing.Size(50, 13);
this.label_Network.TabIndex = 7;
this.label_Network.Text = "Network:";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(233, 311);
this.Controls.Add(this.groupBox_Results);
this.Controls.Add(this.groupBox_SourceData);
this.Controls.Add(this.button_Calculate);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "MainForm";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.Text = "IPcalc.NET";
this.groupBox_SourceData.ResumeLayout(false);
this.groupBox_SourceData.PerformLayout();
this.groupBox_Results.ResumeLayout(false);
this.groupBox_Results.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox textBox_Prefix;
private System.Windows.Forms.Label label_Prefix;
private System.Windows.Forms.Label label_Netmask;
private System.Windows.Forms.TextBox textBox_Netmask;
private System.Windows.Forms.Button button_Calculate;
private System.Windows.Forms.GroupBox groupBox_SourceData;
private System.Windows.Forms.GroupBox groupBox_Results;
private System.Windows.Forms.Label label_Network;
private System.Windows.Forms.TextBox textBox_Network;
private System.Windows.Forms.TextBox textBox_Broadcast;
private System.Windows.Forms.TextBox textBox_LastHost;
private System.Windows.Forms.Label label_Broadcast;
private System.Windows.Forms.Label label_LastHost;
private System.Windows.Forms.TextBox textBox_FirstHost;
private System.Windows.Forms.Label label_FirstHost;
private System.Windows.Forms.TextBox textBox_TotalHosts;
private System.Windows.Forms.Label label_TotalHosts;
}
}