MainDesigner.cs (IBM)
namespace HostAndWeb
{
partial class Main
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
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();
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);
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);
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:";
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:";
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:";
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:";
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;
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;
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;
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;
}
}
|