namespace SampleApp { partial class MainForm { /// /// 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.ConnectionLabel = new System.Windows.Forms.Label(); this.ConnectionStatusLabel = new System.Windows.Forms.Label(); this.ExitButton = new System.Windows.Forms.Button(); this.ConnectButton = new System.Windows.Forms.Button(); this.LoginStatusLabel = new System.Windows.Forms.Label(); this.LoginLabel = new System.Windows.Forms.Label(); this.resultLabel = new System.Windows.Forms.Label(); this.ResultTextBox = new System.Windows.Forms.TextBox(); this.UserNameLabel = new System.Windows.Forms.Label(); this.UserTextBox = new System.Windows.Forms.TextBox(); this.PasswordLabel = new System.Windows.Forms.Label(); this.PasswordTextBox = new System.Windows.Forms.TextBox(); this.ServerLabel = new System.Windows.Forms.Label(); this.ServerTextBox = new System.Windows.Forms.TextBox(); this.SubmitButton = new System.Windows.Forms.Button(); this.GetButton = new System.Windows.Forms.Button(); this.ClientLabel = new System.Windows.Forms.Label(); this.ClientTextBox = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // ConnectionLabel // this.ConnectionLabel.AutoSize = true; this.ConnectionLabel.ForeColor = System.Drawing.Color.Red; this.ConnectionLabel.Location = new System.Drawing.Point(139, 133); this.ConnectionLabel.Name = "ConnectionLabel"; this.ConnectionLabel.Size = new System.Drawing.Size(104, 13); this.ConnectionLabel.TabIndex = 0; this.ConnectionLabel.Text = ""; // // ConnectionStatusLabel // this.ConnectionStatusLabel.AutoSize = true; this.ConnectionStatusLabel.Location = new System.Drawing.Point(24, 133); this.ConnectionStatusLabel.Name = "ConnectionStatusLabel"; this.ConnectionStatusLabel.Size = new System.Drawing.Size(97, 13); this.ConnectionStatusLabel.TabIndex = 1; this.ConnectionStatusLabel.Text = "Connection Status:"; // // ExitButton // this.ExitButton.Location = new System.Drawing.Point(407, 442); this.ExitButton.Name = "ExitButton"; this.ExitButton.Size = new System.Drawing.Size(75, 23); this.ExitButton.TabIndex = 2; this.ExitButton.Text = "Exit"; this.ExitButton.UseVisualStyleBackColor = true; this.ExitButton.Click += new System.EventHandler(this.ExitButton_Click); // // ConnectButton // this.ConnectButton.Location = new System.Drawing.Point(326, 442); this.ConnectButton.Name = "ConnectButton"; this.ConnectButton.Size = new System.Drawing.Size(75, 23); this.ConnectButton.TabIndex = 3; this.ConnectButton.Text = "Connect"; this.ConnectButton.UseVisualStyleBackColor = true; this.ConnectButton.Click += new System.EventHandler(this.ConnectButton_Click); // // LoginStatusLabel // this.LoginStatusLabel.AutoSize = true; this.LoginStatusLabel.Location = new System.Drawing.Point(24, 155); this.LoginStatusLabel.Name = "LoginStatusLabel"; this.LoginStatusLabel.Size = new System.Drawing.Size(69, 13); this.LoginStatusLabel.TabIndex = 4; this.LoginStatusLabel.Text = "Login Status:"; // // LoginLabel // this.LoginLabel.AutoSize = true; this.LoginLabel.ForeColor = System.Drawing.Color.Red; this.LoginLabel.Location = new System.Drawing.Point(139, 155); this.LoginLabel.Name = "LoginLabel"; this.LoginLabel.Size = new System.Drawing.Size(76, 13); this.LoginLabel.TabIndex = 5; this.LoginLabel.Text = ""; // // resultLabel // this.resultLabel.AutoSize = true; this.resultLabel.Location = new System.Drawing.Point(24, 190); this.resultLabel.Name = "resultLabel"; this.resultLabel.Size = new System.Drawing.Size(37, 13); this.resultLabel.TabIndex = 6; this.resultLabel.Text = "Result"; // // ResultTextBox // this.ResultTextBox.Location = new System.Drawing.Point(27, 206); this.ResultTextBox.Multiline = true; this.ResultTextBox.Name = "ResultTextBox"; this.ResultTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.ResultTextBox.Size = new System.Drawing.Size(455, 221); this.ResultTextBox.TabIndex = 7; // // UserNameLabel // this.UserNameLabel.AutoSize = true; this.UserNameLabel.Location = new System.Drawing.Point(25, 50); this.UserNameLabel.Name = "UserNameLabel"; this.UserNameLabel.Size = new System.Drawing.Size(29, 13); this.UserNameLabel.TabIndex = 8; this.UserNameLabel.Text = "User"; // // UserTextBox // this.UserTextBox.Location = new System.Drawing.Point(130, 47); this.UserTextBox.Name = "UserTextBox"; this.UserTextBox.Size = new System.Drawing.Size(317, 20); this.UserTextBox.TabIndex = 9; this.UserTextBox.Text = "Paul_Arva"; // // PasswordLabel // this.PasswordLabel.AutoSize = true; this.PasswordLabel.Location = new System.Drawing.Point(25, 104); this.PasswordLabel.Name = "PasswordLabel"; this.PasswordLabel.Size = new System.Drawing.Size(53, 13); this.PasswordLabel.TabIndex = 10; this.PasswordLabel.Text = "Password"; // // PasswordTextBox // this.PasswordTextBox.Location = new System.Drawing.Point(130, 101); this.PasswordTextBox.Name = "PasswordTextBox"; this.PasswordTextBox.PasswordChar = '*'; this.PasswordTextBox.Size = new System.Drawing.Size(317, 20); this.PasswordTextBox.TabIndex = 11; this.PasswordTextBox.Text = "Perpass1"; // // ServerLabel // this.ServerLabel.AutoSize = true; this.ServerLabel.Location = new System.Drawing.Point(25, 24); this.ServerLabel.Name = "ServerLabel"; this.ServerLabel.Size = new System.Drawing.Size(38, 13); this.ServerLabel.TabIndex = 12; this.ServerLabel.Text = "Server"; // // ServerTextBox // this.ServerTextBox.Location = new System.Drawing.Point(130, 21); this.ServerTextBox.Name = "ServerTextBox"; this.ServerTextBox.Size = new System.Drawing.Size(317, 20); this.ServerTextBox.TabIndex = 13; this.ServerTextBox.Text = "rsh:c:\\test\\p4d.exe -r C:\\test -L log -i"; // // SubmitButton // this.SubmitButton.Enabled = false; this.SubmitButton.Location = new System.Drawing.Point(245, 442); this.SubmitButton.Name = "SubmitButton"; this.SubmitButton.Size = new System.Drawing.Size(75, 23); this.SubmitButton.TabIndex = 15; this.SubmitButton.Text = "Submit"; this.SubmitButton.UseVisualStyleBackColor = true; this.SubmitButton.Click += new System.EventHandler(this.SubmitButton_Click); // // GetButton // this.GetButton.Enabled = false; this.GetButton.Location = new System.Drawing.Point(164, 442); this.GetButton.Name = "GetButton"; this.GetButton.Size = new System.Drawing.Size(75, 23); this.GetButton.TabIndex = 16; this.GetButton.Text = "Get"; this.GetButton.UseVisualStyleBackColor = true; this.GetButton.Click += new System.EventHandler(this.GetButton_Click); // // ClientLabel // this.ClientLabel.AutoSize = true; this.ClientLabel.Location = new System.Drawing.Point(25, 77); this.ClientLabel.Name = "ClientLabel"; this.ClientLabel.Size = new System.Drawing.Size(33, 13); this.ClientLabel.TabIndex = 17; this.ClientLabel.Text = "Client"; // // ClientTextBox // this.ClientTextBox.Location = new System.Drawing.Point(130, 75); this.ClientTextBox.Name = "ClientTextBox"; this.ClientTextBox.Size = new System.Drawing.Size(317, 20); this.ClientTextBox.TabIndex = 18; this.ClientTextBox.Text = "Paul_Arva_SampleApp"; // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(510, 479); this.Controls.Add(this.ClientTextBox); this.Controls.Add(this.ClientLabel); this.Controls.Add(this.GetButton); this.Controls.Add(this.SubmitButton); this.Controls.Add(this.ServerTextBox); this.Controls.Add(this.ServerLabel); this.Controls.Add(this.PasswordTextBox); this.Controls.Add(this.PasswordLabel); this.Controls.Add(this.UserTextBox); this.Controls.Add(this.UserNameLabel); this.Controls.Add(this.ResultTextBox); this.Controls.Add(this.resultLabel); this.Controls.Add(this.LoginLabel); this.Controls.Add(this.LoginStatusLabel); this.Controls.Add(this.ConnectButton); this.Controls.Add(this.ExitButton); this.Controls.Add(this.ConnectionStatusLabel); this.Controls.Add(this.ConnectionLabel); this.Name = "MainForm"; this.Text = "Sample App"; this.Load += new System.EventHandler(this.MainForm_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label ConnectionLabel; private System.Windows.Forms.Label ConnectionStatusLabel; private System.Windows.Forms.Button ExitButton; private System.Windows.Forms.Button ConnectButton; private System.Windows.Forms.Label LoginStatusLabel; private System.Windows.Forms.Label LoginLabel; private System.Windows.Forms.Label resultLabel; private System.Windows.Forms.TextBox ResultTextBox; private System.Windows.Forms.Label UserNameLabel; private System.Windows.Forms.TextBox UserTextBox; private System.Windows.Forms.Label PasswordLabel; private System.Windows.Forms.TextBox PasswordTextBox; private System.Windows.Forms.Label ServerLabel; private System.Windows.Forms.TextBox ServerTextBox; private System.Windows.Forms.Button SubmitButton; private System.Windows.Forms.Button GetButton; private System.Windows.Forms.Label ClientLabel; private System.Windows.Forms.TextBox ClientTextBox; } }