namespace SMBServer { partial class ServerUI { /// /// 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.comboIPAddress = new System.Windows.Forms.ComboBox(); this.rbtNetBiosOverTCP = new System.Windows.Forms.RadioButton(); this.rbtDirectTCPTransport = new System.Windows.Forms.RadioButton(); this.btnStart = new System.Windows.Forms.Button(); this.btnStop = new System.Windows.Forms.Button(); this.lblTransport = new System.Windows.Forms.Label(); this.lblAddress = new System.Windows.Forms.Label(); this.chkIntegratedWindowsAuthentication = new System.Windows.Forms.CheckBox(); this.chkSMB1 = new System.Windows.Forms.CheckBox(); this.chkSMB2 = new System.Windows.Forms.CheckBox(); this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // comboIPAddress // this.comboIPAddress.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.comboIPAddress.FormattingEnabled = true; this.comboIPAddress.Location = new System.Drawing.Point(89, 6); this.comboIPAddress.Name = "comboIPAddress"; this.comboIPAddress.Size = new System.Drawing.Size(121, 20); this.comboIPAddress.TabIndex = 0; // // rbtNetBiosOverTCP // this.rbtNetBiosOverTCP.AutoSize = true; this.rbtNetBiosOverTCP.Checked = true; this.rbtNetBiosOverTCP.Location = new System.Drawing.Point(89, 38); this.rbtNetBiosOverTCP.Name = "rbtNetBiosOverTCP"; this.rbtNetBiosOverTCP.Size = new System.Drawing.Size(185, 16); this.rbtNetBiosOverTCP.TabIndex = 2; this.rbtNetBiosOverTCP.TabStop = true; this.rbtNetBiosOverTCP.Text = "NetBIOS over TCP (Port 139)"; this.rbtNetBiosOverTCP.UseVisualStyleBackColor = true; // // rbtDirectTCPTransport // this.rbtDirectTCPTransport.AutoSize = true; this.rbtDirectTCPTransport.Location = new System.Drawing.Point(89, 61); this.rbtDirectTCPTransport.Name = "rbtDirectTCPTransport"; this.rbtDirectTCPTransport.Size = new System.Drawing.Size(209, 16); this.rbtDirectTCPTransport.TabIndex = 3; this.rbtDirectTCPTransport.Text = "Direct TCP Transport (Port 445)"; this.rbtDirectTCPTransport.UseVisualStyleBackColor = true; // // btnStart // this.btnStart.Location = new System.Drawing.Point(339, 9); this.btnStart.Name = "btnStart"; this.btnStart.Size = new System.Drawing.Size(91, 23); this.btnStart.TabIndex = 4; this.btnStart.Text = "Start"; this.btnStart.UseVisualStyleBackColor = true; this.btnStart.Click += new System.EventHandler(this.btnStart_Click); // // btnStop // this.btnStop.Enabled = false; this.btnStop.Location = new System.Drawing.Point(339, 38); this.btnStop.Name = "btnStop"; this.btnStop.Size = new System.Drawing.Size(91, 23); this.btnStop.TabIndex = 5; this.btnStop.Text = "Stop"; this.btnStop.UseVisualStyleBackColor = true; this.btnStop.Click += new System.EventHandler(this.btnStop_Click); // // lblTransport // this.lblTransport.AutoSize = true; this.lblTransport.Location = new System.Drawing.Point(12, 40); this.lblTransport.Name = "lblTransport"; this.lblTransport.Size = new System.Drawing.Size(65, 12); this.lblTransport.TabIndex = 14; this.lblTransport.Text = "Transport:"; // // lblAddress // this.lblAddress.AutoSize = true; this.lblAddress.Location = new System.Drawing.Point(12, 9); this.lblAddress.Name = "lblAddress"; this.lblAddress.Size = new System.Drawing.Size(71, 12); this.lblAddress.TabIndex = 13; this.lblAddress.Text = "IP Address:"; // // chkIntegratedWindowsAuthentication // this.chkIntegratedWindowsAuthentication.AutoSize = true; this.chkIntegratedWindowsAuthentication.Checked = true; this.chkIntegratedWindowsAuthentication.CheckState = System.Windows.Forms.CheckState.Checked; this.chkIntegratedWindowsAuthentication.Location = new System.Drawing.Point(89, 114); this.chkIntegratedWindowsAuthentication.Name = "chkIntegratedWindowsAuthentication"; this.chkIntegratedWindowsAuthentication.Size = new System.Drawing.Size(222, 16); this.chkIntegratedWindowsAuthentication.TabIndex = 15; this.chkIntegratedWindowsAuthentication.Text = "Integrated Windows Authentication"; this.chkIntegratedWindowsAuthentication.UseVisualStyleBackColor = true; // // chkSMB1 // this.chkSMB1.AutoSize = true; this.chkSMB1.Checked = true; this.chkSMB1.CheckState = System.Windows.Forms.CheckState.Checked; this.chkSMB1.Location = new System.Drawing.Point(89, 86); this.chkSMB1.Name = "chkSMB1"; this.chkSMB1.Size = new System.Drawing.Size(96, 16); this.chkSMB1.TabIndex = 16; this.chkSMB1.Text = "SMB 1.0/CIFS"; this.chkSMB1.UseVisualStyleBackColor = true; this.chkSMB1.CheckedChanged += new System.EventHandler(this.chkSMB1_CheckedChanged); // // chkSMB2 // this.chkSMB2.AutoSize = true; this.chkSMB2.Checked = true; this.chkSMB2.CheckState = System.Windows.Forms.CheckState.Checked; this.chkSMB2.Location = new System.Drawing.Point(214, 86); this.chkSMB2.Name = "chkSMB2"; this.chkSMB2.Size = new System.Drawing.Size(102, 16); this.chkSMB2.TabIndex = 17; this.chkSMB2.Text = "SMB 2.0 / 2.1"; this.chkSMB2.UseVisualStyleBackColor = true; this.chkSMB2.CheckedChanged += new System.EventHandler(this.chkSMB2_CheckedChanged); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 87); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(59, 12); this.label1.TabIndex = 18; this.label1.Text = "Protocol:"; // // ServerUI // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.ClientSize = new System.Drawing.Size(434, 131); this.Controls.Add(this.label1); this.Controls.Add(this.chkSMB1); this.Controls.Add(this.chkSMB2); this.Controls.Add(this.chkIntegratedWindowsAuthentication); this.Controls.Add(this.lblTransport); this.Controls.Add(this.lblAddress); this.Controls.Add(this.btnStop); this.Controls.Add(this.btnStart); this.Controls.Add(this.rbtDirectTCPTransport); this.Controls.Add(this.rbtNetBiosOverTCP); this.Controls.Add(this.comboIPAddress); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.MaximumSize = new System.Drawing.Size(450, 170); this.MinimumSize = new System.Drawing.Size(450, 170); this.Name = "ServerUI"; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; this.Text = "SMB Server"; this.Load += new System.EventHandler(this.ServerUI_Load); this.Shown += new System.EventHandler(this.ServerUI_Shown); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ComboBox comboIPAddress; private System.Windows.Forms.RadioButton rbtNetBiosOverTCP; private System.Windows.Forms.RadioButton rbtDirectTCPTransport; private System.Windows.Forms.Button btnStart; private System.Windows.Forms.Button btnStop; private System.Windows.Forms.Label lblTransport; private System.Windows.Forms.Label lblAddress; private System.Windows.Forms.CheckBox chkIntegratedWindowsAuthentication; private System.Windows.Forms.CheckBox chkSMB1; private System.Windows.Forms.CheckBox chkSMB2; private System.Windows.Forms.Label label1; } }