Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace EA_DocGen
{
        /// <summary>
        /// Summary description for DocReferenceForm.
        /// </summary>
        public class DocReferenceForm : System.Windows.Forms.Form
        {
      private System.Windows.Forms.Button buttonCancel;
      private System.Windows.Forms.Button buttonOK;
      public System.Windows.Forms.TextBox textBox_DocNumber;
      public System.Windows.Forms.TextBox textBox_DocName;
      private System.Windows.Forms.Label label1;
      private System.Windows.Forms.Label label2;
                /// <summary>
                /// Required designer variable.
                /// </summary>
                private System.ComponentModel.Container components = null;

                public DocReferenceForm()
                {
                        //
                        // Required for Windows Form Designer support
                        //
                        InitializeComponent();

                        //
                        // TODO: Add any constructor code after InitializeComponent call
                        //
                }

                /// <summary>
                /// Clean up any resources being used.
                /// </summary>
                protected override void Dispose( bool disposing )
                {
                        if( disposing )
                        {
                                if(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.buttonCancel = new System.Windows.Forms.Button();
         this.buttonOK = new System.Windows.Forms.Button();
         this.textBox_DocNumber = new System.Windows.Forms.TextBox();
         this.textBox_DocName = new System.Windows.Forms.TextBox();
         this.label1 = new System.Windows.Forms.Label();
         this.label2 = new System.Windows.Forms.Label();
         this.SuspendLayout();
         // 
         // buttonCancel
         // 
         this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
         this.buttonCancel.Location = new System.Drawing.Point(328, 200);
         this.buttonCancel.Name = "buttonCancel";
         this.buttonCancel.TabIndex = 0;
         this.buttonCancel.Text = "Cancel";
         // 
         // buttonOK
         // 
         this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
         this.buttonOK.Location = new System.Drawing.Point(232, 200);
         this.buttonOK.Name = "buttonOK";
         this.buttonOK.TabIndex = 1;
         this.buttonOK.Text = "OK";
         // 
         // textBox_DocNumber
         // 
         this.textBox_DocNumber.Location = new System.Drawing.Point(16, 40);
         this.textBox_DocNumber.Name = "textBox_DocNumber";
         this.textBox_DocNumber.Size = new System.Drawing.Size(392, 22);
         this.textBox_DocNumber.TabIndex = 2;
         this.textBox_DocNumber.Text = "";
         // 
         // textBox_DocName
         // 
         this.textBox_DocName.Location = new System.Drawing.Point(16, 96);
         this.textBox_DocName.Multiline = true;
         this.textBox_DocName.Name = "textBox_DocName";
         this.textBox_DocName.Size = new System.Drawing.Size(392, 80);
         this.textBox_DocName.TabIndex = 3;
         this.textBox_DocName.Text = "";
         // 
         // label1
         // 
         this.label1.Location = new System.Drawing.Point(16, 16);
         this.label1.Name = "label1";
         this.label1.Size = new System.Drawing.Size(168, 16);
         this.label1.TabIndex = 4;
         this.label1.Text = "Document Number";
         // 
         // label2
         // 
         this.label2.Location = new System.Drawing.Point(16, 72);
         this.label2.Name = "label2";
         this.label2.Size = new System.Drawing.Size(240, 23);
         this.label2.TabIndex = 5;
         this.label2.Text = "Document Name";
         // 
         // DocReferenceForm
         // 
         this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
         this.ClientSize = new System.Drawing.Size(424, 240);
         this.Controls.Add(this.label2);
         this.Controls.Add(this.label1);
         this.Controls.Add(this.textBox_DocName);
         this.Controls.Add(this.textBox_DocNumber);
         this.Controls.Add(this.buttonOK);
         this.Controls.Add(this.buttonCancel);
         this.Name = "DocReferenceForm";
         this.Text = "DocReferenceForm";
         this.ResumeLayout(false);

      }
                #endregion

        }
}