Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2155 ghuddy 1
using System;
2
using System.Drawing;
3
using System.Collections;
4
using System.ComponentModel;
5
using System.Windows.Forms;
6
 
7
namespace EA_ReqPro
8
{
9
	/// <summary>
10
	/// Summary description for QueryForm.
11
	/// </summary>
12
	public class QueryForm : System.Windows.Forms.Form
13
	{
14
      private System.Windows.Forms.Button button_cancel;
15
      private System.Windows.Forms.Button button_ok;
16
      private System.Windows.Forms.Label label1;
17
      private System.Windows.Forms.Label label2;
18
      public System.Windows.Forms.TextBox textBox_query_name;
19
      public System.Windows.Forms.TextBox textBox_search_term;
20
		/// <summary>
21
		/// Required designer variable.
22
		/// </summary>
23
		private System.ComponentModel.Container components = null;
24
 
25
		public QueryForm()
26
		{
27
			//
28
			// Required for Windows Form Designer support
29
			//
30
			InitializeComponent();
31
 
32
			//
33
			// TODO: Add any constructor code after InitializeComponent call
34
			//
35
		}
36
 
37
		/// <summary>
38
		/// Clean up any resources being used.
39
		/// </summary>
40
		protected override void Dispose( bool disposing )
41
		{
42
			if( disposing )
43
			{
44
				if(components != null)
45
				{
46
					components.Dispose();
47
				}
48
			}
49
			base.Dispose( disposing );
50
		}
51
 
52
		#region Windows Form Designer generated code
53
		/// <summary>
54
		/// Required method for Designer support - do not modify
55
		/// the contents of this method with the code editor.
56
		/// </summary>
57
		private void InitializeComponent()
58
		{
59
         this.button_cancel = new System.Windows.Forms.Button();
60
         this.button_ok = new System.Windows.Forms.Button();
61
         this.label1 = new System.Windows.Forms.Label();
62
         this.label2 = new System.Windows.Forms.Label();
63
         this.textBox_query_name = new System.Windows.Forms.TextBox();
64
         this.textBox_search_term = new System.Windows.Forms.TextBox();
65
         this.SuspendLayout();
66
         // 
67
         // button_cancel
68
         // 
69
         this.button_cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
70
         this.button_cancel.Location = new System.Drawing.Point(352, 112);
71
         this.button_cancel.Name = "button_cancel";
72
         this.button_cancel.Size = new System.Drawing.Size(80, 23);
73
         this.button_cancel.TabIndex = 0;
74
         this.button_cancel.Text = "Cancel";
75
         // 
76
         // button_ok
77
         // 
78
         this.button_ok.DialogResult = System.Windows.Forms.DialogResult.OK;
79
         this.button_ok.Location = new System.Drawing.Point(256, 112);
80
         this.button_ok.Name = "button_ok";
81
         this.button_ok.Size = new System.Drawing.Size(80, 24);
82
         this.button_ok.TabIndex = 1;
83
         this.button_ok.Text = "OK";
84
         // 
85
         // label1
86
         // 
87
         this.label1.Location = new System.Drawing.Point(16, 32);
88
         this.label1.Name = "label1";
89
         this.label1.TabIndex = 2;
90
         this.label1.Text = "Query Name";
91
         // 
92
         // label2
93
         // 
94
         this.label2.Location = new System.Drawing.Point(16, 64);
95
         this.label2.Name = "label2";
96
         this.label2.TabIndex = 3;
97
         this.label2.Text = "Search Term";
98
         // 
99
         // textBox_query_name
100
         // 
101
         this.textBox_query_name.Location = new System.Drawing.Point(128, 32);
102
         this.textBox_query_name.Name = "textBox_query_name";
103
         this.textBox_query_name.Size = new System.Drawing.Size(304, 22);
104
         this.textBox_query_name.TabIndex = 4;
105
         this.textBox_query_name.Text = "";
106
         // 
107
         // textBox_search_term
108
         // 
109
         this.textBox_search_term.Location = new System.Drawing.Point(128, 64);
110
         this.textBox_search_term.Name = "textBox_search_term";
111
         this.textBox_search_term.Size = new System.Drawing.Size(304, 22);
112
         this.textBox_search_term.TabIndex = 5;
113
         this.textBox_search_term.Text = "";
114
         // 
115
         // QueryForm
116
         // 
117
         this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
118
         this.ClientSize = new System.Drawing.Size(448, 152);
119
         this.Controls.Add(this.textBox_search_term);
120
         this.Controls.Add(this.textBox_query_name);
121
         this.Controls.Add(this.label2);
122
         this.Controls.Add(this.label1);
123
         this.Controls.Add(this.button_ok);
124
         this.Controls.Add(this.button_cancel);
125
         this.Name = "QueryForm";
126
         this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
127
         this.Text = "Run Query";
128
         this.ResumeLayout(false);
129
 
130
      }
131
		#endregion
132
	}
133
}