namespace chatServ { partial class formServer { /// /// 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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(formServer)); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel(); this.port_s = new System.Windows.Forms.ToolStripTextBox(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.buttonStart = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); this.buttonStop = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); this.buttonExit = new System.Windows.Forms.ToolStripButton(); this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.labelMsg = new System.Windows.Forms.ToolStripStatusLabel(); this.labelUsers = new System.Windows.Forms.ToolStripStatusLabel(); this.labelConnUsers = new System.Windows.Forms.ToolStripStatusLabel(); this.labelTime = new System.Windows.Forms.ToolStripStatusLabel(); this.labelUptime = new System.Windows.Forms.ToolStripStatusLabel(); this.labelAD = new System.Windows.Forms.ToolStripStatusLabel(); this.serverMsg = new System.Windows.Forms.RichTextBox(); this.tabMain = new System.Windows.Forms.TabControl(); this.Chat = new System.Windows.Forms.TabPage(); this.Users = new System.Windows.Forms.TabPage(); this.usersGrid = new System.Windows.Forms.DataGridView(); this.colUser = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.colIP = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.colCli = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.toolStrip1.SuspendLayout(); this.statusStrip1.SuspendLayout(); this.tabMain.SuspendLayout(); this.Chat.SuspendLayout(); this.Users.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.usersGrid)).BeginInit(); this.SuspendLayout(); // // toolStrip1 // this.toolStrip1.BackColor = System.Drawing.SystemColors.Control; this.toolStrip1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("toolStrip1.BackgroundImage"))); this.toolStrip1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.toolStrip1.CanOverflow = false; this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripLabel1, this.port_s, this.toolStripSeparator1, this.buttonStart, this.toolStripSeparator2, this.buttonStop, this.toolStripSeparator3, this.buttonExit, this.toolStripSeparator4}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(467, 36); this.toolStrip1.Stretch = true; this.toolStrip1.TabIndex = 0; this.toolStrip1.Text = "toolStrip1"; // // toolStripLabel1 // this.toolStripLabel1.Name = "toolStripLabel1"; this.toolStripLabel1.Size = new System.Drawing.Size(77, 33); this.toolStripLabel1.Text = "Port to listen to"; // // port_s // this.port_s.AutoSize = false; this.port_s.AutoToolTip = true; this.port_s.BackColor = System.Drawing.Color.White; this.port_s.ForeColor = System.Drawing.Color.Navy; this.port_s.Margin = new System.Windows.Forms.Padding(1, 0, 2, 0); this.port_s.MaxLength = 5; this.port_s.Name = "port_s"; this.port_s.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never; this.port_s.Size = new System.Drawing.Size(42, 36); this.port_s.Text = "7500"; this.port_s.ToolTipText = "The server will listen to this port when user clicks Start"; // // toolStripSeparator1 // this.toolStripSeparator1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(6, 36); // // buttonStart // this.buttonStart.Image = ((System.Drawing.Image)(resources.GetObject("buttonStart.Image"))); this.buttonStart.ImageTransparentColor = System.Drawing.Color.Magenta; this.buttonStart.Margin = new System.Windows.Forms.Padding(3, 0, 2, 0); this.buttonStart.Name = "buttonStart"; this.buttonStart.Size = new System.Drawing.Size(67, 36); this.buttonStart.Text = "&Connect"; this.buttonStart.Click += new System.EventHandler(this.buttonStart_Click); // // toolStripSeparator2 // this.toolStripSeparator2.Name = "toolStripSeparator2"; this.toolStripSeparator2.Size = new System.Drawing.Size(6, 36); // // buttonStop // this.buttonStop.Image = ((System.Drawing.Image)(resources.GetObject("buttonStop.Image"))); this.buttonStop.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.buttonStop.ImageTransparentColor = System.Drawing.Color.Magenta; this.buttonStop.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.buttonStop.Name = "buttonStop"; this.buttonStop.Size = new System.Drawing.Size(50, 36); this.buttonStop.Text = "&Quit"; this.buttonStop.Click += new System.EventHandler(this.buttonStop_Click); // // toolStripSeparator3 // this.toolStripSeparator3.Name = "toolStripSeparator3"; this.toolStripSeparator3.Size = new System.Drawing.Size(6, 36); // // buttonExit // this.buttonExit.Image = ((System.Drawing.Image)(resources.GetObject("buttonExit.Image"))); this.buttonExit.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.buttonExit.ImageTransparentColor = System.Drawing.Color.Magenta; this.buttonExit.Margin = new System.Windows.Forms.Padding(2, 0, 1, 0); this.buttonExit.Name = "buttonExit"; this.buttonExit.Size = new System.Drawing.Size(60, 36); this.buttonExit.Text = "E&xit"; this.buttonExit.Click += new System.EventHandler(this.buttonExit_Click); // // toolStripSeparator4 // this.toolStripSeparator4.Name = "toolStripSeparator4"; this.toolStripSeparator4.Size = new System.Drawing.Size(6, 36); // // statusStrip1 // this.statusStrip1.BackColor = System.Drawing.SystemColors.Control; this.statusStrip1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("statusStrip1.BackgroundImage"))); this.statusStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible; this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.labelMsg, this.labelUsers, this.labelConnUsers, this.labelTime, this.labelUptime, this.labelAD}); this.statusStrip1.Location = new System.Drawing.Point(0, 347); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode; this.statusStrip1.Size = new System.Drawing.Size(467, 22); this.statusStrip1.SizingGrip = false; this.statusStrip1.TabIndex = 1; this.statusStrip1.Text = "statusStrip1"; // // labelMsg // this.labelMsg.BackColor = System.Drawing.SystemColors.Control; this.labelMsg.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.labelMsg.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom))); this.labelMsg.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter; this.labelMsg.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.labelMsg.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(150))))); this.labelMsg.Name = "labelMsg"; this.labelMsg.Size = new System.Drawing.Size(78, 17); this.labelMsg.Text = "Hello Banana!"; this.labelMsg.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.labelMsg.ToolTipText = "Server msg"; // // labelUsers // this.labelUsers.BackColor = System.Drawing.SystemColors.Control; this.labelUsers.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom))); this.labelUsers.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter; this.labelUsers.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.labelUsers.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); this.labelUsers.Name = "labelUsers"; this.labelUsers.Size = new System.Drawing.Size(41, 17); this.labelUsers.Text = "Users:"; this.labelUsers.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.labelUsers.ToolTipText = "Server msg"; // // labelConnUsers // this.labelConnUsers.BackColor = System.Drawing.SystemColors.Control; this.labelConnUsers.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom))); this.labelConnUsers.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter; this.labelConnUsers.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.labelConnUsers.ForeColor = System.Drawing.Color.Green; this.labelConnUsers.Name = "labelConnUsers"; this.labelConnUsers.Size = new System.Drawing.Size(20, 17); this.labelConnUsers.Text = " 0"; this.labelConnUsers.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.labelConnUsers.ToolTipText = "Connected users"; // // labelTime // this.labelTime.BackColor = System.Drawing.SystemColors.Control; this.labelTime.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom))); this.labelTime.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter; this.labelTime.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); this.labelTime.Name = "labelTime"; this.labelTime.Size = new System.Drawing.Size(47, 17); this.labelTime.Text = "Uptime:"; // // labelUptime // this.labelUptime.BackColor = System.Drawing.SystemColors.Control; this.labelUptime.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right) | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom))); this.labelUptime.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter; this.labelUptime.ForeColor = System.Drawing.Color.Green; this.labelUptime.Name = "labelUptime"; this.labelUptime.Size = new System.Drawing.Size(163, 17); this.labelUptime.Spring = true; this.labelUptime.Text = "0"; this.labelUptime.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // labelAD // this.labelAD.BackColor = System.Drawing.SystemColors.Control; this.labelAD.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.labelAD.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.labelAD.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); this.labelAD.IsLink = true; this.labelAD.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline; this.labelAD.Name = "labelAD"; this.labelAD.Size = new System.Drawing.Size(103, 17); this.labelAD.Text = "http://brionews.com"; this.labelAD.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.labelAD.ToolTipText = "The Best Web Site on Earth !!! PHP Powered, Pure CSS, NO JAVATHINGS"; // // serverMsg // this.serverMsg.AccessibleRole = System.Windows.Forms.AccessibleRole.Document; this.serverMsg.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.serverMsg.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32))))); this.serverMsg.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); this.serverMsg.HideSelection = false; this.serverMsg.Location = new System.Drawing.Point(3, 3); this.serverMsg.Name = "serverMsg"; this.serverMsg.Size = new System.Drawing.Size(453, 272); this.serverMsg.TabIndex = 2; this.serverMsg.Text = ""; // // tabMain // this.tabMain.Controls.Add(this.Chat); this.tabMain.Controls.Add(this.Users); this.tabMain.Location = new System.Drawing.Point(0, 41); this.tabMain.Name = "tabMain"; this.tabMain.SelectedIndex = 0; this.tabMain.Size = new System.Drawing.Size(467, 304); this.tabMain.TabIndex = 3; // // Chat // this.Chat.Controls.Add(this.serverMsg); this.Chat.Location = new System.Drawing.Point(4, 22); this.Chat.Name = "Chat"; this.Chat.Padding = new System.Windows.Forms.Padding(3); this.Chat.Size = new System.Drawing.Size(459, 278); this.Chat.TabIndex = 0; this.Chat.Text = "Chat"; this.Chat.UseVisualStyleBackColor = true; // // Users // this.Users.Controls.Add(this.usersGrid); this.Users.Location = new System.Drawing.Point(4, 22); this.Users.Name = "Users"; this.Users.Padding = new System.Windows.Forms.Padding(3); this.Users.Size = new System.Drawing.Size(459, 278); this.Users.TabIndex = 1; this.Users.Text = "Users"; this.Users.UseVisualStyleBackColor = true; // // usersGrid // this.usersGrid.AllowUserToAddRows = false; this.usersGrid.AllowUserToDeleteRows = false; this.usersGrid.AllowUserToOrderColumns = true; this.usersGrid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; this.usersGrid.BackgroundColor = System.Drawing.Color.Black; this.usersGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.usersGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.colUser, this.colIP, this.colCli}); this.usersGrid.Dock = System.Windows.Forms.DockStyle.Fill; this.usersGrid.Location = new System.Drawing.Point(3, 3); this.usersGrid.Name = "usersGrid"; this.usersGrid.ReadOnly = true; this.usersGrid.Size = new System.Drawing.Size(453, 272); this.usersGrid.TabIndex = 0; // // colUser // this.colUser.HeaderText = "User"; this.colUser.Name = "colUser"; this.colUser.ReadOnly = true; // // colIP // this.colIP.HeaderText = "IP"; this.colIP.Name = "colIP"; this.colIP.ReadOnly = true; // // colCli // this.colCli.HeaderText = "Client Signature"; this.colCli.Name = "colCli"; this.colCli.ReadOnly = true; // // formServer // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.ClientSize = new System.Drawing.Size(467, 369); this.Controls.Add(this.tabMain); this.Controls.Add(this.statusStrip1); this.Controls.Add(this.toolStrip1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.Name = "formServer"; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "ChatServer"; this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); this.statusStrip1.ResumeLayout(false); this.statusStrip1.PerformLayout(); this.tabMain.ResumeLayout(false); this.Chat.ResumeLayout(false); this.Users.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.usersGrid)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ToolStrip toolStrip1; private System.Windows.Forms.StatusStrip statusStrip1; private System.Windows.Forms.ToolStripTextBox port_s; private System.Windows.Forms.ToolStripLabel toolStripLabel1; private System.Windows.Forms.RichTextBox serverMsg; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripButton buttonStart; private System.Windows.Forms.ToolStripSeparator toolStripSeparator2; private System.Windows.Forms.ToolStripButton buttonStop; private System.Windows.Forms.ToolStripButton buttonExit; private System.Windows.Forms.TabControl tabMain; private System.Windows.Forms.TabPage Chat; private System.Windows.Forms.TabPage Users; private System.Windows.Forms.DataGridView usersGrid; private System.Windows.Forms.DataGridViewTextBoxColumn colUser; private System.Windows.Forms.DataGridViewTextBoxColumn colIP; private System.Windows.Forms.DataGridViewTextBoxColumn colCli; private System.Windows.Forms.ToolStripStatusLabel labelMsg; private System.Windows.Forms.ToolStripStatusLabel labelUsers; private System.Windows.Forms.ToolStripStatusLabel labelConnUsers; private System.Windows.Forms.ToolStripStatusLabel labelTime; private System.Windows.Forms.ToolStripSeparator toolStripSeparator3; private System.Windows.Forms.ToolStripSeparator toolStripSeparator4; private System.Windows.Forms.ToolStripStatusLabel labelUptime; private System.Windows.Forms.ToolStripStatusLabel labelAD; } }