Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2094 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_DocGen
8
{
9
	/// <summary>
10
	/// Summary description for DocReferenceForm.
11
	/// </summary>
12
	public class DocReferenceForm : System.Windows.Forms.Form
13
	{
14
      private System.Windows.Forms.Button buttonCancel;
15
      private System.Windows.Forms.Button buttonOK;
16
      public System.Windows.Forms.TextBox textBox_DocNumber;
17
      public System.Windows.Forms.TextBox textBox_DocName;
18
      private System.Windows.Forms.Label label1;
19
      private System.Windows.Forms.Label label2;
20
		/// <summary>
21
		/// Required designer variable.
22
		/// </summary>
23
		private System.ComponentModel.Container components = null;
24
 
25
		public DocReferenceForm()
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.buttonCancel = new System.Windows.Forms.Button();
60
         this.buttonOK = new System.Windows.Forms.Button();
61
         this.textBox_DocNumber = new System.Windows.Forms.TextBox();
62
         this.textBox_DocName = new System.Windows.Forms.TextBox();
63
         this.label1 = new System.Windows.Forms.Label();
64
         this.label2 = new System.Windows.Forms.Label();
65
         this.SuspendLayout();
66
         // 
67
         // buttonCancel
68
         // 
69
         this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
70
         this.buttonCancel.Location = new System.Drawing.Point(328, 200);
71
         this.buttonCancel.Name = "buttonCancel";
72
         this.buttonCancel.TabIndex = 0;
73
         this.buttonCancel.Text = "Cancel";
74
         // 
75
         // buttonOK
76
         // 
77
         this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
78
         this.buttonOK.Location = new System.Drawing.Point(232, 200);
79
         this.buttonOK.Name = "buttonOK";
80
         this.buttonOK.TabIndex = 1;
81
         this.buttonOK.Text = "OK";
82
         // 
83
         // textBox_DocNumber
84
         // 
85
         this.textBox_DocNumber.Location = new System.Drawing.Point(16, 40);
86
         this.textBox_DocNumber.Name = "textBox_DocNumber";
87
         this.textBox_DocNumber.Size = new System.Drawing.Size(392, 22);
88
         this.textBox_DocNumber.TabIndex = 2;
89
         this.textBox_DocNumber.Text = "";
90
         // 
91
         // textBox_DocName
92
         // 
93
         this.textBox_DocName.Location = new System.Drawing.Point(16, 96);
94
         this.textBox_DocName.Multiline = true;
95
         this.textBox_DocName.Name = "textBox_DocName";
96
         this.textBox_DocName.Size = new System.Drawing.Size(392, 80);
97
         this.textBox_DocName.TabIndex = 3;
98
         this.textBox_DocName.Text = "";
99
         // 
100
         // label1
101
         // 
102
         this.label1.Location = new System.Drawing.Point(16, 16);
103
         this.label1.Name = "label1";
104
         this.label1.Size = new System.Drawing.Size(168, 16);
105
         this.label1.TabIndex = 4;
106
         this.label1.Text = "Document Number";
107
         // 
108
         // label2
109
         // 
110
         this.label2.Location = new System.Drawing.Point(16, 72);
111
         this.label2.Name = "label2";
112
         this.label2.Size = new System.Drawing.Size(240, 23);
113
         this.label2.TabIndex = 5;
114
         this.label2.Text = "Document Name";
115
         // 
116
         // DocReferenceForm
117
         // 
118
         this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
119
         this.ClientSize = new System.Drawing.Size(424, 240);
120
         this.Controls.Add(this.label2);
121
         this.Controls.Add(this.label1);
122
         this.Controls.Add(this.textBox_DocName);
123
         this.Controls.Add(this.textBox_DocNumber);
124
         this.Controls.Add(this.buttonOK);
125
         this.Controls.Add(this.buttonCancel);
126
         this.Name = "DocReferenceForm";
127
         this.Text = "DocReferenceForm";
128
         this.ResumeLayout(false);
129
 
130
      }
131
		#endregion
132
 
133
	}
134
}