142 lines
4.6 KiB
C#
142 lines
4.6 KiB
C#
namespace ResultsBrowser
|
|
{
|
|
partial class MainWnd
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.dateFromComboBox = new System.Windows.Forms.ComboBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.dateToComboBox = new System.Windows.Forms.ComboBox();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.procedureComboBox = new System.Windows.Forms.ComboBox();
|
|
this.searchButton = new System.Windows.Forms.Button();
|
|
this.resultsTextBox = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// dateFromComboBox
|
|
//
|
|
this.dateFromComboBox.FormattingEnabled = true;
|
|
this.dateFromComboBox.Location = new System.Drawing.Point(45, 49);
|
|
this.dateFromComboBox.Name = "dateFromComboBox";
|
|
this.dateFromComboBox.Size = new System.Drawing.Size(133, 21);
|
|
this.dateFromComboBox.TabIndex = 0;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(42, 32);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(53, 13);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "Date from";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(206, 32);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(42, 13);
|
|
this.label2.TabIndex = 3;
|
|
this.label2.Text = "Date to";
|
|
//
|
|
// dateToComboBox
|
|
//
|
|
this.dateToComboBox.FormattingEnabled = true;
|
|
this.dateToComboBox.Location = new System.Drawing.Point(209, 49);
|
|
this.dateToComboBox.Name = "dateToComboBox";
|
|
this.dateToComboBox.Size = new System.Drawing.Size(133, 21);
|
|
this.dateToComboBox.TabIndex = 2;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(367, 32);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(56, 13);
|
|
this.label3.TabIndex = 5;
|
|
this.label3.Text = "Procedure";
|
|
//
|
|
// procedureComboBox
|
|
//
|
|
this.procedureComboBox.FormattingEnabled = true;
|
|
this.procedureComboBox.Location = new System.Drawing.Point(370, 49);
|
|
this.procedureComboBox.Name = "procedureComboBox";
|
|
this.procedureComboBox.Size = new System.Drawing.Size(133, 21);
|
|
this.procedureComboBox.TabIndex = 4;
|
|
//
|
|
// searchButton
|
|
//
|
|
this.searchButton.Location = new System.Drawing.Point(395, 109);
|
|
this.searchButton.Name = "searchButton";
|
|
this.searchButton.Size = new System.Drawing.Size(107, 31);
|
|
this.searchButton.TabIndex = 6;
|
|
this.searchButton.Text = "Search";
|
|
this.searchButton.UseVisualStyleBackColor = true;
|
|
//
|
|
// resultsTextBox
|
|
//
|
|
this.resultsTextBox.Location = new System.Drawing.Point(46, 175);
|
|
this.resultsTextBox.Multiline = true;
|
|
this.resultsTextBox.Name = "resultsTextBox";
|
|
this.resultsTextBox.Size = new System.Drawing.Size(456, 234);
|
|
this.resultsTextBox.TabIndex = 7;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(550, 448);
|
|
this.Controls.Add(this.resultsTextBox);
|
|
this.Controls.Add(this.searchButton);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.procedureComboBox);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.dateToComboBox);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.dateFromComboBox);
|
|
this.Name = "Form1";
|
|
this.Text = "Results Browser";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ComboBox dateFromComboBox;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.ComboBox dateToComboBox;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.ComboBox procedureComboBox;
|
|
private System.Windows.Forms.Button searchButton;
|
|
private System.Windows.Forms.TextBox resultsTextBox;
|
|
}
|
|
}
|
|
|