Show Contents / Index / Search

MainDesigner.cs (IBM)

//This sample code is intended to illustrate a concept, and it shows only the code that is relevant to that concept.

//It may not meet the security requirements for a specific environment, and it should not be used exactly as shown.

//We recommend that you add security and error-handling code to make your projects more secure and robust.

//Attachmate provides this sample code "AS IS" with no warranties.

 

namespace HostAndWeb

{

  partial class Main

  {

    //Required Designer variable.

  

    private System.ComponentModel.IContainer components = null;

    //Set the parameter "disposing" to true to dispose of any managed resources being used.

    

    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.

    private void InitializeComponent()

    {

      this.InitSessionsButton = new System.Windows.Forms.Button();

      this.SearchWebButton = new System.Windows.Forms.Button();

      this.SearchPosLabel = new System.Windows.Forms.Label();

      this.RowLabel = new System.Windows.Forms.Label();

      this.ColumnLabel = new System.Windows.Forms.Label();

      this.LengthLabel = new System.Windows.Forms.Label();

      this.RowTextBox = new System.Windows.Forms.TextBox();

      this.ColumnTextBox = new System.Windows.Forms.TextBox();

      this.LengthTextBox = new System.Windows.Forms.TextBox();

      this.SuspendLayout();

      //

      //InitSessionsButton

      //

      this.InitSessionsButton.Location = new System.Drawing.Point(56, 35);

      this.InitSessionsButton.Name = "InitSessionsButton";

      this.InitSessionsButton.Size = new System.Drawing.Size(153, 23);

      this.InitSessionsButton.TabIndex = 0;

      this.InitSessionsButton.Text = "Load Sessions";

      this.InitSessionsButton.UseVisualStyleBackColor = true;

      this.InitSessionsButton.Click += new System.EventHandler(this.InitSessionsButton_Click);

      //

      //SearchWebButton

      //

      this.SearchWebButton.Location = new System.Drawing.Point(56, 95);

      this.SearchWebButton.Name = "SearchWebButton";

      this.SearchWebButton.Size = new System.Drawing.Size(153, 23);

      this.SearchWebButton.TabIndex = 1;

      this.SearchWebButton.Text = "Search Host Text On Web";

      this.SearchWebButton.UseVisualStyleBackColor = true;

      this.SearchWebButton.Click += new System.EventHandler(this.SearchWebButton_Click);

      //

      //SearchPosLabel

      //

      this.SearchPosLabel.AutoSize = true;

      this.SearchPosLabel.Location = new System.Drawing.Point(56, 147);

      this.SearchPosLabel.Name = "SearchPosLabel";

      this.SearchPosLabel.Size = new System.Drawing.Size(112, 13);

      this.SearchPosLabel.TabIndex = 2;

      this.SearchPosLabel.Text = "Location of Host Text:";

       //

      // RowLabel

      //

      this.RowLabel.AutoSize = true;

      this.RowLabel.Location = new System.Drawing.Point(71, 181);

      this.RowLabel.Name = "RowLabel";

      this.RowLabel.Size = new System.Drawing.Size(32, 13);

      this.RowLabel.TabIndex = 3;

      this.RowLabel.Text = "Row:";

      //

      // ColumnLabel

      //

      this.ColumnLabel.AutoSize = true;

      this.ColumnLabel.Location = new System.Drawing.Point(58, 208);

      this.ColumnLabel.Name = "ColumnLabel";

      this.ColumnLabel.Size = new System.Drawing.Size(45, 13);

      this.ColumnLabel.TabIndex = 4;

      this.ColumnLabel.Text = "Column:";

      //

      //LengthLabel

      //

      this.LengthLabel.AutoSize = true;

      this.LengthLabel.Location = new System.Drawing.Point(58, 234);

      this.LengthLabel.Name = "LengthLabel";

      this.LengthLabel.Size = new System.Drawing.Size(43, 13);

      this.LengthLabel.TabIndex = 5;

      this.LengthLabel.Text = "Length:";

      //

      // RowTextBox

      //

      this.RowTextBox.Location = new System.Drawing.Point(104, 174);

      this.RowTextBox.Name = "RowTextBox";

      this.RowTextBox.Size = new System.Drawing.Size(40, 20);

      this.RowTextBox.TabIndex = 6;

      //

      // ColumnTextBox

      //

      this.ColumnTextBox.Location = new System.Drawing.Point(104, 201);

      this.ColumnTextBox.Name = "ColumnTextBox";

      this.ColumnTextBox.Size = new System.Drawing.Size(40, 20);

      this.ColumnTextBox.TabIndex = 7;

      //

      // LengthTextBox

      //

      this.LengthTextBox.Location = new System.Drawing.Point(104, 227);

      this.LengthTextBox.Name = "LengthTextBox";

      this.LengthTextBox.Size = new System.Drawing.Size(40, 20);

      this.LengthTextBox.TabIndex = 8;

      //

      // Main

      //

      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);

      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;

      this.ClientSize = new System.Drawing.Size(284, 264);

      this.Controls.Add(this.LengthTextBox);

      this.Controls.Add(this.ColumnTextBox);

      this.Controls.Add(this.RowTextBox);

      this.Controls.Add(this.LengthLabel);

      this.Controls.Add(this.ColumnLabel);

      this.Controls.Add(this.RowLabel);

      this.Controls.Add(this.SearchPosLabel);

      this.Controls.Add(this.SearchWebButton);

      this.Controls.Add(this.InitSessionsButton);

      this.Name = "Main";

      this.Text = "Host And Web Integration";

      this.ResumeLayout(false);

      this.PerformLayout();

    }

    #endregion

    private System.Windows.Forms.Button InitSessionsButton;

    private System.Windows.Forms.Button SearchWebButton;

    private System.Windows.Forms.Label SearchPosLabel;

    private System.Windows.Forms.Label RowLabel;

    private System.Windows.Forms.Label ColumnLabel;

    private System.Windows.Forms.Label LengthLabel;

    private System.Windows.Forms.TextBox RowTextBox;

    private System.Windows.Forms.TextBox ColumnTextBox;

    private System.Windows.Forms.TextBox LengthTextBox;

  }

}