public bool IsFormValid(
            System.Windows.Forms.Control ctl,
            System.Windows.Forms.ErrorProvider errProv)
        {
            bool bValid = true;

            foreach (System.Windows.Forms.Control childCtl in ctl.Controls)
            {
                //childCtrl.Focus()
                if (errProv.GetError(childCtl) != "")
                {
                    bValid = false;
                    break;
                }
                if (childCtl.Controls.Count > 0)
                {
                    bValid = IsFormValid(childCtl, errProv);
                    if (!bValid)
                    {
                        break;
                    }
                }
            }
            return(bValid);
        }
Exemple #2
0
        public static Boolean validNullTxt(System.Windows.Forms.Control txtCtl,
                                           System.Windows.Forms.ErrorProvider errorProvider,
                                           int minLength = 0, string type = null, string msg = "This field is required")
        {
            switch (type)
            {
            case "Number": {
                break;
            }

            case "strEnglishOnly": {
                break;
            }

            default: {
                if ((!String.IsNullOrWhiteSpace(txtCtl.Text)))
                {
                    errorProvider.SetError(txtCtl, "");
                    return(false);
                }
                else
                {
                    if (txtCtl.Text.Length < minLength)
                    {
                        msg += " and Length must be greater than " + minLength;
                    }
                    errorProvider.SetError(txtCtl, msg);
                    return(true);
                }
            }
            }
            return(false);
        }
Exemple #3
0
        private void BindBrokenMessages2WinformErrorProvider(System.Windows.Forms.ErrorProvider errorProvider, System.Windows.Forms.Control.ControlCollection controls, bool clearMessages)
        {
            if (clearMessages)
            {
                errorProvider.Clear();
            }

            foreach (BrokenRuleMessage rule in this.BrokenRuleMessages)
            {
                for (int i = 0; i < controls.Count; i++)
                {
                    if (controls[i] is System.Windows.Forms.Control)
                    {
                        System.Windows.Forms.Control cv = (System.Windows.Forms.Control)controls[i];
                        if (cv.Tag == null)
                        {
                            continue;
                        }
                        if (Convert.ToString(cv.Tag) != rule.Key)
                        {
                            continue;
                        }

                        errorProvider.SetError(cv, rule.Message);
                    }
                    else if (controls[i].Controls.Count > 0)
                    {
                        BindBrokenMessages2WinformErrorProvider(errorProvider, controls[i].Controls, false);
                    }
                }
            }
        }
Exemple #4
0
        public static bool ValidarForm2(System.Windows.Forms.Control objForm, System.Windows.Forms.ErrorProvider error)
        {
            bool valor = true;

            foreach (System.Windows.Forms.Control obj in objForm.Controls)
            {
                if (obj.Controls.Count > 0)
                {
                    valor = ValidarForm2(obj, error);
                    continue;
                }

                if (obj is textbox)
                {
                    textbox obj2 = (textbox)obj;
                    if (obj2.Validar)
                    {
                        if (string.IsNullOrEmpty(obj2.Text.Trim()))
                        {
                            valor = false;

                            error.SetError(obj, (string.IsNullOrEmpty(obj2.Text.Trim())) ? "Campo obligatorio" : "");
                        }
                    }
                }
            }
            return(valor);
        }
Exemple #5
0
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(gesCheckbox));

            this.errorProvider2 = new System.Windows.Forms.ErrorProvider(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).BeginInit();

            this.SuspendLayout();
            //
            // errorProvider1
            //
            this.errorProvider2.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
            //
            // errorProvider2
            //
            this.errorProvider2.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
            //

            ////this.BackColor = System.Drawing.Color.White;
            //this.Layout += new System.Windows.Forms.LayoutEventHandler(this.GesTextBox_Layout);
            //// this.Leave += new System.EventHandler(this.Validarting);
            //this.Validating += new CancelEventHandler(this.Validarting);
            //this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.OnKeyPress);
            //this.Enter += new System.EventHandler(this.GesTextBox_Enter);
            //((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
            //((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).EndInit();
            //this.VisibleChanged += new EventHandler(this.Validarting);
            this.ResumeLayout(false);
        }
Exemple #6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components  = new System.ComponentModel.Container();
     this.Button1     = new System.Windows.Forms.Button();
     this.errProvider = new System.Windows.Forms.ErrorProvider(this.components);
     this.Label3      = new System.Windows.Forms.Label();
     this.txtEmail    = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.errProvider)).BeginInit();
     this.SuspendLayout();
     //
     // Button1
     //
     this.Button1.Location = new System.Drawing.Point(212, 80);
     this.Button1.Name     = "Button1";
     this.Button1.Size     = new System.Drawing.Size(76, 24);
     this.Button1.TabIndex = 12;
     this.Button1.Text     = "OK";
     this.Button1.Click   += new System.EventHandler(this.Button1_Click);
     //
     // errProvider
     //
     this.errProvider.ContainerControl = this;
     this.errProvider.DataMember       = "";
     //
     // Label3
     //
     this.Label3.Location = new System.Drawing.Point(24, 24);
     this.Label3.Name     = "Label3";
     this.Label3.Size     = new System.Drawing.Size(40, 16);
     this.Label3.TabIndex = 14;
     this.Label3.Text     = "Email:";
     //
     // txtEmail
     //
     this.txtEmail.Location = new System.Drawing.Point(68, 20);
     this.txtEmail.Name     = "txtEmail";
     this.txtEmail.Size     = new System.Drawing.Size(220, 21);
     this.txtEmail.TabIndex = 13;
     this.txtEmail.Leave   += new System.EventHandler(this.txtEmail_Leave);
     //
     // Recipe07_17
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(328, 126);
     this.Controls.Add(this.Label3);
     this.Controls.Add(this.txtEmail);
     this.Controls.Add(this.Button1);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "Recipe07_17";
     this.Text = "Recipe07_17";
     ((System.ComponentModel.ISupportInitialize)(this.errProvider)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NewMediumLevelRecordEditor));
     this.bSave = new System.Windows.Forms.Button();
     this.bCancel = new System.Windows.Forms.Button();
     this.Error = new System.Windows.Forms.ErrorProvider(this.components);
     this.fpanel1 = new System.Windows.Forms.TableLayoutPanel();
     ((System.ComponentModel.ISupportInitialize)(this.Error)).BeginInit();
     this.SuspendLayout();
     //
     // bSave
     //
     resources.ApplyResources(this.bSave, "bSave");
     this.bSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.bSave.Name = "bSave";
     this.bSave.UseVisualStyleBackColor = true;
     this.bSave.Click += new System.EventHandler(this.bSave_Click);
     //
     // bCancel
     //
     resources.ApplyResources(this.bCancel, "bCancel");
     this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.bCancel.Name = "bCancel";
     this.bCancel.UseVisualStyleBackColor = true;
     this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
     //
     // Error
     //
     this.Error.ContainerControl = this;
     resources.ApplyResources(this.Error, "Error");
     //
     // fpanel1
     //
     resources.ApplyResources(this.fpanel1, "fpanel1");
     this.fpanel1.Name = "fpanel1";
     this.fpanel1.Resize += new System.EventHandler(this.fpanel1_Resize);
     //
     // NewMediumLevelRecordEditor
     //
     this.AcceptButton = this.bSave;
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.bCancel;
     this.Controls.Add(this.fpanel1);
     this.Controls.Add(this.bCancel);
     this.Controls.Add(this.bSave);
     this.Name = "NewMediumLevelRecordEditor";
     this.ShowInTaskbar = false;
     this.Load += new System.EventHandler(this.NewMediumLevelRecordEditor_Load);
     this.Shown += new System.EventHandler(this.NewMediumLevelRecordEditor_Shown);
     ((System.ComponentModel.ISupportInitialize)(this.Error)).EndInit();
     this.ResumeLayout(false);
 }
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(gesDateTimePicker));

            this.errorProvider2 = new System.Windows.Forms.ErrorProvider(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).BeginInit();

            this.SuspendLayout();
            this.errorProvider2.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
            this.ResumeLayout(false);
        }
Exemple #9
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this._table = new System.Windows.Forms.TableLayoutPanel();
     this._label = new System.Windows.Forms.Label();
     this._errorProvider = new System.Windows.Forms.ErrorProvider();
     this._table.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this._errorProvider)).BeginInit();
     this.SuspendLayout();
     //
     // _table
     //
     this._table.ColumnCount = 3;
     this._table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this._table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this._table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 16F));
     this._table.Controls.Add(this._label, 0, 0);
     this._table.Dock = System.Windows.Forms.DockStyle.Fill;
     this._table.Location = new System.Drawing.Point(0, 0);
     this._table.Name = "_table";
     this._table.RowCount = 1;
     this._table.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this._table.Size = new System.Drawing.Size(219, 28);
     this._table.TabIndex = 0;
     //
     // _label
     //
     this._label.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this._label.AutoEllipsis = true;
     this._label.AutoSize = true;
     this._label.Location = new System.Drawing.Point(3, 7);
     this._label.Margin = new System.Windows.Forms.Padding(3);
     this._label.Name = "_label";
     this._label.Size = new System.Drawing.Size(36, 13);
     this._label.TabIndex = 6;
     this._label.Text = "<text>";
     this._label.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _errorProvider
     //
     this._errorProvider.ContainerControl = this;
     //
     // TableItem
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this._table);
     this.Name = "TableItem";
     this.Size = new System.Drawing.Size(219, 28);
     this._table.ResumeLayout(false);
     this._table.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this._errorProvider)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #10
0
 public static Boolean validNotSelectCB(Syncfusion.Windows.Forms.Tools.ComboBoxAdv cbCtl,
                                        System.Windows.Forms.ErrorProvider errorProvider, string msg = "This field is required")
 {
     if (cbCtl.SelectedIndex == -1)
     {
         errorProvider.SetError(cbCtl, msg);
         return(true);
     }
     else
     {
         errorProvider.SetError(cbCtl, "");
         return(false);
     }
 }
 [System.Diagnostics.DebuggerStepThrough()] private void InitializeComponent()
 {
     this.errProvider = new System.Windows.Forms.ErrorProvider();
     this.toolTip     = new System.Windows.Forms.ToolTip();
     //
     //errProvider
     //
     this.errProvider.ContainerControl = this;
     //
     //toolTip
     //
     //
     //BaseEditUserControl
     //
     this.Name = "BaseEditUserControl";
 }
		/// <summary>
		/// Initializes the component.
		/// </summary>
		public void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);
			
			//this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			this.uxProductModelId = new System.Windows.Forms.ComboBox();
			uxProductModelIdLabel = new System.Windows.Forms.Label();
			this.uxIllustrationId = new System.Windows.Forms.ComboBox();
			uxIllustrationIdLabel = new System.Windows.Forms.Label();
			this.uxModifiedDate = new System.Windows.Forms.DateTimePicker();
			uxModifiedDateLabel = new System.Windows.Forms.Label();
			
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
			this.SuspendLayout();
			
			// 
			// uxTableLayoutPanel
			// 
			//this.uxTableLayoutPanel.AutoSize = true;
			//this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			//this.uxTableLayoutPanel.ColumnCount = 2;
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
			//this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
			//this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
			//this.uxTableLayoutPanel.RowCount = 2;
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
			//this.uxTableLayoutPanel.TabIndex = 0;
			
			//
			// uxErrorProvider
			//
			this.uxErrorProvider.ContainerControl = this;
			this.uxErrorProvider.DataSource = this.uxBindingSource;
			
			//
			// uxProductModelIdLabel
			//
			this.uxProductModelIdLabel.Name = "uxProductModelIdLabel";
			this.uxProductModelIdLabel.Text = "Product Model Id:";
			this.uxProductModelIdLabel.Location = new System.Drawing.Point(3, 0);
			this.Controls.Add(this.uxProductModelIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxProductModelIdLabel);			
			//
			// uxProductModelId
			//
			this.uxProductModelId.Name = "uxProductModelId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxProductModelId);
			this.uxProductModelId.Location = new System.Drawing.Point(160, 0);
			this.Controls.Add(this.uxProductModelId);
			//
			// uxIllustrationIdLabel
			//
			this.uxIllustrationIdLabel.Name = "uxIllustrationIdLabel";
			this.uxIllustrationIdLabel.Text = "Illustration Id:";
			this.uxIllustrationIdLabel.Location = new System.Drawing.Point(3, 26);
			this.Controls.Add(this.uxIllustrationIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxIllustrationIdLabel);			
			//
			// uxIllustrationId
			//
			this.uxIllustrationId.Name = "uxIllustrationId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxIllustrationId);
			this.uxIllustrationId.Location = new System.Drawing.Point(160, 26);
			this.Controls.Add(this.uxIllustrationId);
			//
			// uxModifiedDateLabel
			//
			this.uxModifiedDateLabel.Name = "uxModifiedDateLabel";
			this.uxModifiedDateLabel.Text = "Modified Date:";
			this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 52);
			this.Controls.Add(this.uxModifiedDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);			
			//
			// uxModifiedDate
			//
			this.uxModifiedDate.Name = "uxModifiedDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
			this.uxModifiedDate.Location = new System.Drawing.Point(160, 52);
			this.Controls.Add(this.uxModifiedDate);
			//
			// uxIllustrationId
			//				
			this.uxIllustrationId.DisplayMember = "Diagram";	
			this.uxIllustrationId.ValueMember = "IllustrationId";	
			//
			// uxProductModelId
			//				
			this.uxProductModelId.DisplayMember = "Name";	
			this.uxProductModelId.ValueMember = "ProductModelId";	
			// 
			// ProductModelIllustrationEditControlBase
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			//this.Controls.Add(this.uxTableLayoutPanel);
			this.AutoScroll = true;
			this.Name = "ProductModelIllustrationEditControlBase";
			this.Size = new System.Drawing.Size(478, 311);
			//this.Localizable = true;
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();			
			this.ResumeLayout(false);
			this.PerformLayout();
		}
Exemple #13
0
        /// <summary>
        /// Initializes a new instance of the <see cref="TestProductDataGridViewBase"/> class.
        /// </summary>
        public TestProductDataGridViewBase()
        {
            this.components = new System.ComponentModel.Container();

            this.uxTestProductDataGridView             = new System.Windows.Forms.DataGridView();
            this.uxTestProductBindingSource            = new System.Windows.Forms.BindingSource(this.components);
            this.uxTestProductErrorProvider            = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxProductIdDataGridViewColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxProductTypeIdDataGridViewColumn     = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxDownloadIdDataGridViewColumn        = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxManufacturerIdDataGridViewColumn    = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxBrandNameDataGridViewColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxProductNameDataGridViewColumn       = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxProductCodeDataGridViewColumn       = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxUniqueIdentifierDataGridViewColumn  = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxTypeNameDataGridViewColumn          = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxModelNameDataGridViewColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxDisplayNameDataGridViewColumn       = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxProductLinkDataGridViewColumn       = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxConnectorCodeDataGridViewColumn     = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxBaseIdDataGridViewColumn            = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxOrgProductIdDataGridViewColumn      = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxImageFileTypeDataGridViewColumn     = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxFullImageFileTypeDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxStatusDataGridViewColumn            = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxAddedByDataGridViewColumn           = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxAddedDateDataGridViewColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxUpdatedByDataGridViewColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxUpdatedDateDataGridViewColumn       = new System.Windows.Forms.DataGridViewTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.uxTestProductDataGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxTestProductBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxTestProductErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTestProductErrorProvider
            //
            this.uxTestProductErrorProvider.ContainerControl = this;
            this.uxTestProductErrorProvider.DataSource       = this.uxTestProductBindingSource;
            //
            // uxTestProductDataGridView
            //
            this.uxTestProductDataGridView.AutoGenerateColumns         = false;
            this.uxTestProductDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.uxTestProductDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
                this.uxProductIdDataGridViewColumn,
                this.uxProductTypeIdDataGridViewColumn,
                this.uxDownloadIdDataGridViewColumn,
                this.uxManufacturerIdDataGridViewColumn,
                this.uxBrandNameDataGridViewColumn,
                this.uxProductNameDataGridViewColumn,
                this.uxProductCodeDataGridViewColumn,
                this.uxUniqueIdentifierDataGridViewColumn,
                this.uxTypeNameDataGridViewColumn,
                this.uxModelNameDataGridViewColumn,
                this.uxDisplayNameDataGridViewColumn,
                this.uxProductLinkDataGridViewColumn,
                this.uxConnectorCodeDataGridViewColumn,
                this.uxBaseIdDataGridViewColumn,
                this.uxOrgProductIdDataGridViewColumn,
                this.uxImageFileTypeDataGridViewColumn,
                this.uxFullImageFileTypeDataGridViewColumn,
                this.uxStatusDataGridViewColumn,
                this.uxAddedByDataGridViewColumn,
                this.uxAddedDateDataGridViewColumn,
                this.uxUpdatedByDataGridViewColumn,
                this.uxUpdatedDateDataGridViewColumn
            });
            this.uxTestProductDataGridView.Dock                      = System.Windows.Forms.DockStyle.Fill;
            this.uxTestProductDataGridView.Location                  = new System.Drawing.Point(0, 0);
            this.uxTestProductDataGridView.Name                      = "uxTestProductDataGridView";
            this.uxTestProductDataGridView.Size                      = new System.Drawing.Size(470, 300);
            this.uxTestProductDataGridView.TabIndex                  = 0;
            this.uxTestProductDataGridView.BackgroundColor           = System.Drawing.Color.WhiteSmoke;
            this.uxTestProductDataGridView.EnableHeadersVisualStyles = false;
            this.uxTestProductDataGridView.DataError                += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnTestProductDataGridViewDataError);
            this.uxTestProductDataGridView.CellValueNeeded          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnTestProductDataGridViewCellValueNeeded);
            this.uxTestProductDataGridView.CellValuePushed          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnTestProductDataGridViewCellValuePushed);

            //
            // uxProductIdDataGridViewColumn
            //
            this.uxProductIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxProductIdDataGridViewColumn.DataPropertyName = "ProductId";
            this.uxProductIdDataGridViewColumn.HeaderText       = "ProductId";
            this.uxProductIdDataGridViewColumn.Name             = "uxProductIdDataGridViewColumn";
            this.uxProductIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxProductIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxProductIdDataGridViewColumn.ReadOnly         = true;
            //
            // uxProductTypeIdDataGridViewColumn
            //
            this.uxProductTypeIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxProductTypeIdDataGridViewColumn.DataPropertyName = "ProductTypeId";
            this.uxProductTypeIdDataGridViewColumn.HeaderText       = "ProductTypeId";
            this.uxProductTypeIdDataGridViewColumn.Name             = "uxProductTypeIdDataGridViewColumn";
            this.uxProductTypeIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxProductTypeIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxProductTypeIdDataGridViewColumn.ReadOnly         = false;
            //
            // uxDownloadIdDataGridViewColumn
            //
            this.uxDownloadIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxDownloadIdDataGridViewColumn.DataPropertyName = "DownloadId";
            this.uxDownloadIdDataGridViewColumn.HeaderText       = "DownloadId";
            this.uxDownloadIdDataGridViewColumn.Name             = "uxDownloadIdDataGridViewColumn";
            this.uxDownloadIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxDownloadIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxDownloadIdDataGridViewColumn.ReadOnly         = false;
            //
            // uxManufacturerIdDataGridViewColumn
            //
            this.uxManufacturerIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxManufacturerIdDataGridViewColumn.DataPropertyName = "ManufacturerId";
            this.uxManufacturerIdDataGridViewColumn.HeaderText       = "ManufacturerId";
            this.uxManufacturerIdDataGridViewColumn.Name             = "uxManufacturerIdDataGridViewColumn";
            this.uxManufacturerIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxManufacturerIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxManufacturerIdDataGridViewColumn.ReadOnly         = false;
            //
            // uxBrandNameDataGridViewColumn
            //
            this.uxBrandNameDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxBrandNameDataGridViewColumn.DataPropertyName = "BrandName";
            this.uxBrandNameDataGridViewColumn.HeaderText       = "BrandName";
            this.uxBrandNameDataGridViewColumn.Name             = "uxBrandNameDataGridViewColumn";
            this.uxBrandNameDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxBrandNameDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxBrandNameDataGridViewColumn.ReadOnly         = false;
            //
            // uxProductNameDataGridViewColumn
            //
            this.uxProductNameDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxProductNameDataGridViewColumn.DataPropertyName = "ProductName";
            this.uxProductNameDataGridViewColumn.HeaderText       = "ProductName";
            this.uxProductNameDataGridViewColumn.Name             = "uxProductNameDataGridViewColumn";
            this.uxProductNameDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxProductNameDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxProductNameDataGridViewColumn.ReadOnly         = false;
            //
            // uxProductCodeDataGridViewColumn
            //
            this.uxProductCodeDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxProductCodeDataGridViewColumn.DataPropertyName = "ProductCode";
            this.uxProductCodeDataGridViewColumn.HeaderText       = "ProductCode";
            this.uxProductCodeDataGridViewColumn.Name             = "uxProductCodeDataGridViewColumn";
            this.uxProductCodeDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxProductCodeDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxProductCodeDataGridViewColumn.ReadOnly         = false;
            //
            // uxUniqueIdentifierDataGridViewColumn
            //
            this.uxUniqueIdentifierDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxUniqueIdentifierDataGridViewColumn.DataPropertyName = "UniqueIdentifier";
            this.uxUniqueIdentifierDataGridViewColumn.HeaderText       = "UniqueIdentifier";
            this.uxUniqueIdentifierDataGridViewColumn.Name             = "uxUniqueIdentifierDataGridViewColumn";
            this.uxUniqueIdentifierDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxUniqueIdentifierDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxUniqueIdentifierDataGridViewColumn.ReadOnly         = false;
            //
            // uxTypeNameDataGridViewColumn
            //
            this.uxTypeNameDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxTypeNameDataGridViewColumn.DataPropertyName = "TypeName";
            this.uxTypeNameDataGridViewColumn.HeaderText       = "TypeName";
            this.uxTypeNameDataGridViewColumn.Name             = "uxTypeNameDataGridViewColumn";
            this.uxTypeNameDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxTypeNameDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxTypeNameDataGridViewColumn.ReadOnly         = false;
            //
            // uxModelNameDataGridViewColumn
            //
            this.uxModelNameDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxModelNameDataGridViewColumn.DataPropertyName = "ModelName";
            this.uxModelNameDataGridViewColumn.HeaderText       = "ModelName";
            this.uxModelNameDataGridViewColumn.Name             = "uxModelNameDataGridViewColumn";
            this.uxModelNameDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxModelNameDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxModelNameDataGridViewColumn.ReadOnly         = false;
            //
            // uxDisplayNameDataGridViewColumn
            //
            this.uxDisplayNameDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxDisplayNameDataGridViewColumn.DataPropertyName = "DisplayName";
            this.uxDisplayNameDataGridViewColumn.HeaderText       = "DisplayName";
            this.uxDisplayNameDataGridViewColumn.Name             = "uxDisplayNameDataGridViewColumn";
            this.uxDisplayNameDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxDisplayNameDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxDisplayNameDataGridViewColumn.ReadOnly         = false;
            //
            // uxProductLinkDataGridViewColumn
            //
            this.uxProductLinkDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxProductLinkDataGridViewColumn.DataPropertyName = "ProductLink";
            this.uxProductLinkDataGridViewColumn.HeaderText       = "ProductLink";
            this.uxProductLinkDataGridViewColumn.Name             = "uxProductLinkDataGridViewColumn";
            this.uxProductLinkDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxProductLinkDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxProductLinkDataGridViewColumn.ReadOnly         = false;
            //
            // uxConnectorCodeDataGridViewColumn
            //
            this.uxConnectorCodeDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxConnectorCodeDataGridViewColumn.DataPropertyName = "ConnectorCode";
            this.uxConnectorCodeDataGridViewColumn.HeaderText       = "ConnectorCode";
            this.uxConnectorCodeDataGridViewColumn.Name             = "uxConnectorCodeDataGridViewColumn";
            this.uxConnectorCodeDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxConnectorCodeDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxConnectorCodeDataGridViewColumn.ReadOnly         = false;
            //
            // uxBaseIdDataGridViewColumn
            //
            this.uxBaseIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxBaseIdDataGridViewColumn.DataPropertyName = "BaseId";
            this.uxBaseIdDataGridViewColumn.HeaderText       = "BaseId";
            this.uxBaseIdDataGridViewColumn.Name             = "uxBaseIdDataGridViewColumn";
            this.uxBaseIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxBaseIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxBaseIdDataGridViewColumn.ReadOnly         = false;
            //
            // uxOrgProductIdDataGridViewColumn
            //
            this.uxOrgProductIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxOrgProductIdDataGridViewColumn.DataPropertyName = "OrgProductId";
            this.uxOrgProductIdDataGridViewColumn.HeaderText       = "OrgProductId";
            this.uxOrgProductIdDataGridViewColumn.Name             = "uxOrgProductIdDataGridViewColumn";
            this.uxOrgProductIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxOrgProductIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxOrgProductIdDataGridViewColumn.ReadOnly         = false;
            //
            // uxImageFileTypeDataGridViewColumn
            //
            this.uxImageFileTypeDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxImageFileTypeDataGridViewColumn.DataPropertyName = "ImageFileType";
            this.uxImageFileTypeDataGridViewColumn.HeaderText       = "ImageFileType";
            this.uxImageFileTypeDataGridViewColumn.Name             = "uxImageFileTypeDataGridViewColumn";
            this.uxImageFileTypeDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxImageFileTypeDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxImageFileTypeDataGridViewColumn.ReadOnly         = false;
            //
            // uxFullImageFileTypeDataGridViewColumn
            //
            this.uxFullImageFileTypeDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxFullImageFileTypeDataGridViewColumn.DataPropertyName = "FullImageFileType";
            this.uxFullImageFileTypeDataGridViewColumn.HeaderText       = "FullImageFileType";
            this.uxFullImageFileTypeDataGridViewColumn.Name             = "uxFullImageFileTypeDataGridViewColumn";
            this.uxFullImageFileTypeDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxFullImageFileTypeDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxFullImageFileTypeDataGridViewColumn.ReadOnly         = false;
            //
            // uxStatusDataGridViewColumn
            //
            this.uxStatusDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxStatusDataGridViewColumn.DataPropertyName = "Status";
            this.uxStatusDataGridViewColumn.HeaderText       = "Status";
            this.uxStatusDataGridViewColumn.Name             = "uxStatusDataGridViewColumn";
            this.uxStatusDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxStatusDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxStatusDataGridViewColumn.ReadOnly         = false;
            //
            // uxAddedByDataGridViewColumn
            //
            this.uxAddedByDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxAddedByDataGridViewColumn.DataPropertyName = "AddedBy";
            this.uxAddedByDataGridViewColumn.HeaderText       = "AddedBy";
            this.uxAddedByDataGridViewColumn.Name             = "uxAddedByDataGridViewColumn";
            this.uxAddedByDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxAddedByDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxAddedByDataGridViewColumn.ReadOnly         = false;
            //
            // uxAddedDateDataGridViewColumn
            //
            this.uxAddedDateDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxAddedDateDataGridViewColumn.DataPropertyName = "AddedDate";
            this.uxAddedDateDataGridViewColumn.HeaderText       = "AddedDate";
            this.uxAddedDateDataGridViewColumn.Name             = "uxAddedDateDataGridViewColumn";
            this.uxAddedDateDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxAddedDateDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxAddedDateDataGridViewColumn.ReadOnly         = false;
            //
            // uxUpdatedByDataGridViewColumn
            //
            this.uxUpdatedByDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxUpdatedByDataGridViewColumn.DataPropertyName = "UpdatedBy";
            this.uxUpdatedByDataGridViewColumn.HeaderText       = "UpdatedBy";
            this.uxUpdatedByDataGridViewColumn.Name             = "uxUpdatedByDataGridViewColumn";
            this.uxUpdatedByDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxUpdatedByDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxUpdatedByDataGridViewColumn.ReadOnly         = false;
            //
            // uxUpdatedDateDataGridViewColumn
            //
            this.uxUpdatedDateDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxUpdatedDateDataGridViewColumn.DataPropertyName = "UpdatedDate";
            this.uxUpdatedDateDataGridViewColumn.HeaderText       = "UpdatedDate";
            this.uxUpdatedDateDataGridViewColumn.Name             = "uxUpdatedDateDataGridViewColumn";
            this.uxUpdatedDateDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxUpdatedDateDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxUpdatedDateDataGridViewColumn.ReadOnly         = false;

            // this
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.uxTestProductDataGridView);
            this.Name = "TestProductDataGridView";
            this.Size = new System.Drawing.Size(470, 300);
            ((System.ComponentModel.ISupportInitialize)(this.uxTestProductErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxTestProductDataGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxTestProductBindingSource)).EndInit();
            this.ResumeLayout(false);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnCat = new System.Windows.Forms.Button();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.rbActionDelCol = new System.Windows.Forms.RadioButton();
     this.rbActionDelRow = new System.Windows.Forms.RadioButton();
     this.label4 = new System.Windows.Forms.Label();
     this.btnAction = new System.Windows.Forms.Button();
     this.txtReplaceWith = new System.Windows.Forms.TextBox();
     this.rbActionReplace = new System.Windows.Forms.RadioButton();
     this.cboCols = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.btnScan = new System.Windows.Forms.Button();
     this.txtFindVal = new System.Windows.Forms.TextBox();
     this.lblStatus = new System.Windows.Forms.Label();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnReturn = new System.Windows.Forms.Button();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.helpProvider1 = new System.Windows.Forms.HelpProvider();
     this.groupBox1.SuspendLayout();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.btnCat);
     this.groupBox1.Controls.Add(this.groupBox4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.btnScan);
     this.groupBox1.Controls.Add(this.txtFindVal);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(238, 378);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Data Validation ";
     //
     // btnCat
     //
     this.btnCat.Location = new System.Drawing.Point(43, 339);
     this.btnCat.Name = "btnCat";
     this.btnCat.Size = new System.Drawing.Size(152, 23);
     this.btnCat.TabIndex = 26;
     this.btnCat.Text = "Identify Categorical Variables ";
     this.btnCat.UseVisualStyleBackColor = true;
     this.btnCat.Click += new System.EventHandler(this.btnCat_Click);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.rbActionDelCol);
     this.groupBox4.Controls.Add(this.rbActionDelRow);
     this.groupBox4.Controls.Add(this.label4);
     this.groupBox4.Controls.Add(this.btnAction);
     this.groupBox4.Controls.Add(this.txtReplaceWith);
     this.groupBox4.Controls.Add(this.rbActionReplace);
     this.groupBox4.Controls.Add(this.cboCols);
     this.groupBox4.Enabled = false;
     this.groupBox4.Location = new System.Drawing.Point(9, 119);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(223, 191);
     this.groupBox4.TabIndex = 25;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Action:";
     //
     // rbActionDelCol
     //
     this.rbActionDelCol.AutoSize = true;
     this.rbActionDelCol.Location = new System.Drawing.Point(13, 69);
     this.rbActionDelCol.Name = "rbActionDelCol";
     this.rbActionDelCol.Size = new System.Drawing.Size(94, 17);
     this.rbActionDelCol.TabIndex = 26;
     this.rbActionDelCol.Text = "Delete Column";
     this.rbActionDelCol.UseVisualStyleBackColor = true;
     this.rbActionDelCol.CheckedChanged += new System.EventHandler(this.rbActionDelCol_CheckedChanged);
     //
     // rbActionDelRow
     //
     this.rbActionDelRow.AutoSize = true;
     this.rbActionDelRow.Location = new System.Drawing.Point(13, 46);
     this.rbActionDelRow.Name = "rbActionDelRow";
     this.rbActionDelRow.Size = new System.Drawing.Size(81, 17);
     this.rbActionDelRow.TabIndex = 25;
     this.rbActionDelRow.Text = "Delete Row";
     this.rbActionDelRow.UseVisualStyleBackColor = true;
     this.rbActionDelRow.CheckedChanged += new System.EventHandler(this.rbActionDelRow_CheckedChanged);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(45, 102);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(101, 13);
     this.label4.TabIndex = 23;
     this.label4.Text = "Take Action Within:";
     //
     // btnAction
     //
     this.btnAction.Location = new System.Drawing.Point(62, 156);
     this.btnAction.Name = "btnAction";
     this.btnAction.Size = new System.Drawing.Size(95, 23);
     this.btnAction.TabIndex = 4;
     this.btnAction.Text = "Take Action";
     this.btnAction.UseVisualStyleBackColor = true;
     this.btnAction.Click += new System.EventHandler(this.btnAction_Click);
     //
     // txtReplaceWith
     //
     this.txtReplaceWith.Location = new System.Drawing.Point(112, 22);
     this.txtReplaceWith.Name = "txtReplaceWith";
     this.txtReplaceWith.Size = new System.Drawing.Size(89, 20);
     this.txtReplaceWith.TabIndex = 24;
     this.txtReplaceWith.Validating += new System.ComponentModel.CancelEventHandler(this.txtReplaceWith_Validating);
     this.txtReplaceWith.Validated += new System.EventHandler(this.txtReplaceWith_Validated);
     //
     // rbActionReplace
     //
     this.rbActionReplace.AutoSize = true;
     this.rbActionReplace.Checked = true;
     this.rbActionReplace.Location = new System.Drawing.Point(13, 24);
     this.rbActionReplace.Name = "rbActionReplace";
     this.rbActionReplace.Size = new System.Drawing.Size(93, 17);
     this.rbActionReplace.TabIndex = 23;
     this.rbActionReplace.TabStop = true;
     this.rbActionReplace.Text = "Replace With:";
     this.rbActionReplace.UseVisualStyleBackColor = true;
     this.rbActionReplace.CheckedChanged += new System.EventHandler(this.rbActionReplace_CheckedChanged);
     //
     // cboCols
     //
     this.cboCols.FormattingEnabled = true;
     this.cboCols.Location = new System.Drawing.Point(43, 119);
     this.cboCols.Name = "cboCols";
     this.cboCols.Size = new System.Drawing.Size(149, 21);
     this.cboCols.TabIndex = 10;
     this.cboCols.SelectedIndexChanged += new System.EventHandler(this.cboCols_SelectedIndexChanged);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(17, 88);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(78, 13);
     this.label3.TabIndex = 13;
     this.label3.Text = "(Optional) Find:";
     //
     // btnScan
     //
     this.btnScan.Location = new System.Drawing.Point(68, 30);
     this.btnScan.Name = "btnScan";
     this.btnScan.Size = new System.Drawing.Size(87, 36);
     this.btnScan.TabIndex = 12;
     this.btnScan.Text = "Scan";
     this.btnScan.UseVisualStyleBackColor = true;
     this.btnScan.Click += new System.EventHandler(this.btnScan_Click);
     //
     // txtFindVal
     //
     this.txtFindVal.Location = new System.Drawing.Point(101, 81);
     this.txtFindVal.Name = "txtFindVal";
     this.txtFindVal.Size = new System.Drawing.Size(105, 20);
     this.txtFindVal.TabIndex = 21;
     this.txtFindVal.TextChanged += new System.EventHandler(this.txtFindVal_TextChanged);
     //
     // lblStatus
     //
     this.lblStatus.AutoSize = true;
     this.lblStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblStatus.Location = new System.Drawing.Point(13, 395);
     this.lblStatus.Name = "lblStatus";
     this.lblStatus.Size = new System.Drawing.Size(0, 16);
     this.lblStatus.TabIndex = 15;
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(136, 414);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 3;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnReturn
     //
     this.btnReturn.Location = new System.Drawing.Point(48, 414);
     this.btnReturn.Name = "btnReturn";
     this.btnReturn.Size = new System.Drawing.Size(75, 23);
     this.btnReturn.TabIndex = 1;
     this.btnReturn.Text = "Return";
     this.btnReturn.UseVisualStyleBackColor = true;
     this.btnReturn.Click += new System.EventHandler(this.btnReturn_Click);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // frmMissingValues
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(262, 449);
     this.ControlBox = false;
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.lblStatus);
     this.Controls.Add(this.btnReturn);
     this.Name = "frmMissingValues";
     this.Text = "Validation";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #15
0
        /// <summary>
        /// Initializes the component.
        /// </summary>
        public void InitializeComponent()
        {
            this.components      = new System.ComponentModel.Container();
            this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);

            //this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.uxDocumentId      = new System.Windows.Forms.TextBox();
            uxDocumentIdLabel      = new System.Windows.Forms.Label();
            this.uxTitle           = new System.Windows.Forms.TextBox();
            uxTitleLabel           = new System.Windows.Forms.Label();
            this.uxFileName        = new System.Windows.Forms.TextBox();
            uxFileNameLabel        = new System.Windows.Forms.Label();
            this.uxFileExtension   = new System.Windows.Forms.TextBox();
            uxFileExtensionLabel   = new System.Windows.Forms.Label();
            this.uxRevision        = new System.Windows.Forms.TextBox();
            uxRevisionLabel        = new System.Windows.Forms.Label();
            this.uxChangeNumber    = new System.Windows.Forms.TextBox();
            uxChangeNumberLabel    = new System.Windows.Forms.Label();
            this.uxStatus          = new System.Windows.Forms.TextBox();
            uxStatusLabel          = new System.Windows.Forms.Label();
            this.uxDocumentSummary = new System.Windows.Forms.TextBox();
            uxDocumentSummaryLabel = new System.Windows.Forms.Label();
            this.uxDocument        = new System.Windows.Forms.TextBox();
            uxDocumentLabel        = new System.Windows.Forms.Label();
            this.uxModifiedDate    = new System.Windows.Forms.DateTimePicker();
            uxModifiedDateLabel    = new System.Windows.Forms.Label();

            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTableLayoutPanel
            //
            //this.uxTableLayoutPanel.AutoSize = true;
            //this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            //this.uxTableLayoutPanel.ColumnCount = 2;
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
            //this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
            //this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
            //this.uxTableLayoutPanel.RowCount = 2;
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
            //this.uxTableLayoutPanel.TabIndex = 0;

            //
            // uxErrorProvider
            //
            this.uxErrorProvider.ContainerControl = this;
            this.uxErrorProvider.DataSource       = this.uxBindingSource;

            //
            // uxDocumentIdLabel
            //
            this.uxDocumentIdLabel.Name     = "uxDocumentIdLabel";
            this.uxDocumentIdLabel.Text     = "Document Id:";
            this.uxDocumentIdLabel.Location = new System.Drawing.Point(3, 0);
            this.Controls.Add(this.uxDocumentIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxDocumentIdLabel);
            //
            // uxDocumentId
            //
            this.uxDocumentId.Name     = "uxDocumentId";
            this.uxDocumentId.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxDocumentId);
            this.uxDocumentId.Location = new System.Drawing.Point(160, 0);
            this.Controls.Add(this.uxDocumentId);
            //
            // uxTitleLabel
            //
            this.uxTitleLabel.Name     = "uxTitleLabel";
            this.uxTitleLabel.Text     = "Title:";
            this.uxTitleLabel.Location = new System.Drawing.Point(3, 26);
            this.Controls.Add(this.uxTitleLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxTitleLabel);
            //
            // uxTitle
            //
            this.uxTitle.Name      = "uxTitle";
            this.uxTitle.Width     = 250;
            this.uxTitle.MaxLength = 50;
            //this.uxTableLayoutPanel.Controls.Add(this.uxTitle);
            this.uxTitle.Location = new System.Drawing.Point(160, 26);
            this.Controls.Add(this.uxTitle);
            //
            // uxFileNameLabel
            //
            this.uxFileNameLabel.Name     = "uxFileNameLabel";
            this.uxFileNameLabel.Text     = "File Name:";
            this.uxFileNameLabel.Location = new System.Drawing.Point(3, 52);
            this.Controls.Add(this.uxFileNameLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxFileNameLabel);
            //
            // uxFileName
            //
            this.uxFileName.Name      = "uxFileName";
            this.uxFileName.Width     = 250;
            this.uxFileName.MaxLength = 400;
            //this.uxTableLayoutPanel.Controls.Add(this.uxFileName);
            this.uxFileName.Location = new System.Drawing.Point(160, 52);
            this.Controls.Add(this.uxFileName);
            //
            // uxFileExtensionLabel
            //
            this.uxFileExtensionLabel.Name     = "uxFileExtensionLabel";
            this.uxFileExtensionLabel.Text     = "File Extension:";
            this.uxFileExtensionLabel.Location = new System.Drawing.Point(3, 78);
            this.Controls.Add(this.uxFileExtensionLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxFileExtensionLabel);
            //
            // uxFileExtension
            //
            this.uxFileExtension.Name      = "uxFileExtension";
            this.uxFileExtension.Width     = 250;
            this.uxFileExtension.MaxLength = 8;
            //this.uxTableLayoutPanel.Controls.Add(this.uxFileExtension);
            this.uxFileExtension.Location = new System.Drawing.Point(160, 78);
            this.Controls.Add(this.uxFileExtension);
            //
            // uxRevisionLabel
            //
            this.uxRevisionLabel.Name     = "uxRevisionLabel";
            this.uxRevisionLabel.Text     = "Revision:";
            this.uxRevisionLabel.Location = new System.Drawing.Point(3, 104);
            this.Controls.Add(this.uxRevisionLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxRevisionLabel);
            //
            // uxRevision
            //
            this.uxRevision.Name      = "uxRevision";
            this.uxRevision.Width     = 250;
            this.uxRevision.MaxLength = 5;
            //this.uxTableLayoutPanel.Controls.Add(this.uxRevision);
            this.uxRevision.Location = new System.Drawing.Point(160, 104);
            this.Controls.Add(this.uxRevision);
            //
            // uxChangeNumberLabel
            //
            this.uxChangeNumberLabel.Name     = "uxChangeNumberLabel";
            this.uxChangeNumberLabel.Text     = "Change Number:";
            this.uxChangeNumberLabel.Location = new System.Drawing.Point(3, 130);
            this.Controls.Add(this.uxChangeNumberLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxChangeNumberLabel);
            //
            // uxChangeNumber
            //
            this.uxChangeNumber.Name = "uxChangeNumber";
            //this.uxTableLayoutPanel.Controls.Add(this.uxChangeNumber);
            this.uxChangeNumber.Location = new System.Drawing.Point(160, 130);
            this.Controls.Add(this.uxChangeNumber);
            //
            // uxStatusLabel
            //
            this.uxStatusLabel.Name     = "uxStatusLabel";
            this.uxStatusLabel.Text     = "Status:";
            this.uxStatusLabel.Location = new System.Drawing.Point(3, 156);
            this.Controls.Add(this.uxStatusLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxStatusLabel);
            //
            // uxStatus
            //
            this.uxStatus.Name = "uxStatus";
            //this.uxTableLayoutPanel.Controls.Add(this.uxStatus);
            this.uxStatus.Location = new System.Drawing.Point(160, 156);
            this.Controls.Add(this.uxStatus);
            //
            // uxDocumentSummaryLabel
            //
            this.uxDocumentSummaryLabel.Name     = "uxDocumentSummaryLabel";
            this.uxDocumentSummaryLabel.Text     = "Document Summary:";
            this.uxDocumentSummaryLabel.Location = new System.Drawing.Point(3, 182);
            this.Controls.Add(this.uxDocumentSummaryLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxDocumentSummaryLabel);
            //
            // uxDocumentSummary
            //
            this.uxDocumentSummary.Name      = "uxDocumentSummary";
            this.uxDocumentSummary.Width     = 250;
            this.uxDocumentSummary.Multiline = true;
            //this.uxDocumentSummary.Height = 80;
            //this.uxTableLayoutPanel.Controls.Add(this.uxDocumentSummary);
            this.uxDocumentSummary.Location = new System.Drawing.Point(160, 182);
            this.Controls.Add(this.uxDocumentSummary);
            //
            // uxDocumentLabel
            //
            this.uxDocumentLabel.Name     = "uxDocumentLabel";
            this.uxDocumentLabel.Text     = "Document:";
            this.uxDocumentLabel.Location = new System.Drawing.Point(3, 208);
            this.Controls.Add(this.uxDocumentLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxDocumentLabel);
            //
            // uxDocument
            //
            this.uxDocument.Name = "uxDocument";
            //this.uxTableLayoutPanel.Controls.Add(this.uxDocument);
            this.uxDocument.Location = new System.Drawing.Point(160, 208);
            this.Controls.Add(this.uxDocument);
            //
            // uxModifiedDateLabel
            //
            this.uxModifiedDateLabel.Name     = "uxModifiedDateLabel";
            this.uxModifiedDateLabel.Text     = "Modified Date:";
            this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 234);
            this.Controls.Add(this.uxModifiedDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);
            //
            // uxModifiedDate
            //
            this.uxModifiedDate.Name = "uxModifiedDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
            this.uxModifiedDate.Location = new System.Drawing.Point(160, 234);
            this.Controls.Add(this.uxModifiedDate);
            //
            // DocumentEditControlBase
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            //this.Controls.Add(this.uxTableLayoutPanel);
            this.AutoScroll = true;
            this.Name       = "DocumentEditControlBase";
            this.Size       = new System.Drawing.Size(478, 311);
            //this.Localizable = true;
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
		/// <summary>
		/// Initializes a new instance of the <see cref="SalesOrderHeaderDataGridViewBase"/> class.
		/// </summary>
		public SalesOrderHeaderDataGridViewBase()
		{			
			this.components = new System.ComponentModel.Container();			
			
			this.uxSalesOrderHeaderDataGridView = new System.Windows.Forms.DataGridView();
			this.uxSalesOrderHeaderBindingSource = new System.Windows.Forms.BindingSource(this.components);
			this.uxSalesOrderHeaderErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxSalesOrderIdDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxRevisionNumberDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxOrderDateDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxDueDateDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxShipDateDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxStatusDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxOnlineOrderFlagDataGridViewColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
			this.uxSalesOrderNumberDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxPurchaseOrderNumberDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxAccountNumberDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxCustomerIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxContactIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxSalesPersonIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxTerritoryIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxBillToAddressIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxShipToAddressIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxShipMethodIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxCreditCardIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxCreditCardApprovalCodeDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxCurrencyRateIdDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
			this.uxSubTotalDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxTaxAmtDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxFreightDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxTotalDueDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxCommentDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxRowguidDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxModifiedDateDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			//this.uxBillToAddressIdBindingSource = new AddressBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxBillToAddressIdBindingSource)).BeginInit();
			//this.uxShipToAddressIdBindingSource = new AddressBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxShipToAddressIdBindingSource)).BeginInit();
			//this.uxContactIdBindingSource = new ContactBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxContactIdBindingSource)).BeginInit();
			//this.uxCreditCardIdBindingSource = new CreditCardBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxCreditCardIdBindingSource)).BeginInit();
			//this.uxCurrencyRateIdBindingSource = new CurrencyRateBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxCurrencyRateIdBindingSource)).BeginInit();
			//this.uxCustomerIdBindingSource = new CustomerBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxCustomerIdBindingSource)).BeginInit();
			//this.uxSalesPersonIdBindingSource = new SalesPersonBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxSalesPersonIdBindingSource)).BeginInit();
			//this.uxTerritoryIdBindingSource = new SalesTerritoryBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxTerritoryIdBindingSource)).BeginInit();
			//this.uxShipMethodIdBindingSource = new ShipMethodBindingSource(this.components);
			//((System.ComponentModel.ISupportInitialize)(this.uxShipMethodIdBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxSalesOrderHeaderDataGridView)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxSalesOrderHeaderBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxSalesOrderHeaderErrorProvider)).BeginInit();
			this.SuspendLayout();
						
			// 
			// uxSalesOrderHeaderErrorProvider
			// 
			this.uxSalesOrderHeaderErrorProvider.ContainerControl = this;
			this.uxSalesOrderHeaderErrorProvider.DataSource = this.uxSalesOrderHeaderBindingSource;						
			// 
			// uxSalesOrderHeaderDataGridView
			// 
			this.uxSalesOrderHeaderDataGridView.AutoGenerateColumns = false;
			this.uxSalesOrderHeaderDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
			this.uxSalesOrderHeaderDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
		this.uxSalesOrderIdDataGridViewColumn,
		this.uxRevisionNumberDataGridViewColumn,
		this.uxOrderDateDataGridViewColumn,
		this.uxDueDateDataGridViewColumn,
		this.uxShipDateDataGridViewColumn,
		this.uxStatusDataGridViewColumn,
		this.uxOnlineOrderFlagDataGridViewColumn,
		this.uxSalesOrderNumberDataGridViewColumn,
		this.uxPurchaseOrderNumberDataGridViewColumn,
		this.uxAccountNumberDataGridViewColumn,
		this.uxCustomerIdDataGridViewColumn,
		this.uxContactIdDataGridViewColumn,
		this.uxSalesPersonIdDataGridViewColumn,
		this.uxTerritoryIdDataGridViewColumn,
		this.uxBillToAddressIdDataGridViewColumn,
		this.uxShipToAddressIdDataGridViewColumn,
		this.uxShipMethodIdDataGridViewColumn,
		this.uxCreditCardIdDataGridViewColumn,
		this.uxCreditCardApprovalCodeDataGridViewColumn,
		this.uxCurrencyRateIdDataGridViewColumn,
		this.uxSubTotalDataGridViewColumn,
		this.uxTaxAmtDataGridViewColumn,
		this.uxFreightDataGridViewColumn,
		this.uxTotalDueDataGridViewColumn,
		this.uxCommentDataGridViewColumn,
		this.uxRowguidDataGridViewColumn,
		this.uxModifiedDateDataGridViewColumn			});
			this.uxSalesOrderHeaderDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
			this.uxSalesOrderHeaderDataGridView.Location = new System.Drawing.Point(0, 0);
			this.uxSalesOrderHeaderDataGridView.Name = "uxSalesOrderHeaderDataGridView";
			this.uxSalesOrderHeaderDataGridView.Size = new System.Drawing.Size(470, 300);
			this.uxSalesOrderHeaderDataGridView.TabIndex = 0;	
			this.uxSalesOrderHeaderDataGridView.BackgroundColor = System.Drawing.Color.WhiteSmoke;
			this.uxSalesOrderHeaderDataGridView.EnableHeadersVisualStyles = false;
			this.uxSalesOrderHeaderDataGridView.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnSalesOrderHeaderDataGridViewDataError);
			this.uxSalesOrderHeaderDataGridView.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnSalesOrderHeaderDataGridViewCellValueNeeded);
			this.uxSalesOrderHeaderDataGridView.CellValuePushed += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnSalesOrderHeaderDataGridViewCellValuePushed);
			
			//
			// uxSalesOrderIdDataGridViewColumn
			//
			this.uxSalesOrderIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxSalesOrderIdDataGridViewColumn.DataPropertyName = "SalesOrderId";
			this.uxSalesOrderIdDataGridViewColumn.HeaderText = "SalesOrderId";
			this.uxSalesOrderIdDataGridViewColumn.Name = "uxSalesOrderIdDataGridViewColumn";
			this.uxSalesOrderIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxSalesOrderIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxSalesOrderIdDataGridViewColumn.ReadOnly = true;		
			//
			// uxRevisionNumberDataGridViewColumn
			//
			this.uxRevisionNumberDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxRevisionNumberDataGridViewColumn.DataPropertyName = "RevisionNumber";
			this.uxRevisionNumberDataGridViewColumn.HeaderText = "RevisionNumber";
			this.uxRevisionNumberDataGridViewColumn.Name = "uxRevisionNumberDataGridViewColumn";
			this.uxRevisionNumberDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxRevisionNumberDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxRevisionNumberDataGridViewColumn.ReadOnly = false;		
			//
			// uxOrderDateDataGridViewColumn
			//
			this.uxOrderDateDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxOrderDateDataGridViewColumn.DataPropertyName = "OrderDate";
			this.uxOrderDateDataGridViewColumn.HeaderText = "OrderDate";
			this.uxOrderDateDataGridViewColumn.Name = "uxOrderDateDataGridViewColumn";
			this.uxOrderDateDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxOrderDateDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxOrderDateDataGridViewColumn.ReadOnly = false;		
			//
			// uxDueDateDataGridViewColumn
			//
			this.uxDueDateDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxDueDateDataGridViewColumn.DataPropertyName = "DueDate";
			this.uxDueDateDataGridViewColumn.HeaderText = "DueDate";
			this.uxDueDateDataGridViewColumn.Name = "uxDueDateDataGridViewColumn";
			this.uxDueDateDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxDueDateDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxDueDateDataGridViewColumn.ReadOnly = false;		
			//
			// uxShipDateDataGridViewColumn
			//
			this.uxShipDateDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxShipDateDataGridViewColumn.DataPropertyName = "ShipDate";
			this.uxShipDateDataGridViewColumn.HeaderText = "ShipDate";
			this.uxShipDateDataGridViewColumn.Name = "uxShipDateDataGridViewColumn";
			this.uxShipDateDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxShipDateDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxShipDateDataGridViewColumn.ReadOnly = false;		
			//
			// uxStatusDataGridViewColumn
			//
			this.uxStatusDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxStatusDataGridViewColumn.DataPropertyName = "Status";
			this.uxStatusDataGridViewColumn.HeaderText = "Status";
			this.uxStatusDataGridViewColumn.Name = "uxStatusDataGridViewColumn";
			this.uxStatusDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxStatusDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxStatusDataGridViewColumn.ReadOnly = false;		
			//
			// uxOnlineOrderFlagDataGridViewColumn
			//
			this.uxOnlineOrderFlagDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxOnlineOrderFlagDataGridViewColumn.DataPropertyName = "OnlineOrderFlag";
			this.uxOnlineOrderFlagDataGridViewColumn.HeaderText = "OnlineOrderFlag";
			this.uxOnlineOrderFlagDataGridViewColumn.Name = "uxOnlineOrderFlagDataGridViewColumn";
			this.uxOnlineOrderFlagDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxOnlineOrderFlagDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxOnlineOrderFlagDataGridViewColumn.ReadOnly = false;		
			//
			// uxSalesOrderNumberDataGridViewColumn
			//
			this.uxSalesOrderNumberDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxSalesOrderNumberDataGridViewColumn.DataPropertyName = "SalesOrderNumber";
			this.uxSalesOrderNumberDataGridViewColumn.HeaderText = "SalesOrderNumber";
			this.uxSalesOrderNumberDataGridViewColumn.Name = "uxSalesOrderNumberDataGridViewColumn";
			this.uxSalesOrderNumberDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxSalesOrderNumberDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxSalesOrderNumberDataGridViewColumn.ReadOnly = true;		
			//
			// uxPurchaseOrderNumberDataGridViewColumn
			//
			this.uxPurchaseOrderNumberDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxPurchaseOrderNumberDataGridViewColumn.DataPropertyName = "PurchaseOrderNumber";
			this.uxPurchaseOrderNumberDataGridViewColumn.HeaderText = "PurchaseOrderNumber";
			this.uxPurchaseOrderNumberDataGridViewColumn.Name = "uxPurchaseOrderNumberDataGridViewColumn";
			this.uxPurchaseOrderNumberDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxPurchaseOrderNumberDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxPurchaseOrderNumberDataGridViewColumn.ReadOnly = false;		
			//
			// uxAccountNumberDataGridViewColumn
			//
			this.uxAccountNumberDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxAccountNumberDataGridViewColumn.DataPropertyName = "AccountNumber";
			this.uxAccountNumberDataGridViewColumn.HeaderText = "AccountNumber";
			this.uxAccountNumberDataGridViewColumn.Name = "uxAccountNumberDataGridViewColumn";
			this.uxAccountNumberDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxAccountNumberDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxAccountNumberDataGridViewColumn.ReadOnly = false;		
			//
			// uxCustomerIdDataGridViewColumn
			//
			this.uxCustomerIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxCustomerIdDataGridViewColumn.DataPropertyName = "CustomerId";
			this.uxCustomerIdDataGridViewColumn.HeaderText = "CustomerId";
			this.uxCustomerIdDataGridViewColumn.Name = "uxCustomerIdDataGridViewColumn";
			this.uxCustomerIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxCustomerIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxCustomerIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxContactIdDataGridViewColumn
			//
			this.uxContactIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxContactIdDataGridViewColumn.DataPropertyName = "ContactId";
			this.uxContactIdDataGridViewColumn.HeaderText = "ContactId";
			this.uxContactIdDataGridViewColumn.Name = "uxContactIdDataGridViewColumn";
			this.uxContactIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxContactIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxContactIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxSalesPersonIdDataGridViewColumn
			//
			this.uxSalesPersonIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxSalesPersonIdDataGridViewColumn.DataPropertyName = "SalesPersonId";
			this.uxSalesPersonIdDataGridViewColumn.HeaderText = "SalesPersonId";
			this.uxSalesPersonIdDataGridViewColumn.Name = "uxSalesPersonIdDataGridViewColumn";
			this.uxSalesPersonIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxSalesPersonIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxSalesPersonIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxTerritoryIdDataGridViewColumn
			//
			this.uxTerritoryIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxTerritoryIdDataGridViewColumn.DataPropertyName = "TerritoryId";
			this.uxTerritoryIdDataGridViewColumn.HeaderText = "TerritoryId";
			this.uxTerritoryIdDataGridViewColumn.Name = "uxTerritoryIdDataGridViewColumn";
			this.uxTerritoryIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxTerritoryIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxTerritoryIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxBillToAddressIdDataGridViewColumn
			//
			this.uxBillToAddressIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxBillToAddressIdDataGridViewColumn.DataPropertyName = "BillToAddressId";
			this.uxBillToAddressIdDataGridViewColumn.HeaderText = "BillToAddressId";
			this.uxBillToAddressIdDataGridViewColumn.Name = "uxBillToAddressIdDataGridViewColumn";
			this.uxBillToAddressIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxBillToAddressIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxBillToAddressIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxShipToAddressIdDataGridViewColumn
			//
			this.uxShipToAddressIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxShipToAddressIdDataGridViewColumn.DataPropertyName = "ShipToAddressId";
			this.uxShipToAddressIdDataGridViewColumn.HeaderText = "ShipToAddressId";
			this.uxShipToAddressIdDataGridViewColumn.Name = "uxShipToAddressIdDataGridViewColumn";
			this.uxShipToAddressIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxShipToAddressIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxShipToAddressIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxShipMethodIdDataGridViewColumn
			//
			this.uxShipMethodIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxShipMethodIdDataGridViewColumn.DataPropertyName = "ShipMethodId";
			this.uxShipMethodIdDataGridViewColumn.HeaderText = "ShipMethodId";
			this.uxShipMethodIdDataGridViewColumn.Name = "uxShipMethodIdDataGridViewColumn";
			this.uxShipMethodIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxShipMethodIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxShipMethodIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxCreditCardIdDataGridViewColumn
			//
			this.uxCreditCardIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxCreditCardIdDataGridViewColumn.DataPropertyName = "CreditCardId";
			this.uxCreditCardIdDataGridViewColumn.HeaderText = "CreditCardId";
			this.uxCreditCardIdDataGridViewColumn.Name = "uxCreditCardIdDataGridViewColumn";
			this.uxCreditCardIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxCreditCardIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxCreditCardIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxCreditCardApprovalCodeDataGridViewColumn
			//
			this.uxCreditCardApprovalCodeDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxCreditCardApprovalCodeDataGridViewColumn.DataPropertyName = "CreditCardApprovalCode";
			this.uxCreditCardApprovalCodeDataGridViewColumn.HeaderText = "CreditCardApprovalCode";
			this.uxCreditCardApprovalCodeDataGridViewColumn.Name = "uxCreditCardApprovalCodeDataGridViewColumn";
			this.uxCreditCardApprovalCodeDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxCreditCardApprovalCodeDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxCreditCardApprovalCodeDataGridViewColumn.ReadOnly = false;		
			//
			// uxCurrencyRateIdDataGridViewColumn
			//
			this.uxCurrencyRateIdDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxCurrencyRateIdDataGridViewColumn.DataPropertyName = "CurrencyRateId";
			this.uxCurrencyRateIdDataGridViewColumn.HeaderText = "CurrencyRateId";
			this.uxCurrencyRateIdDataGridViewColumn.Name = "uxCurrencyRateIdDataGridViewColumn";
			this.uxCurrencyRateIdDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxCurrencyRateIdDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxCurrencyRateIdDataGridViewColumn.ReadOnly = false;		
			//
			// uxSubTotalDataGridViewColumn
			//
			this.uxSubTotalDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxSubTotalDataGridViewColumn.DataPropertyName = "SubTotal";
			this.uxSubTotalDataGridViewColumn.HeaderText = "SubTotal";
			this.uxSubTotalDataGridViewColumn.Name = "uxSubTotalDataGridViewColumn";
			this.uxSubTotalDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxSubTotalDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxSubTotalDataGridViewColumn.ReadOnly = false;		
			//
			// uxTaxAmtDataGridViewColumn
			//
			this.uxTaxAmtDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxTaxAmtDataGridViewColumn.DataPropertyName = "TaxAmt";
			this.uxTaxAmtDataGridViewColumn.HeaderText = "TaxAmt";
			this.uxTaxAmtDataGridViewColumn.Name = "uxTaxAmtDataGridViewColumn";
			this.uxTaxAmtDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxTaxAmtDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxTaxAmtDataGridViewColumn.ReadOnly = false;		
			//
			// uxFreightDataGridViewColumn
			//
			this.uxFreightDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxFreightDataGridViewColumn.DataPropertyName = "Freight";
			this.uxFreightDataGridViewColumn.HeaderText = "Freight";
			this.uxFreightDataGridViewColumn.Name = "uxFreightDataGridViewColumn";
			this.uxFreightDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxFreightDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxFreightDataGridViewColumn.ReadOnly = false;		
			//
			// uxTotalDueDataGridViewColumn
			//
			this.uxTotalDueDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxTotalDueDataGridViewColumn.DataPropertyName = "TotalDue";
			this.uxTotalDueDataGridViewColumn.HeaderText = "TotalDue";
			this.uxTotalDueDataGridViewColumn.Name = "uxTotalDueDataGridViewColumn";
			this.uxTotalDueDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxTotalDueDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxTotalDueDataGridViewColumn.ReadOnly = true;		
			//
			// uxCommentDataGridViewColumn
			//
			this.uxCommentDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxCommentDataGridViewColumn.DataPropertyName = "Comment";
			this.uxCommentDataGridViewColumn.HeaderText = "Comment";
			this.uxCommentDataGridViewColumn.Name = "uxCommentDataGridViewColumn";
			this.uxCommentDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxCommentDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxCommentDataGridViewColumn.ReadOnly = false;		
			//
			// uxRowguidDataGridViewColumn
			//
			this.uxRowguidDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxRowguidDataGridViewColumn.DataPropertyName = "Rowguid";
			this.uxRowguidDataGridViewColumn.HeaderText = "Rowguid";
			this.uxRowguidDataGridViewColumn.Name = "uxRowguidDataGridViewColumn";
			this.uxRowguidDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxRowguidDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxRowguidDataGridViewColumn.ReadOnly = true;		
			//
			// uxModifiedDateDataGridViewColumn
			//
			this.uxModifiedDateDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxModifiedDateDataGridViewColumn.DataPropertyName = "ModifiedDate";
			this.uxModifiedDateDataGridViewColumn.HeaderText = "ModifiedDate";
			this.uxModifiedDateDataGridViewColumn.Name = "uxModifiedDateDataGridViewColumn";
			this.uxModifiedDateDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxModifiedDateDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxModifiedDateDataGridViewColumn.ReadOnly = false;		
			//
			// uxBillToAddressIdDataGridViewColumn
			//				
			this.uxBillToAddressIdDataGridViewColumn.DisplayMember = "AddressLine1";	
			this.uxBillToAddressIdDataGridViewColumn.ValueMember = "AddressId";	
			this.uxBillToAddressIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxBillToAddressIdDataGridViewColumn.DataSource = uxBillToAddressIdBindingSource;				
				
			//
			// uxShipToAddressIdDataGridViewColumn
			//				
			this.uxShipToAddressIdDataGridViewColumn.DisplayMember = "AddressLine1";	
			this.uxShipToAddressIdDataGridViewColumn.ValueMember = "AddressId";	
			this.uxShipToAddressIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxShipToAddressIdDataGridViewColumn.DataSource = uxShipToAddressIdBindingSource;				
				
			//
			// uxContactIdDataGridViewColumn
			//				
			this.uxContactIdDataGridViewColumn.DisplayMember = "NameStyle";	
			this.uxContactIdDataGridViewColumn.ValueMember = "ContactId";	
			this.uxContactIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxContactIdDataGridViewColumn.DataSource = uxContactIdBindingSource;				
				
			//
			// uxCreditCardIdDataGridViewColumn
			//				
			this.uxCreditCardIdDataGridViewColumn.DisplayMember = "CardType";	
			this.uxCreditCardIdDataGridViewColumn.ValueMember = "CreditCardId";	
			this.uxCreditCardIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxCreditCardIdDataGridViewColumn.DataSource = uxCreditCardIdBindingSource;				
				
			//
			// uxCurrencyRateIdDataGridViewColumn
			//				
			this.uxCurrencyRateIdDataGridViewColumn.DisplayMember = "CurrencyRateDate";	
			this.uxCurrencyRateIdDataGridViewColumn.ValueMember = "CurrencyRateId";	
			this.uxCurrencyRateIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxCurrencyRateIdDataGridViewColumn.DataSource = uxCurrencyRateIdBindingSource;				
				
			//
			// uxCustomerIdDataGridViewColumn
			//				
			this.uxCustomerIdDataGridViewColumn.DisplayMember = "TerritoryId";	
			this.uxCustomerIdDataGridViewColumn.ValueMember = "CustomerId";	
			this.uxCustomerIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxCustomerIdDataGridViewColumn.DataSource = uxCustomerIdBindingSource;				
				
			//
			// uxSalesPersonIdDataGridViewColumn
			//				
			this.uxSalesPersonIdDataGridViewColumn.DisplayMember = "TerritoryId";	
			this.uxSalesPersonIdDataGridViewColumn.ValueMember = "SalesPersonId";	
			this.uxSalesPersonIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxSalesPersonIdDataGridViewColumn.DataSource = uxSalesPersonIdBindingSource;				
				
			//
			// uxTerritoryIdDataGridViewColumn
			//				
			this.uxTerritoryIdDataGridViewColumn.DisplayMember = "Name";	
			this.uxTerritoryIdDataGridViewColumn.ValueMember = "TerritoryId";	
			this.uxTerritoryIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxTerritoryIdDataGridViewColumn.DataSource = uxTerritoryIdBindingSource;				
				
			//
			// uxShipMethodIdDataGridViewColumn
			//				
			this.uxShipMethodIdDataGridViewColumn.DisplayMember = "Name";	
			this.uxShipMethodIdDataGridViewColumn.ValueMember = "ShipMethodId";	
			this.uxShipMethodIdDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
			//uxShipMethodIdDataGridViewColumn.DataSource = uxShipMethodIdBindingSource;				
				
			
			// this
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.uxSalesOrderHeaderDataGridView);
			this.Name = "SalesOrderHeaderDataGridView";
			this.Size = new System.Drawing.Size(470, 300);
			//((System.ComponentModel.ISupportInitialize)(this.uxBillToAddressIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxShipToAddressIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxContactIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxCreditCardIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxCurrencyRateIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxCustomerIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxSalesPersonIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxTerritoryIdBindingSource)).EndInit();
			//((System.ComponentModel.ISupportInitialize)(this.uxShipMethodIdBindingSource)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxSalesOrderHeaderErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxSalesOrderHeaderDataGridView)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxSalesOrderHeaderBindingSource)).EndInit();
			this.ResumeLayout(false);
		}
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ImportClassV2));
     this.wizard1 = new DevComponents.DotNetBar.Wizard();
     this.wizardPage1 = new DevComponents.DotNetBar.WizardPage();
     this.chkTrim = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.linkLabel2 = new System.Windows.Forms.LinkLabel();
     this.lblReqFields = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.txtFile = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.wizardPage2 = new DevComponents.DotNetBar.WizardPage();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.listView1 = new System.Windows.Forms.ListView();
     this.wizardPage3 = new DevComponents.DotNetBar.WizardPage();
     this.linkLabel3 = new System.Windows.Forms.LinkLabel();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.lblErrCount = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.lblWarningCount = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.progressBarX1 = new DevComponents.DotNetBar.Controls.ProgressBarX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.SelectSourceFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.errorFile = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorKey = new System.Windows.Forms.ErrorProvider(this.components);
     this.wizard1.SuspendLayout();
     this.wizardPage1.SuspendLayout();
     this.wizardPage2.SuspendLayout();
     this.wizardPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorKey)).BeginInit();
     this.SuspendLayout();
     //
     // wizard1
     //
     this.wizard1.BackButtonText = "上一步";
     this.wizard1.BackColor = System.Drawing.Color.Transparent;
     this.wizard1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("wizard1.BackgroundImage")));
     this.wizard1.ButtonStyle = DevComponents.DotNetBar.eWizardStyle.Office2007;
     this.wizard1.CancelButtonText = "關閉";
     this.wizard1.Cursor = System.Windows.Forms.Cursors.Default;
     this.wizard1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.wizard1.FinishButtonTabIndex = 3;
     this.wizard1.FinishButtonText = "開始匯入";
     this.wizard1.FooterHeight = 33;
     //
     //
     //
     this.wizard1.FooterStyle.BackColor = System.Drawing.Color.Transparent;
     this.wizard1.FooterStyle.Class = "";
     this.wizard1.FooterStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizard1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(57)))), ((int)(((byte)(129)))));
     this.wizard1.HeaderCaptionFont = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.wizard1.HeaderDescriptionFont = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.wizard1.HeaderDescriptionIndent = 16;
     this.wizard1.HeaderImage = ((System.Drawing.Image)(resources.GetObject("wizard1.HeaderImage")));
     //
     //
     //
     this.wizard1.HeaderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(215)))), ((int)(((byte)(243)))));
     this.wizard1.HeaderStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(219)))), ((int)(((byte)(241)))), ((int)(((byte)(254)))));
     this.wizard1.HeaderStyle.BackColorGradientAngle = 90;
     this.wizard1.HeaderStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.wizard1.HeaderStyle.BorderBottomColor = System.Drawing.Color.FromArgb(((int)(((byte)(121)))), ((int)(((byte)(157)))), ((int)(((byte)(182)))));
     this.wizard1.HeaderStyle.BorderBottomWidth = 1;
     this.wizard1.HeaderStyle.BorderColor = System.Drawing.SystemColors.Control;
     this.wizard1.HeaderStyle.BorderLeftWidth = 1;
     this.wizard1.HeaderStyle.BorderRightWidth = 1;
     this.wizard1.HeaderStyle.BorderTopWidth = 1;
     this.wizard1.HeaderStyle.Class = "";
     this.wizard1.HeaderStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizard1.HeaderStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.wizard1.HeaderStyle.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.wizard1.HelpButtonVisible = false;
     this.wizard1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.wizard1.Location = new System.Drawing.Point(0, 0);
     this.wizard1.Name = "wizard1";
     this.wizard1.NextButtonText = "下一步";
     this.wizard1.Size = new System.Drawing.Size(464, 323);
     this.wizard1.TabIndex = 0;
     this.wizard1.WizardPages.AddRange(new DevComponents.DotNetBar.WizardPage[] {
     this.wizardPage1,
     this.wizardPage2,
     this.wizardPage3});
     this.wizard1.WizardPageChanged += new DevComponents.DotNetBar.WizardPageChangeEventHandler(this.wizard1_WizardPageChanged);
     //
     // wizardPage1
     //
     this.wizardPage1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.wizardPage1.AntiAlias = false;
     this.wizardPage1.BackButtonVisible = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage1.BackColor = System.Drawing.Color.Transparent;
     this.wizardPage1.Controls.Add(this.chkTrim);
     this.wizardPage1.Controls.Add(this.linkLabel2);
     this.wizardPage1.Controls.Add(this.lblReqFields);
     this.wizardPage1.Controls.Add(this.labelX1);
     this.wizardPage1.Controls.Add(this.buttonX1);
     this.wizardPage1.Controls.Add(this.txtFile);
     this.wizardPage1.Location = new System.Drawing.Point(7, 72);
     this.wizardPage1.Name = "wizardPage1";
     this.wizardPage1.NextButtonEnabled = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage1.PageDescription = "選取匯入檔案";
     this.wizardPage1.Size = new System.Drawing.Size(450, 206);
     //
     //
     //
     this.wizardPage1.Style.Class = "";
     this.wizardPage1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage1.StyleMouseDown.Class = "";
     this.wizardPage1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage1.StyleMouseOver.Class = "";
     this.wizardPage1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizardPage1.TabIndex = 7;
     //
     // chkTrim
     //
     this.chkTrim.AutoSize = true;
     //
     //
     //
     this.chkTrim.BackgroundStyle.Class = "";
     this.chkTrim.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkTrim.Checked = true;
     this.chkTrim.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkTrim.CheckValue = "Y";
     this.chkTrim.Location = new System.Drawing.Point(35, 65);
     this.chkTrim.Name = "chkTrim";
     this.chkTrim.Size = new System.Drawing.Size(161, 21);
     this.chkTrim.TabIndex = 4;
     this.chkTrim.Text = "自動過慮頭尾空白字元";
     this.chkTrim.CheckedChanged += new System.EventHandler(this.chkTrim_CheckedChanged);
     //
     // linkLabel2
     //
     this.linkLabel2.AutoSize = true;
     this.linkLabel2.Location = new System.Drawing.Point(357, 65);
     this.linkLabel2.Name = "linkLabel2";
     this.linkLabel2.Size = new System.Drawing.Size(60, 17);
     this.linkLabel2.TabIndex = 3;
     this.linkLabel2.TabStop = true;
     this.linkLabel2.Text = "重新整理";
     this.linkLabel2.Visible = false;
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // lblReqFields
     //
     this.lblReqFields.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.lblReqFields.BackgroundStyle.Class = "";
     this.lblReqFields.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblReqFields.Location = new System.Drawing.Point(105, 85);
     this.lblReqFields.Name = "lblReqFields";
     this.lblReqFields.Size = new System.Drawing.Size(312, 121);
     this.lblReqFields.TabIndex = 2;
     this.lblReqFields.TextLineAlignment = System.Drawing.StringAlignment.Near;
     this.lblReqFields.WordWrap = true;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(35, 85);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(74, 21);
     this.labelX1.TabIndex = 2;
     this.labelX1.Text = "必要欄位:";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location = new System.Drawing.Point(394, 36);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(23, 25);
     this.buttonX1.TabIndex = 1;
     this.buttonX1.Text = "‧‧‧";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // txtFile
     //
     this.txtFile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.txtFile.Border.Class = "TextBoxBorder";
     this.txtFile.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtFile.Location = new System.Drawing.Point(35, 36);
     this.txtFile.Name = "txtFile";
     this.txtFile.Size = new System.Drawing.Size(353, 25);
     this.txtFile.TabIndex = 0;
     this.txtFile.TextChanged += new System.EventHandler(this.txtFile_TextChanged);
     //
     // wizardPage2
     //
     this.wizardPage2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.wizardPage2.AntiAlias = false;
     this.wizardPage2.BackColor = System.Drawing.Color.Transparent;
     this.wizardPage2.Controls.Add(this.checkBox1);
     this.wizardPage2.Controls.Add(this.listView1);
     this.wizardPage2.Location = new System.Drawing.Point(7, 72);
     this.wizardPage2.Name = "wizardPage2";
     this.wizardPage2.PageDescription = "選取匯入欄位";
     this.wizardPage2.Size = new System.Drawing.Size(450, 206);
     //
     //
     //
     this.wizardPage2.Style.Class = "";
     this.wizardPage2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage2.StyleMouseDown.Class = "";
     this.wizardPage2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage2.StyleMouseOver.Class = "";
     this.wizardPage2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizardPage2.TabIndex = 8;
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.BackColor = System.Drawing.Color.Transparent;
     this.checkBox1.Location = new System.Drawing.Point(0, -2);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(72, 16);
     this.checkBox1.TabIndex = 1;
     this.checkBox1.Text = "全部選取";
     this.checkBox1.UseVisualStyleBackColor = false;
     //
     // listView1
     //
     this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.listView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.listView1.CheckBoxes = true;
     this.listView1.Location = new System.Drawing.Point(0, 17);
     this.listView1.Name = "listView1";
     this.listView1.ShowGroups = false;
     this.listView1.Size = new System.Drawing.Size(450, 189);
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.List;
     //
     // wizardPage3
     //
     this.wizardPage3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.wizardPage3.AntiAlias = false;
     this.wizardPage3.BackColor = System.Drawing.Color.Transparent;
     this.wizardPage3.Controls.Add(this.linkLabel3);
     this.wizardPage3.Controls.Add(this.linkLabel1);
     this.wizardPage3.Controls.Add(this.lblErrCount);
     this.wizardPage3.Controls.Add(this.labelX4);
     this.wizardPage3.Controls.Add(this.lblWarningCount);
     this.wizardPage3.Controls.Add(this.labelX3);
     this.wizardPage3.Controls.Add(this.progressBarX1);
     this.wizardPage3.Controls.Add(this.labelX2);
     this.wizardPage3.FinishButtonEnabled = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage3.Location = new System.Drawing.Point(7, 72);
     this.wizardPage3.Name = "wizardPage3";
     this.wizardPage3.NextButtonVisible = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage3.PageDescription = "驗證匯入資料";
     this.wizardPage3.Size = new System.Drawing.Size(450, 206);
     //
     //
     //
     this.wizardPage3.Style.Class = "";
     this.wizardPage3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage3.StyleMouseDown.Class = "";
     this.wizardPage3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage3.StyleMouseOver.Class = "";
     this.wizardPage3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizardPage3.TabIndex = 9;
     this.wizardPage3.AfterPageDisplayed += new DevComponents.DotNetBar.WizardPageChangeEventHandler(this.wizardPage3_AfterPageDisplayed);
     this.wizardPage3.BackButtonClick += new System.ComponentModel.CancelEventHandler(this.wizardPage3_BackButtonClick);
     this.wizardPage3.FinishButtonClick += new System.ComponentModel.CancelEventHandler(this.wizardPage3_FinishButtonClick);
     //
     // linkLabel3
     //
     this.linkLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabel3.AutoSize = true;
     this.linkLabel3.Location = new System.Drawing.Point(353, 187);
     this.linkLabel3.Name = "linkLabel3";
     this.linkLabel3.Size = new System.Drawing.Size(60, 17);
     this.linkLabel3.TabIndex = 4;
     this.linkLabel3.TabStop = true;
     this.linkLabel3.Text = "終止驗證";
     this.linkLabel3.Visible = false;
     this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
     //
     // linkLabel1
     //
     this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.Location = new System.Drawing.Point(314, 187);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(99, 17);
     this.linkLabel1.TabIndex = 3;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "檢視驗證後資料";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // lblErrCount
     //
     this.lblErrCount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblErrCount.AutoSize = true;
     //
     //
     //
     this.lblErrCount.BackgroundStyle.Class = "";
     this.lblErrCount.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblErrCount.Location = new System.Drawing.Point(159, 139);
     this.lblErrCount.Name = "lblErrCount";
     this.lblErrCount.Size = new System.Drawing.Size(15, 21);
     this.lblErrCount.TabIndex = 2;
     this.lblErrCount.Text = "0";
     //
     // labelX4
     //
     this.labelX4.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX4.AutoSize = true;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(58, 139);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(101, 21);
     this.labelX4.TabIndex = 2;
     this.labelX4.Text = "錯誤資料筆數:";
     //
     // lblWarningCount
     //
     this.lblWarningCount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblWarningCount.AutoSize = true;
     //
     //
     //
     this.lblWarningCount.BackgroundStyle.Class = "";
     this.lblWarningCount.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblWarningCount.Location = new System.Drawing.Point(159, 101);
     this.lblWarningCount.Name = "lblWarningCount";
     this.lblWarningCount.Size = new System.Drawing.Size(15, 21);
     this.lblWarningCount.TabIndex = 2;
     this.lblWarningCount.Text = "0";
     //
     // labelX3
     //
     this.labelX3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(58, 101);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(101, 21);
     this.labelX3.TabIndex = 2;
     this.labelX3.Text = "警告資料筆數:";
     //
     // progressBarX1
     //
     this.progressBarX1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.progressBarX1.BackgroundStyle.Class = "";
     this.progressBarX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.progressBarX1.Location = new System.Drawing.Point(118, 30);
     this.progressBarX1.Name = "progressBarX1";
     this.progressBarX1.Size = new System.Drawing.Size(295, 23);
     this.progressBarX1.TabIndex = 1;
     this.progressBarX1.Text = "progressBarX1";
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(37, 32);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(74, 21);
     this.labelX2.TabIndex = 0;
     this.labelX2.Text = "資料驗證中";
     //
     // SelectSourceFileDialog
     //
     this.SelectSourceFileDialog.Filter = "Excel 檔案 (*.xls)| *.xls";
     //
     // errorFile
     //
     this.errorFile.BlinkRate = 0;
     this.errorFile.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorFile.ContainerControl = this;
     //
     // errorKey
     //
     this.errorKey.ContainerControl = this;
     //
     // ImportClassV2
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(464, 323);
     this.Controls.Add(this.wizard1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "ImportClassV2";
     this.Text = "";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ImportStudent_FormClosed);
     this.wizard1.ResumeLayout(false);
     this.wizardPage1.ResumeLayout(false);
     this.wizardPage1.PerformLayout();
     this.wizardPage2.ResumeLayout(false);
     this.wizardPage2.PerformLayout();
     this.wizardPage3.ResumeLayout(false);
     this.wizardPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorKey)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label label14;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmClientes));
     this.grpCampos = new System.Windows.Forms.GroupBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.txtContactoCLI = new System.Windows.Forms.TextBox();
     this.txtNombreCLI = new System.Windows.Forms.TextBox();
     this.txtApellidoCLI = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtTransporteCLI = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtCorreoCLI = new System.Windows.Forms.TextBox();
     this.txtMovilCLI = new System.Windows.Forms.TextBox();
     this.txtTelefonoCLI = new System.Windows.Forms.TextBox();
     this.txtIdClienteCLI = new System.Windows.Forms.TextBox();
     this.txtFechaNacCLI = new System.Windows.Forms.MaskedTextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.txtRazonSocialCLI = new System.Windows.Forms.TextBox();
     this.cmbCondicion = new System.Windows.Forms.ComboBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.txtCUIT = new System.Windows.Forms.TextBox();
     this.gvwDatos = new System.Windows.Forms.DataGridView();
     this.grpBotones = new System.Windows.Forms.GroupBox();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.btnSalir = new System.Windows.Forms.Button();
     this.btnGrabar = new System.Windows.Forms.Button();
     this.btnBorrar = new System.Windows.Forms.Button();
     this.btnEditar = new System.Windows.Forms.Button();
     this.btnNuevo = new System.Windows.Forms.Button();
     this.btnBuscar = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtParametros = new System.Windows.Forms.TextBox();
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.txtProvinciaCLI = new System.Windows.Forms.TextBox();
     this.txtLocalidadCLI = new System.Windows.Forms.TextBox();
     this.txtDireccionCLI = new System.Windows.Forms.TextBox();
     label14 = new System.Windows.Forms.Label();
     this.grpCampos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvwDatos)).BeginInit();
     this.grpBotones.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // label14
     //
     label14.AutoSize = true;
     label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label14.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     label14.Location = new System.Drawing.Point(10, 70);
     label14.Name = "label14";
     label14.Size = new System.Drawing.Size(51, 15);
     label14.TabIndex = 27;
     label14.Text = "Apellido";
     //
     // grpCampos
     //
     this.grpCampos.Controls.Add(this.label9);
     this.grpCampos.Controls.Add(this.label8);
     this.grpCampos.Controls.Add(this.label5);
     this.grpCampos.Controls.Add(this.txtProvinciaCLI);
     this.grpCampos.Controls.Add(this.txtLocalidadCLI);
     this.grpCampos.Controls.Add(this.txtDireccionCLI);
     this.grpCampos.Controls.Add(label14);
     this.grpCampos.Controls.Add(this.label6);
     this.grpCampos.Controls.Add(this.label12);
     this.grpCampos.Controls.Add(this.label10);
     this.grpCampos.Controls.Add(this.label3);
     this.grpCampos.Controls.Add(this.label1);
     this.grpCampos.Controls.Add(this.txtContactoCLI);
     this.grpCampos.Controls.Add(this.txtNombreCLI);
     this.grpCampos.Controls.Add(this.txtApellidoCLI);
     this.grpCampos.Controls.Add(this.label4);
     this.grpCampos.Controls.Add(this.txtTransporteCLI);
     this.grpCampos.Controls.Add(this.label2);
     this.grpCampos.Controls.Add(this.txtCorreoCLI);
     this.grpCampos.Controls.Add(this.txtMovilCLI);
     this.grpCampos.Controls.Add(this.txtTelefonoCLI);
     this.grpCampos.Controls.Add(this.txtIdClienteCLI);
     this.grpCampos.Location = new System.Drawing.Point(12, 199);
     this.grpCampos.Name = "grpCampos";
     this.grpCampos.Size = new System.Drawing.Size(404, 321);
     this.grpCampos.TabIndex = 0;
     this.grpCampos.TabStop = false;
     this.grpCampos.Enter += new System.EventHandler(this.grpCampos_Enter);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label6.Location = new System.Drawing.Point(10, 44);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(52, 15);
     this.label6.TabIndex = 27;
     this.label6.Text = "Nombre";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label12.Location = new System.Drawing.Point(10, 97);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(44, 15);
     this.label12.TabIndex = 25;
     this.label12.Text = "Correo";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label10.Location = new System.Drawing.Point(10, 233);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(36, 15);
     this.label10.TabIndex = 24;
     this.label10.Text = "Móvil";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label3.Location = new System.Drawing.Point(10, 206);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(55, 15);
     this.label3.TabIndex = 24;
     this.label3.Text = "Teléfono";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label1.Location = new System.Drawing.Point(10, 19);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(59, 15);
     this.label1.TabIndex = 17;
     this.label1.Text = "Nº cliente";
     //
     // txtContactoCLI
     //
     this.txtContactoCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtContactoCLI.Location = new System.Drawing.Point(90, 285);
     this.txtContactoCLI.Name = "txtContactoCLI";
     this.txtContactoCLI.Size = new System.Drawing.Size(295, 20);
     this.txtContactoCLI.TabIndex = 10;
     this.txtContactoCLI.TabStop = false;
     this.txtContactoCLI.Visible = false;
     //
     // txtNombreCLI
     //
     this.txtNombreCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtNombreCLI.Location = new System.Drawing.Point(90, 44);
     this.txtNombreCLI.Name = "txtNombreCLI";
     this.txtNombreCLI.Size = new System.Drawing.Size(295, 20);
     this.txtNombreCLI.TabIndex = 1;
     //
     // txtApellidoCLI
     //
     this.txtApellidoCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtApellidoCLI.Location = new System.Drawing.Point(90, 70);
     this.txtApellidoCLI.Name = "txtApellidoCLI";
     this.txtApellidoCLI.Size = new System.Drawing.Size(295, 20);
     this.txtApellidoCLI.TabIndex = 2;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label4.Location = new System.Drawing.Point(10, 260);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(66, 15);
     this.label4.TabIndex = 25;
     this.label4.Text = "Transporte";
     this.label4.Visible = false;
     //
     // txtTransporteCLI
     //
     this.txtTransporteCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtTransporteCLI.Location = new System.Drawing.Point(90, 259);
     this.txtTransporteCLI.Name = "txtTransporteCLI";
     this.txtTransporteCLI.Size = new System.Drawing.Size(295, 20);
     this.txtTransporteCLI.TabIndex = 9;
     this.txtTransporteCLI.TabStop = false;
     this.txtTransporteCLI.Visible = false;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label2.Location = new System.Drawing.Point(10, 285);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(55, 15);
     this.label2.TabIndex = 23;
     this.label2.Text = "Contacto";
     this.label2.Visible = false;
     //
     // txtCorreoCLI
     //
     this.txtCorreoCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Lower;
     this.txtCorreoCLI.Location = new System.Drawing.Point(90, 96);
     this.txtCorreoCLI.Name = "txtCorreoCLI";
     this.txtCorreoCLI.Size = new System.Drawing.Size(295, 20);
     this.txtCorreoCLI.TabIndex = 3;
     //
     // txtMovilCLI
     //
     this.txtMovilCLI.Location = new System.Drawing.Point(90, 232);
     this.txtMovilCLI.Name = "txtMovilCLI";
     this.txtMovilCLI.Size = new System.Drawing.Size(295, 20);
     this.txtMovilCLI.TabIndex = 8;
     //
     // txtTelefonoCLI
     //
     this.txtTelefonoCLI.Location = new System.Drawing.Point(90, 206);
     this.txtTelefonoCLI.Name = "txtTelefonoCLI";
     this.txtTelefonoCLI.Size = new System.Drawing.Size(295, 20);
     this.txtTelefonoCLI.TabIndex = 7;
     //
     // txtIdClienteCLI
     //
     this.txtIdClienteCLI.Location = new System.Drawing.Point(90, 18);
     this.txtIdClienteCLI.Name = "txtIdClienteCLI";
     this.txtIdClienteCLI.Size = new System.Drawing.Size(295, 20);
     this.txtIdClienteCLI.TabIndex = 0;
     //
     // txtFechaNacCLI
     //
     this.txtFechaNacCLI.Location = new System.Drawing.Point(127, 552);
     this.txtFechaNacCLI.Mask = "00/00/0000";
     this.txtFechaNacCLI.Name = "txtFechaNacCLI";
     this.txtFechaNacCLI.Size = new System.Drawing.Size(270, 20);
     this.txtFechaNacCLI.TabIndex = 7;
     this.txtFechaNacCLI.TabStop = false;
     this.txtFechaNacCLI.ValidatingType = typeof(System.DateTime);
     this.txtFechaNacCLI.Visible = false;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label11.Location = new System.Drawing.Point(22, 552);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(56, 15);
     this.label11.TabIndex = 23;
     this.label11.Text = "Fecha N.";
     this.label11.Visible = false;
     //
     // txtRazonSocialCLI
     //
     this.txtRazonSocialCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtRazonSocialCLI.Location = new System.Drawing.Point(407, 552);
     this.txtRazonSocialCLI.Name = "txtRazonSocialCLI";
     this.txtRazonSocialCLI.Size = new System.Drawing.Size(200, 20);
     this.txtRazonSocialCLI.TabIndex = 1;
     this.txtRazonSocialCLI.Visible = false;
     //
     // cmbCondicion
     //
     this.cmbCondicion.FormattingEnabled = true;
     this.cmbCondicion.Location = new System.Drawing.Point(270, 527);
     this.cmbCondicion.Name = "cmbCondicion";
     this.cmbCondicion.Size = new System.Drawing.Size(159, 21);
     this.cmbCondicion.TabIndex = 28;
     this.cmbCondicion.TabStop = false;
     this.cmbCondicion.Visible = false;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label13.Location = new System.Drawing.Point(184, 528);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(80, 15);
     this.label13.TabIndex = 27;
     this.label13.Text = "Condicion iva";
     this.label13.Visible = false;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label7.Location = new System.Drawing.Point(15, 528);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(34, 15);
     this.label7.TabIndex = 18;
     this.label7.Text = "CUIT";
     this.label7.Visible = false;
     //
     // txtCUIT
     //
     this.txtCUIT.Location = new System.Drawing.Point(55, 526);
     this.txtCUIT.Name = "txtCUIT";
     this.txtCUIT.Size = new System.Drawing.Size(121, 20);
     this.txtCUIT.TabIndex = 2;
     this.txtCUIT.TabStop = false;
     this.txtCUIT.Visible = false;
     //
     // gvwDatos
     //
     this.gvwDatos.AllowUserToAddRows = false;
     this.gvwDatos.AllowUserToDeleteRows = false;
     this.gvwDatos.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.gvwDatos.Location = new System.Drawing.Point(12, 17);
     this.gvwDatos.Name = "gvwDatos";
     this.gvwDatos.ReadOnly = true;
     this.gvwDatos.Size = new System.Drawing.Size(615, 172);
     this.gvwDatos.TabIndex = 0;
     this.gvwDatos.Text = "DataGridView1";
     //
     // grpBotones
     //
     this.grpBotones.Controls.Add(this.btnCancelar);
     this.grpBotones.Controls.Add(this.btnSalir);
     this.grpBotones.Controls.Add(this.btnGrabar);
     this.grpBotones.Controls.Add(this.btnBorrar);
     this.grpBotones.Controls.Add(this.btnEditar);
     this.grpBotones.Controls.Add(this.btnNuevo);
     this.grpBotones.Controls.Add(this.btnBuscar);
     this.grpBotones.Location = new System.Drawing.Point(427, 259);
     this.grpBotones.Name = "grpBotones";
     this.grpBotones.Size = new System.Drawing.Size(200, 261);
     this.grpBotones.TabIndex = 1;
     this.grpBotones.TabStop = false;
     //
     // btnCancelar
     //
     this.btnCancelar.Location = new System.Drawing.Point(20, 185);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(160, 26);
     this.btnCancelar.TabIndex = 5;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // btnSalir
     //
     this.btnSalir.Location = new System.Drawing.Point(20, 217);
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(160, 26);
     this.btnSalir.TabIndex = 6;
     this.btnSalir.Text = "Salir";
     this.btnSalir.UseVisualStyleBackColor = true;
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // btnGrabar
     //
     this.btnGrabar.Location = new System.Drawing.Point(20, 153);
     this.btnGrabar.Name = "btnGrabar";
     this.btnGrabar.Size = new System.Drawing.Size(160, 26);
     this.btnGrabar.TabIndex = 4;
     this.btnGrabar.Text = "Grabar";
     this.btnGrabar.UseVisualStyleBackColor = true;
     this.btnGrabar.Click += new System.EventHandler(this.btnGrabar_Click);
     //
     // btnBorrar
     //
     this.btnBorrar.Location = new System.Drawing.Point(20, 121);
     this.btnBorrar.Name = "btnBorrar";
     this.btnBorrar.Size = new System.Drawing.Size(160, 26);
     this.btnBorrar.TabIndex = 3;
     this.btnBorrar.Text = "Borrar";
     this.btnBorrar.UseVisualStyleBackColor = true;
     this.btnBorrar.Click += new System.EventHandler(this.btnBorrar_Click);
     //
     // btnEditar
     //
     this.btnEditar.Location = new System.Drawing.Point(20, 89);
     this.btnEditar.Name = "btnEditar";
     this.btnEditar.Size = new System.Drawing.Size(160, 26);
     this.btnEditar.TabIndex = 2;
     this.btnEditar.Text = "Editar";
     this.btnEditar.UseVisualStyleBackColor = true;
     this.btnEditar.Click += new System.EventHandler(this.btnEditar_Click);
     //
     // btnNuevo
     //
     this.btnNuevo.Location = new System.Drawing.Point(20, 57);
     this.btnNuevo.Name = "btnNuevo";
     this.btnNuevo.Size = new System.Drawing.Size(160, 26);
     this.btnNuevo.TabIndex = 1;
     this.btnNuevo.Text = "Nuevo";
     this.btnNuevo.UseVisualStyleBackColor = true;
     this.btnNuevo.Click += new System.EventHandler(this.btnNuevo_Click);
     //
     // btnBuscar
     //
     this.btnBuscar.Location = new System.Drawing.Point(20, 25);
     this.btnBuscar.Name = "btnBuscar";
     this.btnBuscar.Size = new System.Drawing.Size(160, 26);
     this.btnBuscar.TabIndex = 0;
     this.btnBuscar.Text = "Buscar";
     this.btnBuscar.UseVisualStyleBackColor = true;
     this.btnBuscar.Click += new System.EventHandler(this.btnBuscar_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.txtParametros);
     this.groupBox1.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.groupBox1.Location = new System.Drawing.Point(427, 199);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(200, 54);
     this.groupBox1.TabIndex = 3;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Buscar";
     //
     // txtParametros
     //
     this.txtParametros.Location = new System.Drawing.Point(6, 20);
     this.txtParametros.Name = "txtParametros";
     this.txtParametros.Size = new System.Drawing.Size(188, 20);
     this.txtParametros.TabIndex = 0;
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem = null;
     this.bindingNavigator1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2});
     this.bindingNavigator1.Location = new System.Drawing.Point(0, 532);
     this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name = "bindingNavigator1";
     this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.Size = new System.Drawing.Size(639, 25);
     this.bindingNavigator1.TabIndex = 29;
     this.bindingNavigator1.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(38, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Número total de elementos";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 21);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Mover último";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label9.Location = new System.Drawing.Point(10, 175);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(57, 15);
     this.label9.TabIndex = 31;
     this.label9.Text = "Provincia";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label8.Location = new System.Drawing.Point(10, 149);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(61, 15);
     this.label8.TabIndex = 32;
     this.label8.Text = "Localidad";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.label5.Location = new System.Drawing.Point(10, 123);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(59, 15);
     this.label5.TabIndex = 33;
     this.label5.Text = "Dirección";
     //
     // txtProvinciaCLI
     //
     this.txtProvinciaCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtProvinciaCLI.Location = new System.Drawing.Point(90, 175);
     this.txtProvinciaCLI.Name = "txtProvinciaCLI";
     this.txtProvinciaCLI.Size = new System.Drawing.Size(295, 20);
     this.txtProvinciaCLI.TabIndex = 6;
     //
     // txtLocalidadCLI
     //
     this.txtLocalidadCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtLocalidadCLI.Location = new System.Drawing.Point(90, 149);
     this.txtLocalidadCLI.Name = "txtLocalidadCLI";
     this.txtLocalidadCLI.Size = new System.Drawing.Size(295, 20);
     this.txtLocalidadCLI.TabIndex = 5;
     //
     // txtDireccionCLI
     //
     this.txtDireccionCLI.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtDireccionCLI.Location = new System.Drawing.Point(90, 123);
     this.txtDireccionCLI.Name = "txtDireccionCLI";
     this.txtDireccionCLI.Size = new System.Drawing.Size(295, 20);
     this.txtDireccionCLI.TabIndex = 4;
     //
     // frmClientes
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(639, 557);
     this.ControlBox = false;
     this.Controls.Add(this.cmbCondicion);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.bindingNavigator1);
     this.Controls.Add(this.txtFechaNacCLI);
     this.Controls.Add(this.grpCampos);
     this.Controls.Add(this.gvwDatos);
     this.Controls.Add(this.grpBotones);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.txtCUIT);
     this.Controls.Add(this.txtRazonSocialCLI);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "frmClientes";
     this.Text = "Clientes";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmClientes_FormClosing);
     this.Load += new System.EventHandler(this.frmClientes_Load);
     this.grpCampos.ResumeLayout(false);
     this.grpCampos.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gvwDatos)).EndInit();
     this.grpBotones.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components     = new System.ComponentModel.Container();
     this.label1         = new System.Windows.Forms.Label();
     this.label2         = new System.Windows.Forms.Label();
     this.label3         = new System.Windows.Forms.Label();
     this.label4         = new System.Windows.Forms.Label();
     this.label5         = new System.Windows.Forms.Label();
     this.label6         = new System.Windows.Forms.Label();
     this.textBox1       = new System.Windows.Forms.TextBox();
     this.textBox2       = new System.Windows.Forms.TextBox();
     this.textBox3       = new System.Windows.Forms.TextBox();
     this.textBox4       = new System.Windows.Forms.TextBox();
     this.textBox5       = new System.Windows.Forms.TextBox();
     this.textBox6       = new System.Windows.Forms.TextBox();
     this.button1        = new System.Windows.Forms.Button();
     this.label7         = new System.Windows.Forms.Label();
     this.textBox7       = new System.Windows.Forms.TextBox();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(13, 31);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Jméno";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(13, 58);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 23);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Příjmení";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(13, 85);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(100, 23);
     this.label3.TabIndex = 2;
     this.label3.Text     = "Obec";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(13, 112);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(100, 23);
     this.label4.TabIndex = 3;
     this.label4.Text     = "Ulice";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(12, 139);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(100, 23);
     this.label5.TabIndex = 4;
     this.label5.Text     = "Číslo popisné";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(13, 166);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(100, 23);
     this.label6.TabIndex = 5;
     this.label6.Text     = "PSČ";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(90, 28);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(141, 20);
     this.textBox1.TabIndex = 7;
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(90, 55);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(141, 20);
     this.textBox2.TabIndex = 8;
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(90, 82);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(141, 20);
     this.textBox3.TabIndex = 9;
     //
     // textBox4
     //
     this.textBox4.Location = new System.Drawing.Point(90, 109);
     this.textBox4.Name     = "textBox4";
     this.textBox4.Size     = new System.Drawing.Size(141, 20);
     this.textBox4.TabIndex = 10;
     //
     // textBox5
     //
     this.textBox5.Location = new System.Drawing.Point(90, 136);
     this.textBox5.Name     = "textBox5";
     this.textBox5.Size     = new System.Drawing.Size(141, 20);
     this.textBox5.TabIndex = 11;
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(90, 163);
     this.textBox6.Name     = "textBox6";
     this.textBox6.Size     = new System.Drawing.Size(141, 20);
     this.textBox6.TabIndex = 12;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(101, 212);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 14;
     this.button1.Text     = "Přidat";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.PřidatData);
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(12, 8);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(47, 23);
     this.label7.TabIndex = 15;
     this.label7.Text     = "ID";
     //
     // textBox7
     //
     this.textBox7.Enabled  = false;
     this.textBox7.Location = new System.Drawing.Point(90, 5);
     this.textBox7.Name     = "textBox7";
     this.textBox7.Size     = new System.Drawing.Size(141, 20);
     this.textBox7.TabIndex = 16;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(289, 272);
     this.Controls.Add(this.textBox7);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.textBox6);
     this.Controls.Add(this.textBox5);
     this.Controls.Add(this.textBox4);
     this.Controls.Add(this.textBox3);
     this.Controls.Add(this.textBox2);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1Load);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.panel2 = new System.Windows.Forms.Panel();
     this.tabControl1 = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.grdTimeTableBusyEditor = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.contextMenuBusy = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.menuBusy = new System.Windows.Forms.ToolStripMenuItem();
     this.menuBusyDesc = new System.Windows.Forms.ToolStripMenuItem();
     this.menuFree = new System.Windows.Forms.ToolStripMenuItem();
     this.panel3 = new System.Windows.Forms.Panel();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.cmbTimeTables = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.grdClassBusys = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.panel1 = new System.Windows.Forms.Panel();
     this.lblName = new DevComponents.DotNetBar.LabelX();
     this.contextMenuStripDelete = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorProvider2 = new System.Windows.Forms.ErrorProvider(this.components);
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colWeekDay = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colStartHour = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colStartMinute = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colBusyDesc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSubject = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLevel = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panelEx1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTimeTableBusyEditor)).BeginInit();
     this.contextMenuBusy.SuspendLayout();
     this.panel3.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdClassBusys)).BeginInit();
     this.panel1.SuspendLayout();
     this.contextMenuStripDelete.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.panel2);
     this.panelEx1.Controls.Add(this.panel1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(530, 434);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 1;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.tabControl1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 34);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(530, 400);
     this.panel2.TabIndex = 4;
     //
     // tabControl1
     //
     this.tabControl1.BackColor = System.Drawing.Color.Transparent;
     this.tabControl1.CanReorderTabs = true;
     this.tabControl1.Controls.Add(this.tabControlPanel1);
     this.tabControl1.Controls.Add(this.tabControlPanel2);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedTabFont = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Bold);
     this.tabControl1.SelectedTabIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(530, 400);
     this.tabControl1.TabIndex = 0;
     this.tabControl1.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabControl1.Tabs.Add(this.tabItem1);
     this.tabControl1.Tabs.Add(this.tabItem2);
     this.tabControl1.Text = "tabControl1";
     this.tabControl1.DoubleClick += new System.EventHandler(this.tabControl1_DoubleClick);
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.grdTimeTableBusyEditor);
     this.tabControlPanel1.Controls.Add(this.panel3);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 29);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(530, 371);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 1;
     this.tabControlPanel1.TabItem = this.tabItem1;
     //
     // grdTimeTableBusyEditor
     //
     this.grdTimeTableBusyEditor.AllowUserToAddRows = false;
     this.grdTimeTableBusyEditor.AllowUserToDeleteRows = false;
     this.grdTimeTableBusyEditor.AllowUserToResizeColumns = false;
     this.grdTimeTableBusyEditor.AllowUserToResizeRows = false;
     this.grdTimeTableBusyEditor.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.grdTimeTableBusyEditor.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.grdTimeTableBusyEditor.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdTimeTableBusyEditor.ContextMenuStrip = this.contextMenuBusy;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdTimeTableBusyEditor.DefaultCellStyle = dataGridViewCellStyle2;
     this.grdTimeTableBusyEditor.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdTimeTableBusyEditor.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
     this.grdTimeTableBusyEditor.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdTimeTableBusyEditor.Location = new System.Drawing.Point(1, 35);
     this.grdTimeTableBusyEditor.Name = "grdTimeTableBusyEditor";
     this.grdTimeTableBusyEditor.RowHeadersVisible = false;
     this.grdTimeTableBusyEditor.RowTemplate.Height = 24;
     this.grdTimeTableBusyEditor.Size = new System.Drawing.Size(528, 335);
     this.grdTimeTableBusyEditor.TabIndex = 22;
     //
     // contextMenuBusy
     //
     this.contextMenuBusy.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.menuBusy,
     this.menuBusyDesc,
     this.menuFree});
     this.contextMenuBusy.Name = "contextMenuStrip1";
     this.contextMenuBusy.ShowImageMargin = false;
     this.contextMenuBusy.Size = new System.Drawing.Size(186, 70);
     //
     // menuBusy
     //
     this.menuBusy.Name = "menuBusy";
     this.menuBusy.Size = new System.Drawing.Size(185, 22);
     this.menuBusy.Text = "設定不排課時段";
     //
     // menuBusyDesc
     //
     this.menuBusyDesc.Name = "menuBusyDesc";
     this.menuBusyDesc.Size = new System.Drawing.Size(185, 22);
     this.menuBusyDesc.Text = "設定不排課時段(指定描述)";
     //
     // menuFree
     //
     this.menuFree.Name = "menuFree";
     this.menuFree.Size = new System.Drawing.Size(185, 22);
     this.menuFree.Text = "取消設定";
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.Transparent;
     this.panel3.Controls.Add(this.labelX4);
     this.panel3.Controls.Add(this.labelX2);
     this.panel3.Controls.Add(this.cmbTimeTables);
     this.panel3.Controls.Add(this.comboBoxEx1);
     this.panel3.Controls.Add(this.labelX1);
     this.panel3.Controls.Add(this.labelX3);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(1, 1);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(528, 34);
     this.panel3.TabIndex = 21;
     //
     // labelX4
     //
     this.labelX4.AutoSize = true;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(242, 7);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(219, 21);
     this.labelX4.TabIndex = 23;
     this.labelX4.Text = "(可雙擊左鍵設定,或多選以右鍵設定)";
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(11, 7);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(60, 21);
     this.labelX2.TabIndex = 22;
     this.labelX2.Text = "時間表:";
     //
     // cmbTimeTables
     //
     this.cmbTimeTables.DisplayMember = "Name";
     this.cmbTimeTables.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbTimeTables.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbTimeTables.FormattingEnabled = true;
     this.cmbTimeTables.ItemHeight = 19;
     this.cmbTimeTables.Location = new System.Drawing.Point(71, 5);
     this.cmbTimeTables.Name = "cmbTimeTables";
     this.cmbTimeTables.Size = new System.Drawing.Size(155, 25);
     this.cmbTimeTables.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbTimeTables.TabIndex = 18;
     this.cmbTimeTables.ValueMember = "UID";
     this.cmbTimeTables.SelectedIndexChanged += new System.EventHandler(this.cmbTimeTables_SelectedIndexChanged);
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight = 19;
     this.comboBoxEx1.Location = new System.Drawing.Point(313, 37);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(121, 25);
     this.comboBoxEx1.TabIndex = 12;
     this.comboBoxEx1.Visible = false;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(241, 41);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(74, 21);
     this.labelX1.TabIndex = 11;
     this.labelX1.Text = "所在地點:";
     this.labelX1.Visible = false;
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(234, 41);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(74, 21);
     this.labelX3.TabIndex = 3;
     this.labelX3.Text = "場地代碼:";
     this.labelX3.Visible = false;
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel1;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "不排課時段";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.grdClassBusys);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 29);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(530, 371);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
     this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
     | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 2;
     this.tabControlPanel2.TabItem = this.tabItem2;
     //
     // grdClassBusys
     //
     this.grdClassBusys.BackgroundColor = System.Drawing.Color.White;
     this.grdClassBusys.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdClassBusys.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colWeekDay,
     this.colStartHour,
     this.colStartMinute,
     this.colBusyDesc});
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdClassBusys.DefaultCellStyle = dataGridViewCellStyle3;
     this.grdClassBusys.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdClassBusys.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
     this.grdClassBusys.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(170)))), ((int)(((byte)(170)))), ((int)(((byte)(170)))));
     this.grdClassBusys.HighlightSelectedColumnHeaders = false;
     this.grdClassBusys.Location = new System.Drawing.Point(1, 1);
     this.grdClassBusys.MultiSelect = false;
     this.grdClassBusys.Name = "grdClassBusys";
     this.grdClassBusys.ReadOnly = true;
     this.grdClassBusys.RowHeadersWidth = 35;
     this.grdClassBusys.RowTemplate.Height = 24;
     this.grdClassBusys.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.grdClassBusys.Size = new System.Drawing.Size(528, 369);
     this.grdClassBusys.TabIndex = 3;
     //
     // tabItem2
     //
     this.tabItem2.AttachedControl = this.tabControlPanel2;
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "清單檢視";
     this.tabItem2.Visible = false;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.lblName);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(530, 34);
     this.panel1.TabIndex = 3;
     this.panel1.DoubleClick += new System.EventHandler(this.panel1_DoubleClick);
     //
     // lblName
     //
     this.lblName.AutoSize = true;
     //
     //
     //
     this.lblName.BackgroundStyle.Class = "";
     this.lblName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblName.Font = new System.Drawing.Font("Microsoft JhengHei", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblName.Location = new System.Drawing.Point(3, 1);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(87, 32);
     this.lblName.TabIndex = 6;
     this.lblName.Text = "班級名稱";
     //
     // contextMenuStripDelete
     //
     this.contextMenuStripDelete.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem2});
     this.contextMenuStripDelete.Name = "contextMenuStrip1";
     this.contextMenuStripDelete.ShowImageMargin = false;
     this.contextMenuStripDelete.Size = new System.Drawing.Size(41, 26);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(40, 22);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // errorProvider2
     //
     this.errorProvider2.ContainerControl = this;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn1.HeaderText = "星期";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     this.dataGridViewTextBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn1.ToolTipText = "只能輸入1到7";
     this.dataGridViewTextBoxColumn1.Width = 35;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn2.HeaderText = "開始時間";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.ReadOnly = true;
     this.dataGridViewTextBoxColumn2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn2.Width = 59;
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn3.HeaderText = "結束時間";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.ReadOnly = true;
     this.dataGridViewTextBoxColumn3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn3.Width = 59;
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn4.HeaderText = "不排課描述";
     this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
     this.dataGridViewTextBoxColumn4.ReadOnly = true;
     //
     // colWeekDay
     //
     this.colWeekDay.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colWeekDay.HeaderText = "星期";
     this.colWeekDay.Name = "colWeekDay";
     this.colWeekDay.ReadOnly = true;
     this.colWeekDay.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colWeekDay.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.colWeekDay.ToolTipText = "只能輸入1到7";
     this.colWeekDay.Width = 40;
     //
     // colStartHour
     //
     this.colStartHour.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colStartHour.HeaderText = "開始時間";
     this.colStartHour.Name = "colStartHour";
     this.colStartHour.ReadOnly = true;
     this.colStartHour.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colStartHour.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.colStartHour.Width = 66;
     //
     // colStartMinute
     //
     this.colStartMinute.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.colStartMinute.HeaderText = "結束時間";
     this.colStartMinute.Name = "colStartMinute";
     this.colStartMinute.ReadOnly = true;
     this.colStartMinute.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colStartMinute.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.colStartMinute.Width = 66;
     //
     // colBusyDesc
     //
     this.colBusyDesc.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.colBusyDesc.HeaderText = "不排課描述";
     this.colBusyDesc.Name = "colBusyDesc";
     this.colBusyDesc.ReadOnly = true;
     //
     // colSubject
     //
     this.colSubject.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.colSubject.HeaderText = "科目";
     this.colSubject.Name = "colSubject";
     //
     // colLevel
     //
     this.colLevel.HeaderText = "級別";
     this.colLevel.Name = "colLevel";
     //
     // ClassEditor
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.panelEx1);
     this.Font = new System.Drawing.Font("Microsoft JhengHei", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Name = "ClassEditor";
     this.Size = new System.Drawing.Size(530, 434);
     this.panelEx1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdTimeTableBusyEditor)).EndInit();
     this.contextMenuBusy.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.tabControlPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdClassBusys)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.contextMenuStripDelete.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.contextMenuBusy = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.menuBusy = new System.Windows.Forms.ToolStripMenuItem();
     this.menuBusyDesc = new System.Windows.Forms.ToolStripMenuItem();
     this.menuFree = new System.Windows.Forms.ToolStripMenuItem();
     this.tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.contextMenuStripDelete = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.errGradeYear = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorProvider2 = new System.Windows.Forms.ErrorProvider(this.components);
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colSubject = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLevel = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.lblName = new DevComponents.DotNetBar.LabelX();
     this.txtNote = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.txtClassCode = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.txtGradeYear = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lblClassroomDesc = new DevComponents.DotNetBar.LabelX();
     this.contextMenuBusy.SuspendLayout();
     this.contextMenuStripDelete.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errGradeYear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).BeginInit();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // contextMenuBusy
     //
     this.contextMenuBusy.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.menuBusy,
     this.menuBusyDesc,
     this.menuFree});
     this.contextMenuBusy.Name = "contextMenuStrip1";
     this.contextMenuBusy.ShowImageMargin = false;
     this.contextMenuBusy.Size = new System.Drawing.Size(186, 70);
     //
     // menuBusy
     //
     this.menuBusy.Name = "menuBusy";
     this.menuBusy.Size = new System.Drawing.Size(185, 22);
     this.menuBusy.Text = "設定不排課時段";
     //
     // menuBusyDesc
     //
     this.menuBusyDesc.Name = "menuBusyDesc";
     this.menuBusyDesc.Size = new System.Drawing.Size(185, 22);
     this.menuBusyDesc.Text = "設定不排課時段(指定描述)";
     //
     // menuFree
     //
     this.menuFree.Name = "menuFree";
     this.menuFree.Size = new System.Drawing.Size(185, 22);
     this.menuFree.Text = "取消設定";
     //
     // tabItem2
     //
     this.tabItem2.Name = "tabItem2";
     this.tabItem2.Text = "tabItem2";
     //
     // tabItem1
     //
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "tabItem1";
     //
     // contextMenuStripDelete
     //
     this.contextMenuStripDelete.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem2});
     this.contextMenuStripDelete.Name = "contextMenuStrip1";
     this.contextMenuStripDelete.ShowImageMargin = false;
     this.contextMenuStripDelete.Size = new System.Drawing.Size(70, 26);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(69, 22);
     this.toolStripMenuItem2.Text = "刪除";
     this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItemDelete_Click);
     //
     // errGradeYear
     //
     this.errGradeYear.ContainerControl = this;
     //
     // errorProvider2
     //
     this.errorProvider2.ContainerControl = this;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn1.HeaderText = "星期";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn1.ToolTipText = "只能輸入1到7";
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn2.HeaderText = "開始時間";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn3.HeaderText = "結束時間";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn4.HeaderText = "不排課描述";
     this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn5.HeaderText = "星期";
     this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
     this.dataGridViewTextBoxColumn5.ReadOnly = true;
     this.dataGridViewTextBoxColumn5.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dataGridViewTextBoxColumn5.ToolTipText = "只能輸入1到7";
     //
     // dataGridViewTextBoxColumn6
     //
     this.dataGridViewTextBoxColumn6.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn6.HeaderText = "開始時間";
     this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
     this.dataGridViewTextBoxColumn6.ReadOnly = true;
     this.dataGridViewTextBoxColumn6.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dataGridViewTextBoxColumn7
     //
     this.dataGridViewTextBoxColumn7.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.dataGridViewTextBoxColumn7.HeaderText = "結束時間";
     this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
     this.dataGridViewTextBoxColumn7.ReadOnly = true;
     this.dataGridViewTextBoxColumn7.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewTextBoxColumn7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dataGridViewTextBoxColumn8
     //
     this.dataGridViewTextBoxColumn8.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn8.HeaderText = "不排課描述";
     this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
     this.dataGridViewTextBoxColumn8.ReadOnly = true;
     //
     // colSubject
     //
     this.colSubject.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.colSubject.HeaderText = "科目";
     this.colSubject.Name = "colSubject";
     //
     // colLevel
     //
     this.colLevel.HeaderText = "級別";
     this.colLevel.Name = "colLevel";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.lblName);
     this.panelEx1.Controls.Add(this.txtNote);
     this.panelEx1.Controls.Add(this.labelX6);
     this.panelEx1.Controls.Add(this.txtClassCode);
     this.panelEx1.Controls.Add(this.labelX5);
     this.panelEx1.Controls.Add(this.txtGradeYear);
     this.panelEx1.Controls.Add(this.lblClassroomDesc);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(640, 428);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 2;
     //
     // lblName
     //
     this.lblName.AutoSize = true;
     //
     //
     //
     this.lblName.BackgroundStyle.Class = "";
     this.lblName.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblName.Font = new System.Drawing.Font("微軟正黑體", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.lblName.Location = new System.Drawing.Point(13, 12);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(87, 32);
     this.lblName.TabIndex = 29;
     this.lblName.Text = "班級名稱";
     //
     // txtNote
     //
     //
     //
     //
     this.txtNote.Border.Class = "TextBoxBorder";
     this.txtNote.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNote.Location = new System.Drawing.Point(60, 139);
     this.txtNote.Multiline = true;
     this.txtNote.Name = "txtNote";
     this.txtNote.Size = new System.Drawing.Size(211, 202);
     this.txtNote.TabIndex = 28;
     //
     // labelX6
     //
     this.labelX6.AutoSize = true;
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(14, 139);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(34, 21);
     this.labelX6.TabIndex = 27;
     this.labelX6.Text = "註記";
     //
     // txtClassCode
     //
     //
     //
     //
     this.txtClassCode.Border.Class = "TextBoxBorder";
     this.txtClassCode.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtClassCode.Location = new System.Drawing.Point(59, 93);
     this.txtClassCode.Name = "txtClassCode";
     this.txtClassCode.Size = new System.Drawing.Size(107, 25);
     this.txtClassCode.TabIndex = 26;
     //
     // labelX5
     //
     this.labelX5.AutoSize = true;
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(14, 92);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(34, 21);
     this.labelX5.TabIndex = 25;
     this.labelX5.Text = "代碼";
     //
     // txtGradeYear
     //
     //
     //
     //
     this.txtGradeYear.Border.Class = "TextBoxBorder";
     this.txtGradeYear.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtGradeYear.Location = new System.Drawing.Point(59, 50);
     this.txtGradeYear.Name = "txtGradeYear";
     this.txtGradeYear.Size = new System.Drawing.Size(107, 25);
     this.txtGradeYear.TabIndex = 24;
     //
     // lblClassroomDesc
     //
     this.lblClassroomDesc.AutoSize = true;
     //
     //
     //
     this.lblClassroomDesc.BackgroundStyle.Class = "";
     this.lblClassroomDesc.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblClassroomDesc.Location = new System.Drawing.Point(14, 52);
     this.lblClassroomDesc.Name = "lblClassroomDesc";
     this.lblClassroomDesc.Size = new System.Drawing.Size(34, 21);
     this.lblClassroomDesc.TabIndex = 23;
     this.lblClassroomDesc.Text = "年級";
     //
     // ClassEditor
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.panelEx1);
     this.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.Name = "ClassEditor";
     this.Size = new System.Drawing.Size(640, 428);
     this.contextMenuBusy.ResumeLayout(false);
     this.contextMenuStripDelete.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.errGradeYear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).EndInit();
     this.panelEx1.ResumeLayout(false);
     this.panelEx1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemple #22
0
        /// <summary>
        /// Initializes the component.
        /// </summary>
        public void InitializeComponent()
        {
            this.components      = new System.ComponentModel.Container();
            this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);

            //this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.uxProductReviewId = new System.Windows.Forms.TextBox();
            uxProductReviewIdLabel = new System.Windows.Forms.Label();
            this.uxProductId       = new System.Windows.Forms.ComboBox();
            uxProductIdLabel       = new System.Windows.Forms.Label();
            this.uxReviewerName    = new System.Windows.Forms.TextBox();
            uxReviewerNameLabel    = new System.Windows.Forms.Label();
            this.uxReviewDate      = new System.Windows.Forms.DateTimePicker();
            uxReviewDateLabel      = new System.Windows.Forms.Label();
            this.uxEmailAddress    = new System.Windows.Forms.TextBox();
            uxEmailAddressLabel    = new System.Windows.Forms.Label();
            this.uxRating          = new System.Windows.Forms.TextBox();
            uxRatingLabel          = new System.Windows.Forms.Label();
            this.uxComments        = new System.Windows.Forms.TextBox();
            uxCommentsLabel        = new System.Windows.Forms.Label();
            this.uxModifiedDate    = new System.Windows.Forms.DateTimePicker();
            uxModifiedDateLabel    = new System.Windows.Forms.Label();

            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTableLayoutPanel
            //
            //this.uxTableLayoutPanel.AutoSize = true;
            //this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            //this.uxTableLayoutPanel.ColumnCount = 2;
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
            //this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
            //this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
            //this.uxTableLayoutPanel.RowCount = 2;
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
            //this.uxTableLayoutPanel.TabIndex = 0;

            //
            // uxErrorProvider
            //
            this.uxErrorProvider.ContainerControl = this;
            this.uxErrorProvider.DataSource       = this.uxBindingSource;

            //
            // uxProductReviewIdLabel
            //
            this.uxProductReviewIdLabel.Name     = "uxProductReviewIdLabel";
            this.uxProductReviewIdLabel.Text     = "Product Review Id:";
            this.uxProductReviewIdLabel.Location = new System.Drawing.Point(3, 0);
            this.Controls.Add(this.uxProductReviewIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxProductReviewIdLabel);
            //
            // uxProductReviewId
            //
            this.uxProductReviewId.Name     = "uxProductReviewId";
            this.uxProductReviewId.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxProductReviewId);
            this.uxProductReviewId.Location = new System.Drawing.Point(160, 0);
            this.Controls.Add(this.uxProductReviewId);
            //
            // uxProductIdLabel
            //
            this.uxProductIdLabel.Name     = "uxProductIdLabel";
            this.uxProductIdLabel.Text     = "Product Id:";
            this.uxProductIdLabel.Location = new System.Drawing.Point(3, 26);
            this.Controls.Add(this.uxProductIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxProductIdLabel);
            //
            // uxProductId
            //
            this.uxProductId.Name = "uxProductId";
            //this.uxTableLayoutPanel.Controls.Add(this.uxProductId);
            this.uxProductId.Location = new System.Drawing.Point(160, 26);
            this.Controls.Add(this.uxProductId);
            //
            // uxReviewerNameLabel
            //
            this.uxReviewerNameLabel.Name     = "uxReviewerNameLabel";
            this.uxReviewerNameLabel.Text     = "Reviewer Name:";
            this.uxReviewerNameLabel.Location = new System.Drawing.Point(3, 52);
            this.Controls.Add(this.uxReviewerNameLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxReviewerNameLabel);
            //
            // uxReviewerName
            //
            this.uxReviewerName.Name      = "uxReviewerName";
            this.uxReviewerName.Width     = 250;
            this.uxReviewerName.MaxLength = 50;
            //this.uxTableLayoutPanel.Controls.Add(this.uxReviewerName);
            this.uxReviewerName.Location = new System.Drawing.Point(160, 52);
            this.Controls.Add(this.uxReviewerName);
            //
            // uxReviewDateLabel
            //
            this.uxReviewDateLabel.Name     = "uxReviewDateLabel";
            this.uxReviewDateLabel.Text     = "Review Date:";
            this.uxReviewDateLabel.Location = new System.Drawing.Point(3, 78);
            this.Controls.Add(this.uxReviewDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxReviewDateLabel);
            //
            // uxReviewDate
            //
            this.uxReviewDate.Name = "uxReviewDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxReviewDate);
            this.uxReviewDate.Location = new System.Drawing.Point(160, 78);
            this.Controls.Add(this.uxReviewDate);
            //
            // uxEmailAddressLabel
            //
            this.uxEmailAddressLabel.Name     = "uxEmailAddressLabel";
            this.uxEmailAddressLabel.Text     = "Email Address:";
            this.uxEmailAddressLabel.Location = new System.Drawing.Point(3, 104);
            this.Controls.Add(this.uxEmailAddressLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxEmailAddressLabel);
            //
            // uxEmailAddress
            //
            this.uxEmailAddress.Name      = "uxEmailAddress";
            this.uxEmailAddress.Width     = 250;
            this.uxEmailAddress.MaxLength = 50;
            //this.uxTableLayoutPanel.Controls.Add(this.uxEmailAddress);
            this.uxEmailAddress.Location = new System.Drawing.Point(160, 104);
            this.Controls.Add(this.uxEmailAddress);
            //
            // uxRatingLabel
            //
            this.uxRatingLabel.Name     = "uxRatingLabel";
            this.uxRatingLabel.Text     = "Rating:";
            this.uxRatingLabel.Location = new System.Drawing.Point(3, 130);
            this.Controls.Add(this.uxRatingLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxRatingLabel);
            //
            // uxRating
            //
            this.uxRating.Name = "uxRating";
            //this.uxTableLayoutPanel.Controls.Add(this.uxRating);
            this.uxRating.Location = new System.Drawing.Point(160, 130);
            this.Controls.Add(this.uxRating);
            //
            // uxCommentsLabel
            //
            this.uxCommentsLabel.Name     = "uxCommentsLabel";
            this.uxCommentsLabel.Text     = "Comments:";
            this.uxCommentsLabel.Location = new System.Drawing.Point(3, 156);
            this.Controls.Add(this.uxCommentsLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxCommentsLabel);
            //
            // uxComments
            //
            this.uxComments.Name      = "uxComments";
            this.uxComments.Width     = 250;
            this.uxComments.MaxLength = 3850;
            //this.uxTableLayoutPanel.Controls.Add(this.uxComments);
            this.uxComments.Location = new System.Drawing.Point(160, 156);
            this.Controls.Add(this.uxComments);
            //
            // uxModifiedDateLabel
            //
            this.uxModifiedDateLabel.Name     = "uxModifiedDateLabel";
            this.uxModifiedDateLabel.Text     = "Modified Date:";
            this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 182);
            this.Controls.Add(this.uxModifiedDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);
            //
            // uxModifiedDate
            //
            this.uxModifiedDate.Name = "uxModifiedDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
            this.uxModifiedDate.Location = new System.Drawing.Point(160, 182);
            this.Controls.Add(this.uxModifiedDate);
            //
            // uxProductId
            //
            this.uxProductId.DisplayMember = "Name";
            this.uxProductId.ValueMember   = "ProductId";
            //
            // ProductReviewEditControlBase
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            //this.Controls.Add(this.uxTableLayoutPanel);
            this.AutoScroll = true;
            this.Name       = "ProductReviewEditControlBase";
            this.Size       = new System.Drawing.Size(478, 311);
            //this.Localizable = true;
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.suppliesBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.waybillsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.categoriesBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.materialsBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.label3 = new System.Windows.Forms.Label();
     this.buttonAddNew = new System.Windows.Forms.Button();
     this.categoriesComboBox = new System.Windows.Forms.ComboBox();
     this.buttonSave = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.dataGridViewMaterials = new System.Windows.Forms.DataGridView();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.waybill_date_dateTimePicker = new System.Windows.Forms.DateTimePicker();
     this.waybill_nameLabel = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.waybill_dateLabel = new System.Windows.Forms.Label();
     this.waybill_nameTextBox = new System.Windows.Forms.TextBox();
     this.supplierComboBox = new System.Windows.Forms.ComboBox();
     this.dataGridViewSupplies = new System.Windows.Forms.DataGridView();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     ((System.ComponentModel.ISupportInitialize)(this.suppliesBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.waybillsBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.categoriesBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.materialsBindingSource)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMaterials)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewSupplies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // categoriesBindingSource
     //
     this.categoriesBindingSource.CurrentChanged += new System.EventHandler(this.categoriesBindingSource_CurrentChanged);
     //
     // label3
     //
     this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(10, 14);
     this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(109, 17);
     this.label3.TabIndex = 38;
     this.label3.Text = "Тип материала";
     //
     // buttonAddNew
     //
     this.buttonAddNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonAddNew.Location = new System.Drawing.Point(1323, 4);
     this.buttonAddNew.Margin = new System.Windows.Forms.Padding(4);
     this.buttonAddNew.Name = "buttonAddNew";
     this.buttonAddNew.Size = new System.Drawing.Size(120, 36);
     this.buttonAddNew.TabIndex = 37;
     this.buttonAddNew.Text = "Добавить";
     this.buttonAddNew.UseVisualStyleBackColor = true;
     this.buttonAddNew.Click += new System.EventHandler(this.buttonAddNew_Click);
     //
     // categoriesComboBox
     //
     this.categoriesComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.categoriesComboBox.FormattingEnabled = true;
     this.categoriesComboBox.Location = new System.Drawing.Point(127, 11);
     this.categoriesComboBox.Margin = new System.Windows.Forms.Padding(4);
     this.categoriesComboBox.Name = "categoriesComboBox";
     this.categoriesComboBox.Size = new System.Drawing.Size(207, 24);
     this.categoriesComboBox.TabIndex = 3;
     //
     // buttonSave
     //
     this.buttonSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSave.Location = new System.Drawing.Point(1451, 4);
     this.buttonSave.Margin = new System.Windows.Forms.Padding(4);
     this.buttonSave.Name = "buttonSave";
     this.buttonSave.Size = new System.Drawing.Size(120, 36);
     this.buttonSave.TabIndex = 36;
     this.buttonSave.Text = "Сохранить";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.Control;
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.buttonAddNew);
     this.panel1.Controls.Add(this.categoriesComboBox);
     this.panel1.Controls.Add(this.buttonSave);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.panel1.Location = new System.Drawing.Point(0, 664);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1575, 44);
     this.panel1.TabIndex = 49;
     //
     // dataGridViewMaterials
     //
     this.dataGridViewMaterials.AllowUserToAddRows = false;
     this.dataGridViewMaterials.AllowUserToDeleteRows = false;
     this.dataGridViewMaterials.AllowUserToOrderColumns = true;
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.WhiteSmoke;
     this.dataGridViewMaterials.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridViewMaterials.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dataGridViewMaterials.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.SteelBlue;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewMaterials.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle4;
     this.dataGridViewMaterials.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewMaterials.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridViewMaterials.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
     this.dataGridViewMaterials.Location = new System.Drawing.Point(0, 0);
     this.dataGridViewMaterials.Margin = new System.Windows.Forms.Padding(4);
     this.dataGridViewMaterials.Name = "dataGridViewMaterials";
     this.dataGridViewMaterials.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewMaterials.Size = new System.Drawing.Size(1575, 425);
     this.dataGridViewMaterials.TabIndex = 24;
     this.dataGridViewMaterials.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewMaterials_CellDoubleClick);
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(0, 0);
     this.splitContainer2.Margin = new System.Windows.Forms.Padding(0);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.buttonCancel);
     this.splitContainer2.Panel1.Controls.Add(this.waybill_date_dateTimePicker);
     this.splitContainer2.Panel1.Controls.Add(this.waybill_nameLabel);
     this.splitContainer2.Panel1.Controls.Add(this.label2);
     this.splitContainer2.Panel1.Controls.Add(this.waybill_dateLabel);
     this.splitContainer2.Panel1.Controls.Add(this.waybill_nameTextBox);
     this.splitContainer2.Panel1.Controls.Add(this.supplierComboBox);
     this.splitContainer2.Panel1MinSize = 45;
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.dataGridViewSupplies);
     this.splitContainer2.Panel2MinSize = 0;
     this.splitContainer2.Size = new System.Drawing.Size(1575, 234);
     this.splitContainer2.SplitterDistance = 45;
     this.splitContainer2.SplitterWidth = 1;
     this.splitContainer2.TabIndex = 47;
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCancel.BackColor = System.Drawing.SystemColors.ButtonFace;
     this.buttonCancel.Location = new System.Drawing.Point(1442, 4);
     this.buttonCancel.Margin = new System.Windows.Forms.Padding(4);
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.Size = new System.Drawing.Size(120, 36);
     this.buttonCancel.TabIndex = 38;
     this.buttonCancel.Text = "Отменить";
     this.buttonCancel.UseVisualStyleBackColor = false;
     //
     // waybill_date_dateTimePicker
     //
     this.waybill_date_dateTimePicker.CustomFormat = "dd/MM/yyyy";
     this.waybill_date_dateTimePicker.DropDownAlign = System.Windows.Forms.LeftRightAlignment.Right;
     this.waybill_date_dateTimePicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.waybill_date_dateTimePicker.Location = new System.Drawing.Point(970, 12);
     this.waybill_date_dateTimePicker.Name = "waybill_date_dateTimePicker";
     this.waybill_date_dateTimePicker.Size = new System.Drawing.Size(200, 23);
     this.waybill_date_dateTimePicker.TabIndex = 46;
     this.waybill_date_dateTimePicker.Value = new System.DateTime(2015, 9, 2, 0, 0, 0, 0);
     //
     // waybill_nameLabel
     //
     this.waybill_nameLabel.AutoSize = true;
     this.waybill_nameLabel.Location = new System.Drawing.Point(6, 14);
     this.waybill_nameLabel.Name = "waybill_nameLabel";
     this.waybill_nameLabel.Size = new System.Drawing.Size(81, 17);
     this.waybill_nameLabel.TabIndex = 41;
     this.waybill_nameLabel.Text = "Накладная";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(345, 15);
     this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(81, 17);
     this.label2.TabIndex = 42;
     this.label2.Text = "Поставщик";
     //
     // waybill_dateLabel
     //
     this.waybill_dateLabel.AutoSize = true;
     this.waybill_dateLabel.Location = new System.Drawing.Point(858, 15);
     this.waybill_dateLabel.Name = "waybill_dateLabel";
     this.waybill_dateLabel.Size = new System.Drawing.Size(106, 17);
     this.waybill_dateLabel.TabIndex = 45;
     this.waybill_dateLabel.Text = "Дата поставки";
     //
     // waybill_nameTextBox
     //
     this.waybill_nameTextBox.Location = new System.Drawing.Point(93, 11);
     this.waybill_nameTextBox.Name = "waybill_nameTextBox";
     this.waybill_nameTextBox.Size = new System.Drawing.Size(231, 23);
     this.waybill_nameTextBox.TabIndex = 42;
     //
     // supplierComboBox
     //
     this.supplierComboBox.FormattingEnabled = true;
     this.supplierComboBox.Location = new System.Drawing.Point(430, 11);
     this.supplierComboBox.Margin = new System.Windows.Forms.Padding(4);
     this.supplierComboBox.Name = "supplierComboBox";
     this.supplierComboBox.Size = new System.Drawing.Size(410, 24);
     this.supplierComboBox.TabIndex = 41;
     //
     // dataGridViewSupplies
     //
     this.dataGridViewSupplies.AllowUserToOrderColumns = true;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.dataGridViewSupplies.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewSupplies.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dataGridViewSupplies.BackgroundColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.SteelBlue;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewSupplies.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewSupplies.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewSupplies.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridViewSupplies.Location = new System.Drawing.Point(0, 0);
     this.dataGridViewSupplies.Margin = new System.Windows.Forms.Padding(4);
     this.dataGridViewSupplies.Name = "dataGridViewSupplies";
     this.dataGridViewSupplies.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewSupplies.Size = new System.Drawing.Size(1575, 188);
     this.dataGridViewSupplies.TabIndex = 24;
     this.dataGridViewSupplies.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dataGridViewSupplies_DataError);
     //
     // splitContainer1
     //
     this.splitContainer1.BackColor = System.Drawing.SystemColors.Control;
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.BackColor = System.Drawing.SystemColors.Control;
     this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
     this.splitContainer1.Panel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.splitContainer1.Panel1MinSize = 0;
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.dataGridViewMaterials);
     this.splitContainer1.Panel2MinSize = 24;
     this.splitContainer1.Size = new System.Drawing.Size(1575, 664);
     this.splitContainer1.SplitterDistance = 234;
     this.splitContainer1.SplitterWidth = 5;
     this.splitContainer1.TabIndex = 48;
     //
     // frmsupplies
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.AutoValidate = System.Windows.Forms.AutoValidate.EnableAllowFocusChange;
     this.ClientSize = new System.Drawing.Size(1575, 708);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.panel1);
     this.Name = "frmsupplies";
     this.Text = "Supply";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmsupply_FormClosing);
     this.Load += new System.EventHandler(this.frmsupply_Load);
     ((System.ComponentModel.ISupportInitialize)(this.suppliesBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.waybillsBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.categoriesBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.materialsBindingSource)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewMaterials)).EndInit();
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
     this.splitContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewSupplies)).EndInit();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #24
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmRegistrarAuto));
     this.groupBox1          = new System.Windows.Forms.GroupBox();
     this.btnAgregarAuto     = new System.Windows.Forms.Button();
     this.txtFoliodelhuesped = new System.Windows.Forms.TextBox();
     this.txtDescripcionauto = new System.Windows.Forms.TextBox();
     this.txtModeloauto      = new System.Windows.Forms.TextBox();
     this.txtMatriculaauto   = new System.Windows.Forms.TextBox();
     this.label4             = new System.Windows.Forms.Label();
     this.label3             = new System.Windows.Forms.Label();
     this.label2             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.errorProvider1     = new System.Windows.Forms.ErrorProvider(this.components);
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.DeepSkyBlue;
     this.groupBox1.Controls.Add(this.btnAgregarAuto);
     this.groupBox1.Controls.Add(this.txtFoliodelhuesped);
     this.groupBox1.Controls.Add(this.txtDescripcionauto);
     this.groupBox1.Controls.Add(this.txtModeloauto);
     this.groupBox1.Controls.Add(this.txtMatriculaauto);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(373, 293);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Registre los Datos Necesarios";
     //
     // btnAgregarAuto
     //
     this.btnAgregarAuto.Location = new System.Drawing.Point(122, 250);
     this.btnAgregarAuto.Name     = "btnAgregarAuto";
     this.btnAgregarAuto.Size     = new System.Drawing.Size(100, 37);
     this.btnAgregarAuto.TabIndex = 8;
     this.btnAgregarAuto.Text     = "Agregar";
     this.btnAgregarAuto.UseVisualStyleBackColor = true;
     this.btnAgregarAuto.Click += new System.EventHandler(this.BtnAgregarAutoClick);
     //
     // txtFoliodelhuesped
     //
     this.txtFoliodelhuesped.Location  = new System.Drawing.Point(159, 107);
     this.txtFoliodelhuesped.Name      = "txtFoliodelhuesped";
     this.txtFoliodelhuesped.Size      = new System.Drawing.Size(181, 24);
     this.txtFoliodelhuesped.TabIndex  = 7;
     this.txtFoliodelhuesped.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtFoliodelhuespedKeyPress);
     //
     // txtDescripcionauto
     //
     this.txtDescripcionauto.Location   = new System.Drawing.Point(6, 168);
     this.txtDescripcionauto.Multiline  = true;
     this.txtDescripcionauto.Name       = "txtDescripcionauto";
     this.txtDescripcionauto.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtDescripcionauto.Size       = new System.Drawing.Size(334, 76);
     this.txtDescripcionauto.TabIndex   = 6;
     this.txtDescripcionauto.KeyPress  += new System.Windows.Forms.KeyPressEventHandler(this.TxtDescripcionautoKeyPress);
     //
     // txtModeloauto
     //
     this.txtModeloauto.Location  = new System.Drawing.Point(159, 74);
     this.txtModeloauto.Name      = "txtModeloauto";
     this.txtModeloauto.Size      = new System.Drawing.Size(181, 24);
     this.txtModeloauto.TabIndex  = 5;
     this.txtModeloauto.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtModeloautoKeyPress);
     //
     // txtMatriculaauto
     //
     this.txtMatriculaauto.Location  = new System.Drawing.Point(159, 33);
     this.txtMatriculaauto.Name      = "txtMatriculaauto";
     this.txtMatriculaauto.Size      = new System.Drawing.Size(181, 24);
     this.txtMatriculaauto.TabIndex  = 4;
     this.txtMatriculaauto.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtMatriculaautoKeyPress);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(122, 142);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(113, 23);
     this.label4.TabIndex = 3;
     this.label4.Text     = "Descripción";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(23, 104);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(100, 23);
     this.label3.TabIndex = 2;
     this.label3.Text     = "Folio";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(23, 75);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 23);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Modelo";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(23, 36);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Placa";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // frmRegistrarAuto
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(393, 321);
     this.Controls.Add(this.groupBox1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmRegistrarAuto";
     this.Text = "frmRegistrarAuto";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #25
0
        /// <summary>
        /// Initializes the component.
        /// </summary>
        public void InitializeComponent()
        {
            this.components      = new System.ComponentModel.Container();
            this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);

            //this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.uxPurchaseOrderId       = new System.Windows.Forms.ComboBox();
            uxPurchaseOrderIdLabel       = new System.Windows.Forms.Label();
            this.uxPurchaseOrderDetailId = new System.Windows.Forms.TextBox();
            uxPurchaseOrderDetailIdLabel = new System.Windows.Forms.Label();
            this.uxDueDate      = new System.Windows.Forms.DateTimePicker();
            uxDueDateLabel      = new System.Windows.Forms.Label();
            this.uxOrderQty     = new System.Windows.Forms.TextBox();
            uxOrderQtyLabel     = new System.Windows.Forms.Label();
            this.uxProductId    = new System.Windows.Forms.ComboBox();
            uxProductIdLabel    = new System.Windows.Forms.Label();
            this.uxUnitPrice    = new System.Windows.Forms.TextBox();
            uxUnitPriceLabel    = new System.Windows.Forms.Label();
            this.uxLineTotal    = new System.Windows.Forms.TextBox();
            uxLineTotalLabel    = new System.Windows.Forms.Label();
            this.uxReceivedQty  = new System.Windows.Forms.TextBox();
            uxReceivedQtyLabel  = new System.Windows.Forms.Label();
            this.uxRejectedQty  = new System.Windows.Forms.TextBox();
            uxRejectedQtyLabel  = new System.Windows.Forms.Label();
            this.uxStockedQty   = new System.Windows.Forms.TextBox();
            uxStockedQtyLabel   = new System.Windows.Forms.Label();
            this.uxModifiedDate = new System.Windows.Forms.DateTimePicker();
            uxModifiedDateLabel = new System.Windows.Forms.Label();

            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTableLayoutPanel
            //
            //this.uxTableLayoutPanel.AutoSize = true;
            //this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            //this.uxTableLayoutPanel.ColumnCount = 2;
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
            //this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
            //this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
            //this.uxTableLayoutPanel.RowCount = 2;
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
            //this.uxTableLayoutPanel.TabIndex = 0;

            //
            // uxErrorProvider
            //
            this.uxErrorProvider.ContainerControl = this;
            this.uxErrorProvider.DataSource       = this.uxBindingSource;

            //
            // uxPurchaseOrderIdLabel
            //
            this.uxPurchaseOrderIdLabel.Name     = "uxPurchaseOrderIdLabel";
            this.uxPurchaseOrderIdLabel.Text     = "Purchase Order Id:";
            this.uxPurchaseOrderIdLabel.Location = new System.Drawing.Point(3, 0);
            this.Controls.Add(this.uxPurchaseOrderIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxPurchaseOrderIdLabel);
            //
            // uxPurchaseOrderId
            //
            this.uxPurchaseOrderId.Name = "uxPurchaseOrderId";
            //this.uxTableLayoutPanel.Controls.Add(this.uxPurchaseOrderId);
            this.uxPurchaseOrderId.Location = new System.Drawing.Point(160, 0);
            this.Controls.Add(this.uxPurchaseOrderId);
            //
            // uxPurchaseOrderDetailIdLabel
            //
            this.uxPurchaseOrderDetailIdLabel.Name     = "uxPurchaseOrderDetailIdLabel";
            this.uxPurchaseOrderDetailIdLabel.Text     = "Purchase Order Detail Id:";
            this.uxPurchaseOrderDetailIdLabel.Location = new System.Drawing.Point(3, 26);
            this.Controls.Add(this.uxPurchaseOrderDetailIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxPurchaseOrderDetailIdLabel);
            //
            // uxPurchaseOrderDetailId
            //
            this.uxPurchaseOrderDetailId.Name     = "uxPurchaseOrderDetailId";
            this.uxPurchaseOrderDetailId.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxPurchaseOrderDetailId);
            this.uxPurchaseOrderDetailId.Location = new System.Drawing.Point(160, 26);
            this.Controls.Add(this.uxPurchaseOrderDetailId);
            //
            // uxDueDateLabel
            //
            this.uxDueDateLabel.Name     = "uxDueDateLabel";
            this.uxDueDateLabel.Text     = "Due Date:";
            this.uxDueDateLabel.Location = new System.Drawing.Point(3, 52);
            this.Controls.Add(this.uxDueDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxDueDateLabel);
            //
            // uxDueDate
            //
            this.uxDueDate.Name = "uxDueDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxDueDate);
            this.uxDueDate.Location = new System.Drawing.Point(160, 52);
            this.Controls.Add(this.uxDueDate);
            //
            // uxOrderQtyLabel
            //
            this.uxOrderQtyLabel.Name     = "uxOrderQtyLabel";
            this.uxOrderQtyLabel.Text     = "Order Qty:";
            this.uxOrderQtyLabel.Location = new System.Drawing.Point(3, 78);
            this.Controls.Add(this.uxOrderQtyLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxOrderQtyLabel);
            //
            // uxOrderQty
            //
            this.uxOrderQty.Name = "uxOrderQty";
            //this.uxTableLayoutPanel.Controls.Add(this.uxOrderQty);
            this.uxOrderQty.Location = new System.Drawing.Point(160, 78);
            this.Controls.Add(this.uxOrderQty);
            //
            // uxProductIdLabel
            //
            this.uxProductIdLabel.Name     = "uxProductIdLabel";
            this.uxProductIdLabel.Text     = "Product Id:";
            this.uxProductIdLabel.Location = new System.Drawing.Point(3, 104);
            this.Controls.Add(this.uxProductIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxProductIdLabel);
            //
            // uxProductId
            //
            this.uxProductId.Name = "uxProductId";
            //this.uxTableLayoutPanel.Controls.Add(this.uxProductId);
            this.uxProductId.Location = new System.Drawing.Point(160, 104);
            this.Controls.Add(this.uxProductId);
            //
            // uxUnitPriceLabel
            //
            this.uxUnitPriceLabel.Name     = "uxUnitPriceLabel";
            this.uxUnitPriceLabel.Text     = "Unit Price:";
            this.uxUnitPriceLabel.Location = new System.Drawing.Point(3, 130);
            this.Controls.Add(this.uxUnitPriceLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxUnitPriceLabel);
            //
            // uxUnitPrice
            //
            this.uxUnitPrice.Name = "uxUnitPrice";
            //this.uxTableLayoutPanel.Controls.Add(this.uxUnitPrice);
            this.uxUnitPrice.Location = new System.Drawing.Point(160, 130);
            this.Controls.Add(this.uxUnitPrice);
            //
            // uxLineTotalLabel
            //
            this.uxLineTotalLabel.Name     = "uxLineTotalLabel";
            this.uxLineTotalLabel.Text     = "Line Total:";
            this.uxLineTotalLabel.Location = new System.Drawing.Point(3, 156);
            this.Controls.Add(this.uxLineTotalLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxLineTotalLabel);
            //
            // uxLineTotal
            //
            this.uxLineTotal.Name     = "uxLineTotal";
            this.uxLineTotal.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxLineTotal);
            this.uxLineTotal.Location = new System.Drawing.Point(160, 156);
            this.Controls.Add(this.uxLineTotal);
            //
            // uxReceivedQtyLabel
            //
            this.uxReceivedQtyLabel.Name     = "uxReceivedQtyLabel";
            this.uxReceivedQtyLabel.Text     = "Received Qty:";
            this.uxReceivedQtyLabel.Location = new System.Drawing.Point(3, 182);
            this.Controls.Add(this.uxReceivedQtyLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxReceivedQtyLabel);
            //
            // uxReceivedQty
            //
            this.uxReceivedQty.Name = "uxReceivedQty";
            //this.uxTableLayoutPanel.Controls.Add(this.uxReceivedQty);
            this.uxReceivedQty.Location = new System.Drawing.Point(160, 182);
            this.Controls.Add(this.uxReceivedQty);
            //
            // uxRejectedQtyLabel
            //
            this.uxRejectedQtyLabel.Name     = "uxRejectedQtyLabel";
            this.uxRejectedQtyLabel.Text     = "Rejected Qty:";
            this.uxRejectedQtyLabel.Location = new System.Drawing.Point(3, 208);
            this.Controls.Add(this.uxRejectedQtyLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxRejectedQtyLabel);
            //
            // uxRejectedQty
            //
            this.uxRejectedQty.Name = "uxRejectedQty";
            //this.uxTableLayoutPanel.Controls.Add(this.uxRejectedQty);
            this.uxRejectedQty.Location = new System.Drawing.Point(160, 208);
            this.Controls.Add(this.uxRejectedQty);
            //
            // uxStockedQtyLabel
            //
            this.uxStockedQtyLabel.Name     = "uxStockedQtyLabel";
            this.uxStockedQtyLabel.Text     = "Stocked Qty:";
            this.uxStockedQtyLabel.Location = new System.Drawing.Point(3, 234);
            this.Controls.Add(this.uxStockedQtyLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxStockedQtyLabel);
            //
            // uxStockedQty
            //
            this.uxStockedQty.Name     = "uxStockedQty";
            this.uxStockedQty.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxStockedQty);
            this.uxStockedQty.Location = new System.Drawing.Point(160, 234);
            this.Controls.Add(this.uxStockedQty);
            //
            // uxModifiedDateLabel
            //
            this.uxModifiedDateLabel.Name     = "uxModifiedDateLabel";
            this.uxModifiedDateLabel.Text     = "Modified Date:";
            this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 260);
            this.Controls.Add(this.uxModifiedDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);
            //
            // uxModifiedDate
            //
            this.uxModifiedDate.Name = "uxModifiedDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
            this.uxModifiedDate.Location = new System.Drawing.Point(160, 260);
            this.Controls.Add(this.uxModifiedDate);
            //
            // uxProductId
            //
            this.uxProductId.DisplayMember = "Name";
            this.uxProductId.ValueMember   = "ProductId";
            //
            // uxPurchaseOrderId
            //
            this.uxPurchaseOrderId.DisplayMember = "RevisionNumber";
            this.uxPurchaseOrderId.ValueMember   = "PurchaseOrderId";
            //
            // PurchaseOrderDetailEditControlBase
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            //this.Controls.Add(this.uxTableLayoutPanel);
            this.AutoScroll = true;
            this.Name       = "PurchaseOrderDetailEditControlBase";
            this.Size       = new System.Drawing.Size(478, 311);
            //this.Localizable = true;
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Tipo_Membresia));
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.requiredFieldValidator1 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.AllowUserToAddRows = false;
     this.dataGridViewX1.AllowUserToDeleteRows = false;
     this.dataGridViewX1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewX1.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.White;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewX1.EnableHeadersVisualStyles = false;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(31, 203);
     this.dataGridViewX1.MultiSelect = false;
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.ReadOnly = true;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridViewX1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewX1.Size = new System.Drawing.Size(431, 150);
     this.dataGridViewX1.TabIndex = 14;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(37, 95);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "Descripcion :";
     //
     // textBoxX2
     //
     this.textBoxX2.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.ForeColor = System.Drawing.Color.Black;
     this.textBoxX2.Location = new System.Drawing.Point(118, 94);
     this.textBoxX2.MaxLength = 3000;
     this.textBoxX2.Multiline = true;
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.ReadOnly = true;
     this.textBoxX2.Size = new System.Drawing.Size(271, 91);
     this.textBoxX2.TabIndex = 12;
     //
     // textBoxX1
     //
     this.textBoxX1.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.ForeColor = System.Drawing.Color.Black;
     this.textBoxX1.Location = new System.Drawing.Point(118, 68);
     this.textBoxX1.MaxLength = 50;
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.ReadOnly = true;
     this.textBoxX1.Size = new System.Drawing.Size(141, 20);
     this.textBoxX1.TabIndex = 11;
     this.superValidator1.SetValidator1(this.textBoxX1, this.requiredFieldValidator1);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(37, 65);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.labelX1.TabIndex = 10;
     this.labelX1.Text = "Nombre :";
     //
     // superValidator1
     //
     this.superValidator1.ContainerControl = this;
     this.superValidator1.ErrorProvider = this.errorProvider1;
     this.superValidator1.Highlighter = this.highlighter1;
     //
     // requiredFieldValidator1
     //
     this.requiredFieldValidator1.ErrorMessage = "Campo requerido";
     this.requiredFieldValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.Location = new System.Drawing.Point(162, 23);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(189, 23);
     this.labelX3.TabIndex = 15;
     this.labelX3.Text = "TIPOS DE MEMBRESIA";
     //
     // Tipo_Membresia
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.dataGridViewX1);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.textBoxX2);
     this.Controls.Add(this.textBoxX1);
     this.Controls.Add(this.labelX1);
     this.Name = "Tipo_Membresia";
     this.Size = new System.Drawing.Size(497, 380);
     this.Load += new System.EventHandler(this.Tipo_Membresia_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label79 = new System.Windows.Forms.Label();
     this.lbEvents = new System.Windows.Forms.ListBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tabControl2 = new System.Windows.Forms.TabControl();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.label76 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.label72 = new System.Windows.Forms.Label();
     this.label70 = new System.Windows.Forms.Label();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.label75 = new System.Windows.Forms.Label();
     this.label74 = new System.Windows.Forms.Label();
     this.label73 = new System.Windows.Forms.Label();
     this.tabCalender = new System.Windows.Forms.TabPage();
     this.btBookAppointment = new System.Windows.Forms.Button();
     this.lbxBirthDays = new System.Windows.Forms.ListBox();
     this.label44 = new System.Windows.Forms.Label();
     this.label43 = new System.Windows.Forms.Label();
     this.lbChosenDayInCalendar = new System.Windows.Forms.Label();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.Time = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Activity = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.mcForDayCalendar = new System.Windows.Forms.MonthCalendar();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.tabCtrlJournal = new System.Windows.Forms.TabControl();
     this.tabJournalCompany = new System.Windows.Forms.TabPage();
     this.lbxJournalCompanyNotes = new System.Windows.Forms.ListBox();
     this.rtxbCompanyJournalNoteDate = new System.Windows.Forms.TextBox();
     this.rtxbCompanyJournalNoteText = new System.Windows.Forms.RichTextBox();
     this.lbCompanyJournal = new System.Windows.Forms.ListBox();
     this.pictureBox4 = new System.Windows.Forms.PictureBox();
     this.tabContactJournal = new System.Windows.Forms.TabPage();
     this.rtxbContactJournalNoteDate = new System.Windows.Forms.TextBox();
     this.lbxJournalContactNotes = new System.Windows.Forms.ListBox();
     this.rtbxContactNote = new System.Windows.Forms.RichTextBox();
     this.pictureBox5 = new System.Windows.Forms.PictureBox();
     this.lbContactsJournal = new System.Windows.Forms.ListBox();
     this.tabSearchAllNotes = new System.Windows.Forms.TabPage();
     this.tbAllNotesDate = new System.Windows.Forms.TextBox();
     this.lbxAllNotes = new System.Windows.Forms.ListBox();
     this.rtxbAllNotesText = new System.Windows.Forms.RichTextBox();
     this.pictureBox6 = new System.Windows.Forms.PictureBox();
     this.btSearchNotes = new System.Windows.Forms.Button();
     this.txbSearchAllNotes = new System.Windows.Forms.TextBox();
     this.mcInSearchNotes = new System.Windows.Forms.MonthCalendar();
     this.btUserManual = new System.Windows.Forms.Button();
     this.btJournal = new System.Windows.Forms.Button();
     this.btAppointments = new System.Windows.Forms.Button();
     this.btCompanies = new System.Windows.Forms.Button();
     this.btContacts = new System.Windows.Forms.Button();
     this.btHome = new System.Windows.Forms.Button();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
     this.tabCtrlCompanies = new System.Windows.Forms.TabControl();
     this.tabAddCompany = new System.Windows.Forms.TabPage();
     this.btClearSelection = new System.Windows.Forms.Button();
     this.cbCompanies = new System.Windows.Forms.ComboBox();
     this.label61 = new System.Windows.Forms.Label();
     this.lbxContacts = new System.Windows.Forms.ListBox();
     this.pbxCompanyLogo = new System.Windows.Forms.PictureBox();
     this.btDelContactFromCompany = new System.Windows.Forms.Button();
     this.btContactToCompany = new System.Windows.Forms.Button();
     this.btCompanyAddLogo = new System.Windows.Forms.Button();
     this.label77 = new System.Windows.Forms.Label();
     this.label42 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.btDelCompany = new System.Windows.Forms.Button();
     this.btAddCompany = new System.Windows.Forms.Button();
     this.cbxSameAdress = new System.Windows.Forms.CheckBox();
     this.label29 = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.tbPostalPostNumber = new System.Windows.Forms.TextBox();
     this.tbPostalStreet = new System.Windows.Forms.TextBox();
     this.tbPostalCountry = new System.Windows.Forms.TextBox();
     this.tbPostalCity = new System.Windows.Forms.TextBox();
     this.cbCustomerType = new System.Windows.Forms.ComboBox();
     this.label34 = new System.Windows.Forms.Label();
     this.label35 = new System.Windows.Forms.Label();
     this.label36 = new System.Windows.Forms.Label();
     this.label37 = new System.Windows.Forms.Label();
     this.label38 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.label40 = new System.Windows.Forms.Label();
     this.tbVisitPostNumber = new System.Windows.Forms.TextBox();
     this.tbVisitStreet = new System.Windows.Forms.TextBox();
     this.tbVisitCountry = new System.Windows.Forms.TextBox();
     this.tbVisitCity = new System.Windows.Forms.TextBox();
     this.tbVatNr = new System.Windows.Forms.TextBox();
     this.tbTelephone = new System.Windows.Forms.TextBox();
     this.tbWebPage = new System.Windows.Forms.TextBox();
     this.tbEmail = new System.Windows.Forms.TextBox();
     this.tbCompanyName = new System.Windows.Forms.TextBox();
     this.label41 = new System.Windows.Forms.Label();
     this.label51 = new System.Windows.Forms.Label();
     this.tabViewCompanyNote = new System.Windows.Forms.TabPage();
     this.label64 = new System.Windows.Forms.Label();
     this.label63 = new System.Windows.Forms.Label();
     this.lbNoteInfo = new System.Windows.Forms.Label();
     this.lbNoteSelectNote = new System.Windows.Forms.Label();
     this.label60 = new System.Windows.Forms.Label();
     this.btCompanyNoteClear = new System.Windows.Forms.Button();
     this.btNoteCompanyRemoveNote = new System.Windows.Forms.Button();
     this.btSaveCompanyNote = new System.Windows.Forms.Button();
     this.tbNoteCompanySubject = new System.Windows.Forms.TextBox();
     this.rtxNoteCompanyBody = new System.Windows.Forms.RichTextBox();
     this.cbNoteCompanyNote = new System.Windows.Forms.ComboBox();
     this.cbNoteSelectCompany = new System.Windows.Forms.ComboBox();
     this.tabViewCompanyContacts = new System.Windows.Forms.TabPage();
     this.btAddCompanyContactsDone = new System.Windows.Forms.Button();
     this.btAddContactToCompany = new System.Windows.Forms.Button();
     this.dgwCompanyContacts = new System.Windows.Forms.DataGridView();
     this.tabCtrlAppoinments = new System.Windows.Forms.TabControl();
     this.tabAddAppointment = new System.Windows.Forms.TabPage();
     this.btSaveEditedAppointment = new System.Windows.Forms.Button();
     this.label21 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.clbContacts = new System.Windows.Forms.CheckedListBox();
     this.label20 = new System.Windows.Forms.Label();
     this.tbCountry = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.dtpReminderTime = new System.Windows.Forms.DateTimePicker();
     this.dtpAppointmentTimeEnd = new System.Windows.Forms.DateTimePicker();
     this.dtpAppointmentTimeStart = new System.Windows.Forms.DateTimePicker();
     this.btSave = new System.Windows.Forms.Button();
     this.cbReminderType = new System.Windows.Forms.ComboBox();
     this.label15 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.dtpReminderDate = new System.Windows.Forms.DateTimePicker();
     this.label13 = new System.Windows.Forms.Label();
     this.tbSubject = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.rtbNotes = new System.Windows.Forms.RichTextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.cbCompany = new System.Windows.Forms.ComboBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.dtpAppointmentDateStart = new System.Windows.Forms.DateTimePicker();
     this.tbCity = new System.Windows.Forms.TextBox();
     this.tbPostnumber = new System.Windows.Forms.TextBox();
     this.tbStreet = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.cbAppoinmentType = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.tabViewAppointment = new System.Windows.Forms.TabPage();
     this.btViewDetailsOfAppointment = new System.Windows.Forms.Button();
     this.tbSearchAppointmentsByContact = new System.Windows.Forms.TextBox();
     this.panelSearchOptionsAppointments = new System.Windows.Forms.Panel();
     this.rbtSearchByAppointmentDate = new System.Windows.Forms.RadioButton();
     this.rtbSearchAppointmentsByContacts = new System.Windows.Forms.RadioButton();
     this.rbtSearchAppointmentsByCompany = new System.Windows.Forms.RadioButton();
     this.rbtSearchwordAppointment = new System.Windows.Forms.RadioButton();
     this.btDelAppointment = new System.Windows.Forms.Button();
     this.btEditAppointment = new System.Windows.Forms.Button();
     this.tbSearchAppointmentsWithFilter = new System.Windows.Forms.Button();
     this.dgvViewAppoinments = new System.Windows.Forms.DataGridView();
     this.cbCompanySearch = new System.Windows.Forms.ComboBox();
     this.label22 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label23 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.tbSearchQuery = new System.Windows.Forms.TextBox();
     this.mcAppointments = new System.Windows.Forms.MonthCalendar();
     this.tabAppointmentDetails = new System.Windows.Forms.TabPage();
     this.lbViewAppointmentContacts = new System.Windows.Forms.ListBox();
     this.label69 = new System.Windows.Forms.Label();
     this.lbViewAppointmentCompany = new System.Windows.Forms.Label();
     this.lbViewAppointmentCountry = new System.Windows.Forms.Label();
     this.lbViewAppointmentCity = new System.Windows.Forms.Label();
     this.lbViewAppointmentStreet = new System.Windows.Forms.Label();
     this.lbViewAppointmentPostnumber = new System.Windows.Forms.Label();
     this.lbViewAppointmentReminderType = new System.Windows.Forms.Label();
     this.lbViewAppointmentReminderTime = new System.Windows.Forms.Label();
     this.lbViewAppointmentReminderDate = new System.Windows.Forms.Label();
     this.lbViewAppointmentType = new System.Windows.Forms.Label();
     this.lbViewAppointmentStartTime = new System.Windows.Forms.Label();
     this.lbViewAppointmentEndTime = new System.Windows.Forms.Label();
     this.label71 = new System.Windows.Forms.Label();
     this.lbViewAppointmentSubject = new System.Windows.Forms.Label();
     this.lbViewAppointmentStartDate = new System.Windows.Forms.Label();
     this.label45 = new System.Windows.Forms.Label();
     this.label46 = new System.Windows.Forms.Label();
     this.label47 = new System.Windows.Forms.Label();
     this.label48 = new System.Windows.Forms.Label();
     this.label50 = new System.Windows.Forms.Label();
     this.label52 = new System.Windows.Forms.Label();
     this.label53 = new System.Windows.Forms.Label();
     this.label54 = new System.Windows.Forms.Label();
     this.rtxbViewAppointmentNote = new System.Windows.Forms.RichTextBox();
     this.label55 = new System.Windows.Forms.Label();
     this.label56 = new System.Windows.Forms.Label();
     this.label57 = new System.Windows.Forms.Label();
     this.label58 = new System.Windows.Forms.Label();
     this.label62 = new System.Windows.Forms.Label();
     this.label65 = new System.Windows.Forms.Label();
     this.label66 = new System.Windows.Forms.Label();
     this.label67 = new System.Windows.Forms.Label();
     this.label68 = new System.Windows.Forms.Label();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.pbHome = new System.Windows.Forms.PictureBox();
     this.tabCtrlContact = new System.Windows.Forms.TabControl();
     this.tabAddContact = new System.Windows.Forms.TabPage();
     this.lbSocialSecurity = new System.Windows.Forms.Label();
     this.dtpDateOfBirth = new System.Windows.Forms.DateTimePicker();
     this.btSaveEditedContact = new System.Windows.Forms.Button();
     this.btCreate = new System.Windows.Forms.Button();
     this.tbxSsn = new System.Windows.Forms.TextBox();
     this.tbxCountry = new System.Windows.Forms.TextBox();
     this.tbxCity = new System.Windows.Forms.TextBox();
     this.tbxPostnr = new System.Windows.Forms.TextBox();
     this.tbxStreet = new System.Windows.Forms.TextBox();
     this.tbxMobile = new System.Windows.Forms.TextBox();
     this.tbxHomeNr = new System.Windows.Forms.TextBox();
     this.tbxEmail = new System.Windows.Forms.TextBox();
     this.btEdit = new System.Windows.Forms.Button();
     this.tbxName = new System.Windows.Forms.TextBox();
     this.tbxSurname = new System.Windows.Forms.TextBox();
     this.lbSSN = new System.Windows.Forms.Label();
     this.lbCountry = new System.Windows.Forms.Label();
     this.lbCity = new System.Windows.Forms.Label();
     this.btUpload = new System.Windows.Forms.Button();
     this.lbImage = new System.Windows.Forms.Label();
     this.lbMobile = new System.Windows.Forms.Label();
     this.pbxImage = new System.Windows.Forms.PictureBox();
     this.lbPostnr = new System.Windows.Forms.Label();
     this.lbHome = new System.Windows.Forms.Label();
     this.lbTele = new System.Windows.Forms.Label();
     this.lbContactInfo = new System.Windows.Forms.Label();
     this.lbStreet = new System.Windows.Forms.Label();
     this.lbAddress = new System.Windows.Forms.Label();
     this.lbDOB = new System.Windows.Forms.Label();
     this.lbEmail = new System.Windows.Forms.Label();
     this.lbPersInfo = new System.Windows.Forms.Label();
     this.lbName = new System.Windows.Forms.Label();
     this.lbSurname = new System.Windows.Forms.Label();
     this.tabAddDetails = new System.Windows.Forms.TabPage();
     this.btAddIntrestest = new System.Windows.Forms.Button();
     this.dtpRelDateOfBirth = new System.Windows.Forms.DateTimePicker();
     this.label78 = new System.Windows.Forms.Label();
     this.cbContactToAddDetail = new System.Windows.Forms.ComboBox();
     this.lbRelDob = new System.Windows.Forms.Label();
     this.cbxAddRel = new System.Windows.Forms.CheckBox();
     this.btCreateRela = new System.Windows.Forms.Button();
     this.cbxRelType = new System.Windows.Forms.ComboBox();
     this.tbxRelaSurname = new System.Windows.Forms.TextBox();
     this.tbxRelaName = new System.Windows.Forms.TextBox();
     this.lbRelType = new System.Windows.Forms.Label();
     this.lbRelaSurname = new System.Windows.Forms.Label();
     this.lbRelaName = new System.Windows.Forms.Label();
     this.lbxRelatives = new System.Windows.Forms.ListBox();
     this.lbRelatives = new System.Windows.Forms.Label();
     this.clbInterests = new System.Windows.Forms.CheckedListBox();
     this.lbInterest = new System.Windows.Forms.Label();
     this.tabViewContacts = new System.Windows.Forms.TabPage();
     this.btSelectContact = new System.Windows.Forms.Button();
     this.btDeleteContact = new System.Windows.Forms.Button();
     this.dataGridViewContacts = new System.Windows.Forms.DataGridView();
     this.tabContactNote = new System.Windows.Forms.TabPage();
     this.btContactNoteSave = new System.Windows.Forms.Button();
     this.btContactNoteDel = new System.Windows.Forms.Button();
     this.btContactNoteClear = new System.Windows.Forms.Button();
     this.rtbContactNoteBody = new System.Windows.Forms.RichTextBox();
     this.tbContactNoteSubject = new System.Windows.Forms.TextBox();
     this.cbContactNoteNote = new System.Windows.Forms.ComboBox();
     this.cbContactNoteRelative = new System.Windows.Forms.ComboBox();
     this.cbContactNoteContact = new System.Windows.Forms.ComboBox();
     this.label59 = new System.Windows.Forms.Label();
     this.label49 = new System.Windows.Forms.Label();
     this.lbSelectRelative = new System.Windows.Forms.Label();
     this.lbRelativeInfo = new System.Windows.Forms.Label();
     this.lbAddContactNoteInfo = new System.Windows.Forms.Label();
     this.lbContactNoteSelectNote = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.tabCtrlUserManual = new System.Windows.Forms.TabControl();
     this.tabUserManual = new System.Windows.Forms.TabPage();
     this.webUserManual = new System.Windows.Forms.WebBrowser();
     this.groupBox1.SuspendLayout();
     this.tabControl2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     this.tabPage4.SuspendLayout();
     this.tabCalender.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.tabCtrlJournal.SuspendLayout();
     this.tabJournalCompany.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     this.tabContactJournal.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
     this.tabSearchAllNotes.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     this.tabCtrlCompanies.SuspendLayout();
     this.tabAddCompany.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxCompanyLogo)).BeginInit();
     this.tabViewCompanyNote.SuspendLayout();
     this.tabViewCompanyContacts.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgwCompanyContacts)).BeginInit();
     this.tabCtrlAppoinments.SuspendLayout();
     this.tabAddAppointment.SuspendLayout();
     this.tabViewAppointment.SuspendLayout();
     this.panelSearchOptionsAppointments.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvViewAppoinments)).BeginInit();
     this.tabAppointmentDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbHome)).BeginInit();
     this.tabCtrlContact.SuspendLayout();
     this.tabAddContact.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxImage)).BeginInit();
     this.tabAddDetails.SuspendLayout();
     this.tabViewContacts.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewContacts)).BeginInit();
     this.tabContactNote.SuspendLayout();
     this.tabCtrlUserManual.SuspendLayout();
     this.tabUserManual.SuspendLayout();
     this.SuspendLayout();
     //
     // monthCalendar1
     //
     this.monthCalendar1.ForeColor = System.Drawing.Color.White;
     this.monthCalendar1.Location = new System.Drawing.Point(976, 61);
     this.monthCalendar1.Name = "monthCalendar1";
     this.monthCalendar1.TabIndex = 0;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(114)))), ((int)(((byte)(193)))), ((int)(((byte)(176)))));
     this.groupBox1.Controls.Add(this.label79);
     this.groupBox1.Controls.Add(this.lbEvents);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(981, 228);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(166, 331);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     //
     // label79
     //
     this.label79.Location = new System.Drawing.Point(-291, 71);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(263, 22);
     this.label79.TabIndex = 95;
     this.label79.Text = "label71";
     //
     // lbEvents
     //
     this.lbEvents.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(83)))), ((int)(((byte)(196)))), ((int)(((byte)(170)))));
     this.lbEvents.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lbEvents.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbEvents.ForeColor = System.Drawing.Color.White;
     this.lbEvents.FormattingEnabled = true;
     this.lbEvents.ItemHeight = 14;
     this.lbEvents.Location = new System.Drawing.Point(6, 30);
     this.lbEvents.Name = "lbEvents";
     this.lbEvents.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.lbEvents.Size = new System.Drawing.Size(154, 294);
     this.lbEvents.TabIndex = 53;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(12, 11);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(125, 16);
     this.label1.TabIndex = 0;
     this.label1.Text = "Uppcoming events";
     //
     // tabControl2
     //
     this.tabControl2.Controls.Add(this.tabPage3);
     this.tabControl2.Controls.Add(this.tabPage4);
     this.tabControl2.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabControl2.Location = new System.Drawing.Point(157, 565);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(990, 157);
     this.tabControl2.TabIndex = 3;
     //
     // tabPage3
     //
     this.tabPage3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(111)))), ((int)(((byte)(29)))));
     this.tabPage3.Controls.Add(this.label76);
     this.tabPage3.Controls.Add(this.label17);
     this.tabPage3.Controls.Add(this.pictureBox3);
     this.tabPage3.Controls.Add(this.label72);
     this.tabPage3.Controls.Add(this.label70);
     this.tabPage3.Controls.Add(this.linkLabel1);
     this.tabPage3.ForeColor = System.Drawing.Color.White;
     this.tabPage3.Location = new System.Drawing.Point(4, 26);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size = new System.Drawing.Size(982, 127);
     this.tabPage3.TabIndex = 0;
     this.tabPage3.Text = "Help";
     //
     // label76
     //
     this.label76.AutoSize = true;
     this.label76.Location = new System.Drawing.Point(301, 52);
     this.label76.Name = "label76";
     this.label76.Size = new System.Drawing.Size(193, 17);
     this.label76.TabIndex = 5;
     this.label76.Text = "Hours: Mon-Fri 08:00 - 18:00";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(41, 25);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(129, 17);
     this.label17.TabIndex = 0;
     this.label17.Text = "Open user manual";
     //
     // pictureBox3
     //
     this.pictureBox3.Image = global::CsiCrm.Properties.Resources.filemanager1;
     this.pictureBox3.Location = new System.Drawing.Point(6, 3);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(75, 62);
     this.pictureBox3.TabIndex = 4;
     this.pictureBox3.TabStop = false;
     //
     // label72
     //
     this.label72.AutoSize = true;
     this.label72.Location = new System.Drawing.Point(301, 78);
     this.label72.Name = "label72";
     this.label72.Size = new System.Drawing.Size(132, 17);
     this.label72.TabIndex = 3;
     this.label72.Text = "*****@*****.**";
     //
     // label70
     //
     this.label70.AutoSize = true;
     this.label70.Location = new System.Drawing.Point(301, 25);
     this.label70.Name = "label70";
     this.label70.Size = new System.Drawing.Size(181, 17);
     this.label70.TabIndex = 2;
     this.label70.Text = "Help desk: +46 906882294";
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.LinkColor = System.Drawing.Color.White;
     this.linkLabel1.Location = new System.Drawing.Point(8, 78);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(228, 17);
     this.linkLabel1.TabIndex = 1;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "http://www.infovoid.com/sico-crm/";
     //
     // tabPage4
     //
     this.tabPage4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(109)))), ((int)(((byte)(88)))));
     this.tabPage4.Controls.Add(this.label75);
     this.tabPage4.Controls.Add(this.label74);
     this.tabPage4.Controls.Add(this.label73);
     this.tabPage4.Location = new System.Drawing.Point(4, 26);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size = new System.Drawing.Size(982, 127);
     this.tabPage4.TabIndex = 1;
     this.tabPage4.Text = "License";
     //
     // label75
     //
     this.label75.AutoSize = true;
     this.label75.ForeColor = System.Drawing.Color.White;
     this.label75.Location = new System.Drawing.Point(10, 79);
     this.label75.Name = "label75";
     this.label75.Size = new System.Drawing.Size(280, 17);
     this.label75.TabIndex = 3;
     this.label75.Text = "For latest updates please visit our website";
     //
     // label74
     //
     this.label74.AutoSize = true;
     this.label74.ForeColor = System.Drawing.Color.White;
     this.label74.Location = new System.Drawing.Point(10, 48);
     this.label74.Name = "label74";
     this.label74.Size = new System.Drawing.Size(144, 17);
     this.label74.TabIndex = 2;
     this.label74.Text = "Copyright SICo-CRM";
     //
     // label73
     //
     this.label73.AutoSize = true;
     this.label73.ForeColor = System.Drawing.Color.White;
     this.label73.Location = new System.Drawing.Point(10, 18);
     this.label73.Name = "label73";
     this.label73.Size = new System.Drawing.Size(418, 17);
     this.label73.TabIndex = 1;
     this.label73.Text = "SICo-CRM version:  1.0 Small business Sole Proprietor Edition ";
     //
     // tabCalender
     //
     this.tabCalender.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabCalender.Controls.Add(this.btBookAppointment);
     this.tabCalender.Controls.Add(this.lbxBirthDays);
     this.tabCalender.Controls.Add(this.label44);
     this.tabCalender.Controls.Add(this.label43);
     this.tabCalender.Controls.Add(this.lbChosenDayInCalendar);
     this.tabCalender.Controls.Add(this.dataGridView1);
     this.tabCalender.Controls.Add(this.mcForDayCalendar);
     this.tabCalender.Controls.Add(this.pictureBox1);
     this.tabCalender.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCalender.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabCalender.Location = new System.Drawing.Point(4, 26);
     this.tabCalender.Name = "tabCalender";
     this.tabCalender.Padding = new System.Windows.Forms.Padding(3);
     this.tabCalender.Size = new System.Drawing.Size(799, 468);
     this.tabCalender.TabIndex = 0;
     this.tabCalender.Text = "Calendar";
     //
     // btBookAppointment
     //
     this.btBookAppointment.Location = new System.Drawing.Point(581, 418);
     this.btBookAppointment.Name = "btBookAppointment";
     this.btBookAppointment.Size = new System.Drawing.Size(175, 34);
     this.btBookAppointment.TabIndex = 7;
     this.btBookAppointment.Text = "Book Appointment";
     this.btBookAppointment.UseVisualStyleBackColor = true;
     this.btBookAppointment.Click += new System.EventHandler(this.BtBookAppointmentClick);
     //
     // lbxBirthDays
     //
     this.lbxBirthDays.FormattingEnabled = true;
     this.lbxBirthDays.ItemHeight = 18;
     this.lbxBirthDays.Location = new System.Drawing.Point(5, 294);
     this.lbxBirthDays.Name = "lbxBirthDays";
     this.lbxBirthDays.Size = new System.Drawing.Size(170, 166);
     this.lbxBirthDays.TabIndex = 6;
     //
     // label44
     //
     this.label44.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label44.Location = new System.Drawing.Point(10, 260);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(159, 27);
     this.label44.TabIndex = 5;
     this.label44.Text = "Birthdays:";
     this.label44.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label43
     //
     this.label43.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label43.Location = new System.Drawing.Point(8, 191);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(159, 27);
     this.label43.TabIndex = 4;
     this.label43.Text = "Day calendar for:";
     this.label43.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lbChosenDayInCalendar
     //
     this.lbChosenDayInCalendar.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbChosenDayInCalendar.ForeColor = System.Drawing.Color.DodgerBlue;
     this.lbChosenDayInCalendar.Location = new System.Drawing.Point(34, 216);
     this.lbChosenDayInCalendar.Name = "lbChosenDayInCalendar";
     this.lbChosenDayInCalendar.Size = new System.Drawing.Size(98, 27);
     this.lbChosenDayInCalendar.TabIndex = 3;
     this.lbChosenDayInCalendar.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.AllowUserToResizeColumns = false;
     this.dataGridView1.AllowUserToResizeRows = false;
     this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Time,
     this.Activity});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(243)))), ((int)(((byte)(73)))));
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridView1.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridView1.GridColor = System.Drawing.Color.DeepSkyBlue;
     this.dataGridView1.Location = new System.Drawing.Point(237, 26);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.ReadOnly = true;
     this.dataGridView1.RowHeadersVisible = false;
     this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridView1.Size = new System.Drawing.Size(521, 425);
     this.dataGridView1.TabIndex = 1;
     //
     // Time
     //
     this.Time.FillWeight = 18.27411F;
     this.Time.HeaderText = "Time";
     this.Time.Name = "Time";
     this.Time.ReadOnly = true;
     //
     // Activity
     //
     this.Activity.FillWeight = 181.7259F;
     this.Activity.HeaderText = "Activity";
     this.Activity.Name = "Activity";
     this.Activity.ReadOnly = true;
     //
     // mcForDayCalendar
     //
     this.mcForDayCalendar.Location = new System.Drawing.Point(5, 15);
     this.mcForDayCalendar.MaxSelectionCount = 1;
     this.mcForDayCalendar.Name = "mcForDayCalendar";
     this.mcForDayCalendar.TabIndex = 0;
     this.mcForDayCalendar.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.McForDayCalendarDateChanged);
     this.mcForDayCalendar.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.McForDayCalendarDateSelected);
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Image = global::CsiCrm.Properties.Resources.NoteBookBG;
     this.pictureBox1.Location = new System.Drawing.Point(175, 9);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(622, 488);
     this.pictureBox1.TabIndex = 2;
     this.pictureBox1.TabStop = false;
     //
     // tabCtrlJournal
     //
     this.tabCtrlJournal.Controls.Add(this.tabCalender);
     this.tabCtrlJournal.Controls.Add(this.tabJournalCompany);
     this.tabCtrlJournal.Controls.Add(this.tabContactJournal);
     this.tabCtrlJournal.Controls.Add(this.tabSearchAllNotes);
     this.tabCtrlJournal.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlJournal.Location = new System.Drawing.Point(157, 61);
     this.tabCtrlJournal.Name = "tabCtrlJournal";
     this.tabCtrlJournal.SelectedIndex = 0;
     this.tabCtrlJournal.Size = new System.Drawing.Size(807, 498);
     this.tabCtrlJournal.TabIndex = 2;
     this.tabCtrlJournal.Visible = false;
     this.tabCtrlJournal.SelectedIndexChanged += new System.EventHandler(this.TabCtrlJournalSelectedIndexChanged);
     //
     // tabJournalCompany
     //
     this.tabJournalCompany.Controls.Add(this.lbxJournalCompanyNotes);
     this.tabJournalCompany.Controls.Add(this.rtxbCompanyJournalNoteDate);
     this.tabJournalCompany.Controls.Add(this.rtxbCompanyJournalNoteText);
     this.tabJournalCompany.Controls.Add(this.lbCompanyJournal);
     this.tabJournalCompany.Controls.Add(this.pictureBox4);
     this.tabJournalCompany.Location = new System.Drawing.Point(4, 26);
     this.tabJournalCompany.Name = "tabJournalCompany";
     this.tabJournalCompany.Padding = new System.Windows.Forms.Padding(3);
     this.tabJournalCompany.Size = new System.Drawing.Size(799, 468);
     this.tabJournalCompany.TabIndex = 1;
     this.tabJournalCompany.Text = "Company Journal";
     this.tabJournalCompany.UseVisualStyleBackColor = true;
     //
     // lbxJournalCompanyNotes
     //
     this.lbxJournalCompanyNotes.FormattingEnabled = true;
     this.lbxJournalCompanyNotes.ItemHeight = 17;
     this.lbxJournalCompanyNotes.Location = new System.Drawing.Point(240, 39);
     this.lbxJournalCompanyNotes.Name = "lbxJournalCompanyNotes";
     this.lbxJournalCompanyNotes.Size = new System.Drawing.Size(219, 395);
     this.lbxJournalCompanyNotes.TabIndex = 15;
     this.lbxJournalCompanyNotes.SelectedIndexChanged += new System.EventHandler(this.LbxJournalCompanyNotesSelectedIndexChanged);
     //
     // rtxbCompanyJournalNoteDate
     //
     this.rtxbCompanyJournalNoteDate.Location = new System.Drawing.Point(613, 21);
     this.rtxbCompanyJournalNoteDate.Name = "rtxbCompanyJournalNoteDate";
     this.rtxbCompanyJournalNoteDate.Size = new System.Drawing.Size(146, 25);
     this.rtxbCompanyJournalNoteDate.TabIndex = 14;
     //
     // rtxbCompanyJournalNoteText
     //
     this.rtxbCompanyJournalNoteText.Location = new System.Drawing.Point(507, 56);
     this.rtxbCompanyJournalNoteText.Name = "rtxbCompanyJournalNoteText";
     this.rtxbCompanyJournalNoteText.Size = new System.Drawing.Size(255, 380);
     this.rtxbCompanyJournalNoteText.TabIndex = 10;
     this.rtxbCompanyJournalNoteText.Text = "";
     //
     // lbCompanyJournal
     //
     this.lbCompanyJournal.FormattingEnabled = true;
     this.lbCompanyJournal.ItemHeight = 17;
     this.lbCompanyJournal.Location = new System.Drawing.Point(7, 9);
     this.lbCompanyJournal.Name = "lbCompanyJournal";
     this.lbCompanyJournal.Size = new System.Drawing.Size(169, 446);
     this.lbCompanyJournal.TabIndex = 0;
     this.lbCompanyJournal.SelectedIndexChanged += new System.EventHandler(this.LbCompanyJournalSelectedIndexChanged);
     //
     // pictureBox4
     //
     this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox4.Image = global::CsiCrm.Properties.Resources.NoteBookBG;
     this.pictureBox4.Location = new System.Drawing.Point(179, -2);
     this.pictureBox4.Name = "pictureBox4";
     this.pictureBox4.Size = new System.Drawing.Size(622, 488);
     this.pictureBox4.TabIndex = 12;
     this.pictureBox4.TabStop = false;
     //
     // tabContactJournal
     //
     this.tabContactJournal.Controls.Add(this.rtxbContactJournalNoteDate);
     this.tabContactJournal.Controls.Add(this.lbxJournalContactNotes);
     this.tabContactJournal.Controls.Add(this.rtbxContactNote);
     this.tabContactJournal.Controls.Add(this.pictureBox5);
     this.tabContactJournal.Controls.Add(this.lbContactsJournal);
     this.tabContactJournal.Location = new System.Drawing.Point(4, 26);
     this.tabContactJournal.Name = "tabContactJournal";
     this.tabContactJournal.Padding = new System.Windows.Forms.Padding(3);
     this.tabContactJournal.Size = new System.Drawing.Size(799, 468);
     this.tabContactJournal.TabIndex = 2;
     this.tabContactJournal.Text = "Contact Journal";
     this.tabContactJournal.UseVisualStyleBackColor = true;
     //
     // rtxbContactJournalNoteDate
     //
     this.rtxbContactJournalNoteDate.Location = new System.Drawing.Point(591, 37);
     this.rtxbContactJournalNoteDate.Name = "rtxbContactJournalNoteDate";
     this.rtxbContactJournalNoteDate.Size = new System.Drawing.Size(167, 25);
     this.rtxbContactJournalNoteDate.TabIndex = 18;
     //
     // lbxJournalContactNotes
     //
     this.lbxJournalContactNotes.FormattingEnabled = true;
     this.lbxJournalContactNotes.ItemHeight = 17;
     this.lbxJournalContactNotes.Location = new System.Drawing.Point(240, 42);
     this.lbxJournalContactNotes.Name = "lbxJournalContactNotes";
     this.lbxJournalContactNotes.Size = new System.Drawing.Size(219, 395);
     this.lbxJournalContactNotes.TabIndex = 16;
     this.lbxJournalContactNotes.SelectedIndexChanged += new System.EventHandler(this.LbxJournalContactNotesSelectedIndexChanged);
     //
     // rtbxContactNote
     //
     this.rtbxContactNote.Location = new System.Drawing.Point(510, 72);
     this.rtbxContactNote.Name = "rtbxContactNote";
     this.rtbxContactNote.Size = new System.Drawing.Size(251, 365);
     this.rtbxContactNote.TabIndex = 15;
     this.rtbxContactNote.Text = "";
     //
     // pictureBox5
     //
     this.pictureBox5.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox5.Image = global::CsiCrm.Properties.Resources.NoteBookBG;
     this.pictureBox5.Location = new System.Drawing.Point(181, -1);
     this.pictureBox5.Name = "pictureBox5";
     this.pictureBox5.Size = new System.Drawing.Size(622, 488);
     this.pictureBox5.TabIndex = 13;
     this.pictureBox5.TabStop = false;
     //
     // lbContactsJournal
     //
     this.lbContactsJournal.FormattingEnabled = true;
     this.lbContactsJournal.ItemHeight = 17;
     this.lbContactsJournal.Location = new System.Drawing.Point(7, 11);
     this.lbContactsJournal.Name = "lbContactsJournal";
     this.lbContactsJournal.Size = new System.Drawing.Size(169, 446);
     this.lbContactsJournal.TabIndex = 1;
     this.lbContactsJournal.SelectedIndexChanged += new System.EventHandler(this.LbContactsJournalSelectedIndexChanged1);
     //
     // tabSearchAllNotes
     //
     this.tabSearchAllNotes.Controls.Add(this.tbAllNotesDate);
     this.tabSearchAllNotes.Controls.Add(this.lbxAllNotes);
     this.tabSearchAllNotes.Controls.Add(this.rtxbAllNotesText);
     this.tabSearchAllNotes.Controls.Add(this.pictureBox6);
     this.tabSearchAllNotes.Controls.Add(this.btSearchNotes);
     this.tabSearchAllNotes.Controls.Add(this.txbSearchAllNotes);
     this.tabSearchAllNotes.Controls.Add(this.mcInSearchNotes);
     this.tabSearchAllNotes.Location = new System.Drawing.Point(4, 26);
     this.tabSearchAllNotes.Name = "tabSearchAllNotes";
     this.tabSearchAllNotes.Padding = new System.Windows.Forms.Padding(3);
     this.tabSearchAllNotes.Size = new System.Drawing.Size(799, 468);
     this.tabSearchAllNotes.TabIndex = 3;
     this.tabSearchAllNotes.Text = "Search all notes";
     this.tabSearchAllNotes.UseVisualStyleBackColor = true;
     //
     // tbAllNotesDate
     //
     this.tbAllNotesDate.Location = new System.Drawing.Point(591, 32);
     this.tbAllNotesDate.Name = "tbAllNotesDate";
     this.tbAllNotesDate.Size = new System.Drawing.Size(167, 25);
     this.tbAllNotesDate.TabIndex = 19;
     //
     // lbxAllNotes
     //
     this.lbxAllNotes.FormattingEnabled = true;
     this.lbxAllNotes.ItemHeight = 17;
     this.lbxAllNotes.Location = new System.Drawing.Point(240, 41);
     this.lbxAllNotes.Name = "lbxAllNotes";
     this.lbxAllNotes.Size = new System.Drawing.Size(219, 395);
     this.lbxAllNotes.TabIndex = 18;
     this.lbxAllNotes.SelectedIndexChanged += new System.EventHandler(this.LbxAllNotesSelectedIndexChanged);
     //
     // rtxbAllNotesText
     //
     this.rtxbAllNotesText.Location = new System.Drawing.Point(512, 72);
     this.rtxbAllNotesText.Name = "rtxbAllNotesText";
     this.rtxbAllNotesText.Size = new System.Drawing.Size(250, 369);
     this.rtxbAllNotesText.TabIndex = 17;
     this.rtxbAllNotesText.Text = "";
     //
     // pictureBox6
     //
     this.pictureBox6.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox6.Image = global::CsiCrm.Properties.Resources.NoteBookBG;
     this.pictureBox6.Location = new System.Drawing.Point(180, 2);
     this.pictureBox6.Name = "pictureBox6";
     this.pictureBox6.Size = new System.Drawing.Size(622, 488);
     this.pictureBox6.TabIndex = 14;
     this.pictureBox6.TabStop = false;
     //
     // btSearchNotes
     //
     this.btSearchNotes.Location = new System.Drawing.Point(101, 264);
     this.btSearchNotes.Name = "btSearchNotes";
     this.btSearchNotes.Size = new System.Drawing.Size(75, 23);
     this.btSearchNotes.TabIndex = 2;
     this.btSearchNotes.Text = "Search";
     this.btSearchNotes.UseVisualStyleBackColor = true;
     this.btSearchNotes.Click += new System.EventHandler(this.BtSearchNotesClick);
     //
     // txbSearchAllNotes
     //
     this.txbSearchAllNotes.Location = new System.Drawing.Point(4, 223);
     this.txbSearchAllNotes.Name = "txbSearchAllNotes";
     this.txbSearchAllNotes.Size = new System.Drawing.Size(170, 25);
     this.txbSearchAllNotes.TabIndex = 1;
     //
     // mcInSearchNotes
     //
     this.mcInSearchNotes.Location = new System.Drawing.Point(3, 35);
     this.mcInSearchNotes.MaxSelectionCount = 1;
     this.mcInSearchNotes.Name = "mcInSearchNotes";
     this.mcInSearchNotes.TabIndex = 0;
     this.mcInSearchNotes.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.McInSearchNotesDateChanged);
     //
     // btUserManual
     //
     this.btUserManual.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(233)))), ((int)(((byte)(241)))));
     this.btUserManual.FlatAppearance.BorderSize = 0;
     this.btUserManual.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btUserManual.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btUserManual.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btUserManual.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btUserManual.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(74)))), ((int)(((byte)(74)))), ((int)(((byte)(74)))));
     this.btUserManual.Image = global::CsiCrm.Properties.Resources.filemanager;
     this.btUserManual.Location = new System.Drawing.Point(11, 500);
     this.btUserManual.Name = "btUserManual";
     this.btUserManual.Size = new System.Drawing.Size(140, 55);
     this.btUserManual.TabIndex = 24;
     this.btUserManual.Text = "User Manual";
     this.btUserManual.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btUserManual.UseVisualStyleBackColor = false;
     this.btUserManual.Click += new System.EventHandler(this.BtUserManualClick);
     //
     // btJournal
     //
     this.btJournal.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(233)))), ((int)(((byte)(241)))));
     this.btJournal.FlatAppearance.BorderSize = 0;
     this.btJournal.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btJournal.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btJournal.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btJournal.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btJournal.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(74)))), ((int)(((byte)(74)))), ((int)(((byte)(74)))));
     this.btJournal.Image = global::CsiCrm.Properties.Resources.journal;
     this.btJournal.Location = new System.Drawing.Point(11, 416);
     this.btJournal.Name = "btJournal";
     this.btJournal.Size = new System.Drawing.Size(140, 55);
     this.btJournal.TabIndex = 23;
     this.btJournal.Text = "Journal";
     this.btJournal.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btJournal.UseVisualStyleBackColor = false;
     this.btJournal.Click += new System.EventHandler(this.BtJournalClick1);
     //
     // btAppointments
     //
     this.btAppointments.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(233)))), ((int)(((byte)(241)))));
     this.btAppointments.FlatAppearance.BorderSize = 0;
     this.btAppointments.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btAppointments.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btAppointments.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btAppointments.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btAppointments.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(74)))), ((int)(((byte)(74)))), ((int)(((byte)(74)))));
     this.btAppointments.Image = global::CsiCrm.Properties.Resources.appointments1;
     this.btAppointments.Location = new System.Drawing.Point(11, 335);
     this.btAppointments.Name = "btAppointments";
     this.btAppointments.Size = new System.Drawing.Size(140, 55);
     this.btAppointments.TabIndex = 22;
     this.btAppointments.Text = "Appointments";
     this.btAppointments.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btAppointments.UseVisualStyleBackColor = false;
     this.btAppointments.Click += new System.EventHandler(this.BtAppointmentsClick);
     //
     // btCompanies
     //
     this.btCompanies.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(233)))), ((int)(((byte)(241)))));
     this.btCompanies.FlatAppearance.BorderSize = 0;
     this.btCompanies.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btCompanies.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btCompanies.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btCompanies.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btCompanies.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(74)))), ((int)(((byte)(74)))), ((int)(((byte)(74)))));
     this.btCompanies.Image = global::CsiCrm.Properties.Resources.Companies;
     this.btCompanies.Location = new System.Drawing.Point(12, 253);
     this.btCompanies.Name = "btCompanies";
     this.btCompanies.Size = new System.Drawing.Size(140, 55);
     this.btCompanies.TabIndex = 21;
     this.btCompanies.Text = "Companies";
     this.btCompanies.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btCompanies.UseVisualStyleBackColor = false;
     this.btCompanies.Click += new System.EventHandler(this.BtCompaniesClick);
     //
     // btContacts
     //
     this.btContacts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(233)))), ((int)(((byte)(241)))));
     this.btContacts.FlatAppearance.BorderSize = 0;
     this.btContacts.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btContacts.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btContacts.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btContacts.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btContacts.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(74)))), ((int)(((byte)(74)))), ((int)(((byte)(74)))));
     this.btContacts.Image = global::CsiCrm.Properties.Resources.contacts1;
     this.btContacts.Location = new System.Drawing.Point(12, 168);
     this.btContacts.Name = "btContacts";
     this.btContacts.Size = new System.Drawing.Size(140, 55);
     this.btContacts.TabIndex = 20;
     this.btContacts.Text = "Contacts";
     this.btContacts.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btContacts.UseVisualStyleBackColor = false;
     this.btContacts.Click += new System.EventHandler(this.BtContactsClick);
     //
     // btHome
     //
     this.btHome.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(233)))), ((int)(((byte)(241)))));
     this.btHome.FlatAppearance.BorderSize = 0;
     this.btHome.FlatAppearance.MouseDownBackColor = System.Drawing.Color.White;
     this.btHome.FlatAppearance.MouseOverBackColor = System.Drawing.Color.White;
     this.btHome.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btHome.Font = new System.Drawing.Font("Microsoft Sans Serif", 12.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btHome.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(74)))), ((int)(((byte)(74)))), ((int)(((byte)(74)))));
     this.btHome.Image = global::CsiCrm.Properties.Resources.home;
     this.btHome.Location = new System.Drawing.Point(11, 85);
     this.btHome.Name = "btHome";
     this.btHome.Size = new System.Drawing.Size(140, 55);
     this.btHome.TabIndex = 17;
     this.btHome.Text = "Home";
     this.btHome.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btHome.UseVisualStyleBackColor = false;
     this.btHome.Click += new System.EventHandler(this.BtHomeClick);
     //
     // pictureBox2
     //
     this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox2.Image = global::CsiCrm.Properties.Resources.logga1;
     this.pictureBox2.Location = new System.Drawing.Point(5, 10);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(150, 56);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox2.TabIndex = 25;
     this.pictureBox2.TabStop = false;
     //
     // errorProvider
     //
     this.errorProvider.ContainerControl = this;
     //
     // tabCtrlCompanies
     //
     this.tabCtrlCompanies.Controls.Add(this.tabAddCompany);
     this.tabCtrlCompanies.Controls.Add(this.tabViewCompanyNote);
     this.tabCtrlCompanies.Controls.Add(this.tabViewCompanyContacts);
     this.tabCtrlCompanies.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlCompanies.Location = new System.Drawing.Point(158, 60);
     this.tabCtrlCompanies.Name = "tabCtrlCompanies";
     this.tabCtrlCompanies.SelectedIndex = 0;
     this.tabCtrlCompanies.Size = new System.Drawing.Size(806, 498);
     this.tabCtrlCompanies.TabIndex = 28;
     this.tabCtrlCompanies.Visible = false;
     this.tabCtrlCompanies.SelectedIndexChanged += new System.EventHandler(this.TabCtrlCompaniesSelectedIndexChanged);
     //
     // tabAddCompany
     //
     this.tabAddCompany.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabAddCompany.Controls.Add(this.btClearSelection);
     this.tabAddCompany.Controls.Add(this.cbCompanies);
     this.tabAddCompany.Controls.Add(this.label61);
     this.tabAddCompany.Controls.Add(this.lbxContacts);
     this.tabAddCompany.Controls.Add(this.pbxCompanyLogo);
     this.tabAddCompany.Controls.Add(this.btDelContactFromCompany);
     this.tabAddCompany.Controls.Add(this.btContactToCompany);
     this.tabAddCompany.Controls.Add(this.btCompanyAddLogo);
     this.tabAddCompany.Controls.Add(this.label77);
     this.tabAddCompany.Controls.Add(this.label42);
     this.tabAddCompany.Controls.Add(this.label26);
     this.tabAddCompany.Controls.Add(this.label27);
     this.tabAddCompany.Controls.Add(this.label28);
     this.tabAddCompany.Controls.Add(this.btDelCompany);
     this.tabAddCompany.Controls.Add(this.btAddCompany);
     this.tabAddCompany.Controls.Add(this.cbxSameAdress);
     this.tabAddCompany.Controls.Add(this.label29);
     this.tabAddCompany.Controls.Add(this.label30);
     this.tabAddCompany.Controls.Add(this.label31);
     this.tabAddCompany.Controls.Add(this.label32);
     this.tabAddCompany.Controls.Add(this.label33);
     this.tabAddCompany.Controls.Add(this.tbPostalPostNumber);
     this.tabAddCompany.Controls.Add(this.tbPostalStreet);
     this.tabAddCompany.Controls.Add(this.tbPostalCountry);
     this.tabAddCompany.Controls.Add(this.tbPostalCity);
     this.tabAddCompany.Controls.Add(this.cbCustomerType);
     this.tabAddCompany.Controls.Add(this.label34);
     this.tabAddCompany.Controls.Add(this.label35);
     this.tabAddCompany.Controls.Add(this.label36);
     this.tabAddCompany.Controls.Add(this.label37);
     this.tabAddCompany.Controls.Add(this.label38);
     this.tabAddCompany.Controls.Add(this.label39);
     this.tabAddCompany.Controls.Add(this.label40);
     this.tabAddCompany.Controls.Add(this.tbVisitPostNumber);
     this.tabAddCompany.Controls.Add(this.tbVisitStreet);
     this.tabAddCompany.Controls.Add(this.tbVisitCountry);
     this.tabAddCompany.Controls.Add(this.tbVisitCity);
     this.tabAddCompany.Controls.Add(this.tbVatNr);
     this.tabAddCompany.Controls.Add(this.tbTelephone);
     this.tabAddCompany.Controls.Add(this.tbWebPage);
     this.tabAddCompany.Controls.Add(this.tbEmail);
     this.tabAddCompany.Controls.Add(this.tbCompanyName);
     this.tabAddCompany.Controls.Add(this.label41);
     this.tabAddCompany.Controls.Add(this.label51);
     this.tabAddCompany.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabAddCompany.Location = new System.Drawing.Point(4, 26);
     this.tabAddCompany.Name = "tabAddCompany";
     this.tabAddCompany.Size = new System.Drawing.Size(798, 468);
     this.tabAddCompany.TabIndex = 0;
     this.tabAddCompany.Text = "Add/Edit Company";
     //
     // btClearSelection
     //
     this.btClearSelection.Location = new System.Drawing.Point(211, 40);
     this.btClearSelection.Name = "btClearSelection";
     this.btClearSelection.Size = new System.Drawing.Size(50, 23);
     this.btClearSelection.TabIndex = 96;
     this.btClearSelection.Text = "clear";
     this.btClearSelection.UseVisualStyleBackColor = true;
     this.btClearSelection.Visible = false;
     this.btClearSelection.Click += new System.EventHandler(this.BtClearSelectionClick);
     //
     // cbCompanies
     //
     this.cbCompanies.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbCompanies.FormattingEnabled = true;
     this.cbCompanies.Location = new System.Drawing.Point(30, 38);
     this.cbCompanies.Name = "cbCompanies";
     this.cbCompanies.Size = new System.Drawing.Size(162, 25);
     this.cbCompanies.TabIndex = 95;
     this.cbCompanies.SelectedIndexChanged += new System.EventHandler(this.CbCompaniesSelectedIndexChanged);
     //
     // label61
     //
     this.label61.AutoSize = true;
     this.label61.Location = new System.Drawing.Point(27, 144);
     this.label61.Name = "label61";
     this.label61.Size = new System.Drawing.Size(124, 17);
     this.label61.TabIndex = 94;
     this.label61.Text = "or add a new one:";
     //
     // lbxContacts
     //
     this.lbxContacts.FormattingEnabled = true;
     this.lbxContacts.ItemHeight = 17;
     this.lbxContacts.Location = new System.Drawing.Point(409, 43);
     this.lbxContacts.Name = "lbxContacts";
     this.lbxContacts.Size = new System.Drawing.Size(147, 72);
     this.lbxContacts.TabIndex = 93;
     //
     // pbxCompanyLogo
     //
     this.pbxCompanyLogo.Location = new System.Drawing.Point(644, 15);
     this.pbxCompanyLogo.Name = "pbxCompanyLogo";
     this.pbxCompanyLogo.Size = new System.Drawing.Size(148, 100);
     this.pbxCompanyLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbxCompanyLogo.TabIndex = 92;
     this.pbxCompanyLogo.TabStop = false;
     this.pbxCompanyLogo.Visible = false;
     //
     // btDelContactFromCompany
     //
     this.btDelContactFromCompany.Location = new System.Drawing.Point(502, 121);
     this.btDelContactFromCompany.Name = "btDelContactFromCompany";
     this.btDelContactFromCompany.Size = new System.Drawing.Size(54, 23);
     this.btDelContactFromCompany.TabIndex = 90;
     this.btDelContactFromCompany.TabStop = false;
     this.btDelContactFromCompany.Text = "Del";
     this.btDelContactFromCompany.UseVisualStyleBackColor = true;
     this.btDelContactFromCompany.Click += new System.EventHandler(this.BtDelContactFromCompanyClick);
     //
     // btContactToCompany
     //
     this.btContactToCompany.Location = new System.Drawing.Point(407, 121);
     this.btContactToCompany.Name = "btContactToCompany";
     this.btContactToCompany.Size = new System.Drawing.Size(50, 23);
     this.btContactToCompany.TabIndex = 89;
     this.btContactToCompany.TabStop = false;
     this.btContactToCompany.Text = "Add Company";
     this.btContactToCompany.UseVisualStyleBackColor = true;
     this.btContactToCompany.Click += new System.EventHandler(this.BtContactToCompanyClick);
     //
     // btCompanyAddLogo
     //
     this.btCompanyAddLogo.Location = new System.Drawing.Point(717, 129);
     this.btCompanyAddLogo.Name = "btCompanyAddLogo";
     this.btCompanyAddLogo.Size = new System.Drawing.Size(75, 23);
     this.btCompanyAddLogo.TabIndex = 91;
     this.btCompanyAddLogo.TabStop = false;
     this.btCompanyAddLogo.Text = "Add logo";
     this.btCompanyAddLogo.UseVisualStyleBackColor = true;
     this.btCompanyAddLogo.Click += new System.EventHandler(this.BtCompanyAddLogoClick);
     //
     // label77
     //
     this.label77.AutoSize = true;
     this.label77.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label77.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label77.Location = new System.Drawing.Point(406, 15);
     this.label77.Name = "label77";
     this.label77.Size = new System.Drawing.Size(75, 18);
     this.label77.TabIndex = 88;
     this.label77.Text = "Contacts:";
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label42.Location = new System.Drawing.Point(380, 169);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(116, 18);
     this.label42.TabIndex = 51;
     this.label42.Text = "Contact Details";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(380, 196);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(78, 17);
     this.label26.TabIndex = 48;
     this.label26.Text = "Telephone:";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(380, 260);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(75, 17);
     this.label27.TabIndex = 49;
     this.label27.Text = "Webpage:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(380, 227);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(54, 17);
     this.label28.TabIndex = 50;
     this.label28.Text = "E-mail:";
     //
     // btDelCompany
     //
     this.btDelCompany.Location = new System.Drawing.Point(502, 439);
     this.btDelCompany.Name = "btDelCompany";
     this.btDelCompany.Size = new System.Drawing.Size(107, 23);
     this.btDelCompany.TabIndex = 44;
     this.btDelCompany.TabStop = false;
     this.btDelCompany.Text = "Delete";
     this.btDelCompany.UseVisualStyleBackColor = true;
     this.btDelCompany.Visible = false;
     this.btDelCompany.Click += new System.EventHandler(this.BtDelCompanyClick);
     //
     // btAddCompany
     //
     this.btAddCompany.Enabled = false;
     this.btAddCompany.Location = new System.Drawing.Point(684, 438);
     this.btAddCompany.Name = "btAddCompany";
     this.btAddCompany.Size = new System.Drawing.Size(107, 23);
     this.btAddCompany.TabIndex = 15;
     this.btAddCompany.TabStop = false;
     this.btAddCompany.Text = "Add";
     this.btAddCompany.UseVisualStyleBackColor = true;
     this.btAddCompany.Click += new System.EventHandler(this.BtAddCompanyClick);
     //
     // cbxSameAdress
     //
     this.cbxSameAdress.Appearance = System.Windows.Forms.Appearance.Button;
     this.cbxSameAdress.AutoSize = true;
     this.cbxSameAdress.Location = new System.Drawing.Point(211, 434);
     this.cbxSameAdress.Name = "cbxSameAdress";
     this.cbxSameAdress.Size = new System.Drawing.Size(111, 27);
     this.cbxSameAdress.TabIndex = 41;
     this.cbxSameAdress.TabStop = false;
     this.cbxSameAdress.Text = "Copy to postal";
     this.cbxSameAdress.UseVisualStyleBackColor = true;
     this.cbxSameAdress.CheckedChanged += new System.EventHandler(this.CbSameAdressCheckedChanged);
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(380, 416);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(63, 17);
     this.label29.TabIndex = 31;
     this.label29.Text = "Country:";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(380, 385);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(37, 17);
     this.label30.TabIndex = 36;
     this.label30.Text = "City:";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(380, 353);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(96, 17);
     this.label31.TabIndex = 33;
     this.label31.Text = "Post number:";
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Location = new System.Drawing.Point(380, 322);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(51, 17);
     this.label32.TabIndex = 40;
     this.label32.Text = "Street:";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label33.Location = new System.Drawing.Point(380, 292);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(108, 18);
     this.label33.TabIndex = 37;
     this.label33.Text = "Postal adress:";
     //
     // tbPostalPostNumber
     //
     this.tbPostalPostNumber.Location = new System.Drawing.Point(493, 345);
     this.tbPostalPostNumber.Name = "tbPostalPostNumber";
     this.tbPostalPostNumber.Size = new System.Drawing.Size(175, 25);
     this.tbPostalPostNumber.TabIndex = 12;
     //
     // tbPostalStreet
     //
     this.tbPostalStreet.Location = new System.Drawing.Point(493, 314);
     this.tbPostalStreet.Name = "tbPostalStreet";
     this.tbPostalStreet.Size = new System.Drawing.Size(175, 25);
     this.tbPostalStreet.TabIndex = 11;
     //
     // tbPostalCountry
     //
     this.tbPostalCountry.Location = new System.Drawing.Point(495, 408);
     this.tbPostalCountry.Name = "tbPostalCountry";
     this.tbPostalCountry.Size = new System.Drawing.Size(175, 25);
     this.tbPostalCountry.TabIndex = 14;
     //
     // tbPostalCity
     //
     this.tbPostalCity.Location = new System.Drawing.Point(494, 376);
     this.tbPostalCity.Name = "tbPostalCity";
     this.tbPostalCity.Size = new System.Drawing.Size(175, 25);
     this.tbPostalCity.TabIndex = 13;
     //
     // cbCustomerType
     //
     this.cbCustomerType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbCustomerType.FormattingEnabled = true;
     this.cbCustomerType.Location = new System.Drawing.Point(147, 251);
     this.cbCustomerType.Name = "cbCustomerType";
     this.cbCustomerType.Size = new System.Drawing.Size(175, 25);
     this.cbCustomerType.TabIndex = 3;
     this.cbCustomerType.SelectedIndexChanged += new System.EventHandler(this.CbCompaniesSelectedIndexChanged);
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Location = new System.Drawing.Point(25, 416);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(63, 17);
     this.label34.TabIndex = 21;
     this.label34.Text = "Country:";
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Location = new System.Drawing.Point(27, 385);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(37, 17);
     this.label35.TabIndex = 22;
     this.label35.Text = "City:";
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Location = new System.Drawing.Point(27, 354);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(96, 17);
     this.label36.TabIndex = 19;
     this.label36.Text = "Post number:";
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(27, 323);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(51, 17);
     this.label37.TabIndex = 20;
     this.label37.Text = "Street:";
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label38.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label38.Location = new System.Drawing.Point(27, 292);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(116, 18);
     this.label38.TabIndex = 25;
     this.label38.Text = "Visiting adress:";
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(25, 253);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(106, 17);
     this.label39.TabIndex = 26;
     this.label39.Text = "Company type:";
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Location = new System.Drawing.Point(25, 225);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(116, 17);
     this.label40.TabIndex = 23;
     this.label40.Text = "Company name:";
     //
     // tbVisitPostNumber
     //
     this.tbVisitPostNumber.Location = new System.Drawing.Point(147, 346);
     this.tbVisitPostNumber.Name = "tbVisitPostNumber";
     this.tbVisitPostNumber.Size = new System.Drawing.Size(175, 25);
     this.tbVisitPostNumber.TabIndex = 5;
     //
     // tbVisitStreet
     //
     this.tbVisitStreet.Location = new System.Drawing.Point(147, 315);
     this.tbVisitStreet.Name = "tbVisitStreet";
     this.tbVisitStreet.Size = new System.Drawing.Size(175, 25);
     this.tbVisitStreet.TabIndex = 4;
     //
     // tbVisitCountry
     //
     this.tbVisitCountry.Location = new System.Drawing.Point(147, 408);
     this.tbVisitCountry.Name = "tbVisitCountry";
     this.tbVisitCountry.Size = new System.Drawing.Size(175, 25);
     this.tbVisitCountry.TabIndex = 7;
     //
     // tbVisitCity
     //
     this.tbVisitCity.Location = new System.Drawing.Point(147, 377);
     this.tbVisitCity.Name = "tbVisitCity";
     this.tbVisitCity.Size = new System.Drawing.Size(175, 25);
     this.tbVisitCity.TabIndex = 6;
     //
     // tbVatNr
     //
     this.tbVatNr.Location = new System.Drawing.Point(147, 189);
     this.tbVatNr.Name = "tbVatNr";
     this.tbVatNr.Size = new System.Drawing.Size(175, 25);
     this.tbVatNr.TabIndex = 1;
     //
     // tbTelephone
     //
     this.tbTelephone.Location = new System.Drawing.Point(500, 192);
     this.tbTelephone.Name = "tbTelephone";
     this.tbTelephone.Size = new System.Drawing.Size(175, 25);
     this.tbTelephone.TabIndex = 8;
     //
     // tbWebPage
     //
     this.tbWebPage.Location = new System.Drawing.Point(500, 257);
     this.tbWebPage.Name = "tbWebPage";
     this.tbWebPage.Size = new System.Drawing.Size(175, 25);
     this.tbWebPage.TabIndex = 10;
     //
     // tbEmail
     //
     this.tbEmail.Location = new System.Drawing.Point(500, 224);
     this.tbEmail.Name = "tbEmail";
     this.tbEmail.Size = new System.Drawing.Size(175, 25);
     this.tbEmail.TabIndex = 9;
     //
     // tbCompanyName
     //
     this.tbCompanyName.Location = new System.Drawing.Point(147, 219);
     this.tbCompanyName.Name = "tbCompanyName";
     this.tbCompanyName.Size = new System.Drawing.Size(175, 25);
     this.tbCompanyName.TabIndex = 2;
     this.tbCompanyName.TextChanged += new System.EventHandler(this.TbCompanyNameTextChanged);
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.Location = new System.Drawing.Point(27, 192);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(87, 17);
     this.label41.TabIndex = 17;
     this.label41.Text = "Vat-number:";
     //
     // label51
     //
     this.label51.AutoSize = true;
     this.label51.Location = new System.Drawing.Point(27, 16);
     this.label51.Name = "label51";
     this.label51.Size = new System.Drawing.Size(170, 17);
     this.label51.TabIndex = 94;
     this.label51.Text = "Choose company to edit:";
     //
     // tabViewCompanyNote
     //
     this.tabViewCompanyNote.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabViewCompanyNote.Controls.Add(this.label64);
     this.tabViewCompanyNote.Controls.Add(this.label63);
     this.tabViewCompanyNote.Controls.Add(this.lbNoteInfo);
     this.tabViewCompanyNote.Controls.Add(this.lbNoteSelectNote);
     this.tabViewCompanyNote.Controls.Add(this.label60);
     this.tabViewCompanyNote.Controls.Add(this.btCompanyNoteClear);
     this.tabViewCompanyNote.Controls.Add(this.btNoteCompanyRemoveNote);
     this.tabViewCompanyNote.Controls.Add(this.btSaveCompanyNote);
     this.tabViewCompanyNote.Controls.Add(this.tbNoteCompanySubject);
     this.tabViewCompanyNote.Controls.Add(this.rtxNoteCompanyBody);
     this.tabViewCompanyNote.Controls.Add(this.cbNoteCompanyNote);
     this.tabViewCompanyNote.Controls.Add(this.cbNoteSelectCompany);
     this.tabViewCompanyNote.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabViewCompanyNote.Location = new System.Drawing.Point(4, 26);
     this.tabViewCompanyNote.Name = "tabViewCompanyNote";
     this.tabViewCompanyNote.Padding = new System.Windows.Forms.Padding(3);
     this.tabViewCompanyNote.Size = new System.Drawing.Size(798, 468);
     this.tabViewCompanyNote.TabIndex = 1;
     this.tabViewCompanyNote.Text = "View company notes";
     //
     // label64
     //
     this.label64.AutoSize = true;
     this.label64.Location = new System.Drawing.Point(21, 164);
     this.label64.Name = "label64";
     this.label64.Size = new System.Drawing.Size(42, 17);
     this.label64.TabIndex = 6;
     this.label64.Text = "Note:";
     //
     // label63
     //
     this.label63.AutoSize = true;
     this.label63.Location = new System.Drawing.Point(20, 121);
     this.label63.Name = "label63";
     this.label63.Size = new System.Drawing.Size(61, 17);
     this.label63.TabIndex = 6;
     this.label63.Text = "Subject:";
     //
     // lbNoteInfo
     //
     this.lbNoteInfo.AutoSize = true;
     this.lbNoteInfo.Location = new System.Drawing.Point(270, 67);
     this.lbNoteInfo.Name = "lbNoteInfo";
     this.lbNoteInfo.Size = new System.Drawing.Size(202, 17);
     this.lbNoteInfo.TabIndex = 6;
     this.lbNoteInfo.Text = "(Leave blank to add new note)";
     this.lbNoteInfo.Visible = false;
     //
     // lbNoteSelectNote
     //
     this.lbNoteSelectNote.AutoSize = true;
     this.lbNoteSelectNote.Location = new System.Drawing.Point(12, 65);
     this.lbNoteSelectNote.Name = "lbNoteSelectNote";
     this.lbNoteSelectNote.Size = new System.Drawing.Size(85, 17);
     this.lbNoteSelectNote.TabIndex = 6;
     this.lbNoteSelectNote.Text = "Select note:";
     this.lbNoteSelectNote.Visible = false;
     //
     // label60
     //
     this.label60.AutoSize = true;
     this.label60.Location = new System.Drawing.Point(12, 32);
     this.label60.Name = "label60";
     this.label60.Size = new System.Drawing.Size(120, 17);
     this.label60.TabIndex = 5;
     this.label60.Text = "Select Company:";
     //
     // btCompanyNoteClear
     //
     this.btCompanyNoteClear.Location = new System.Drawing.Point(143, 331);
     this.btCompanyNoteClear.Name = "btCompanyNoteClear";
     this.btCompanyNoteClear.Size = new System.Drawing.Size(75, 23);
     this.btCompanyNoteClear.TabIndex = 4;
     this.btCompanyNoteClear.Text = "Clear";
     this.btCompanyNoteClear.UseVisualStyleBackColor = true;
     this.btCompanyNoteClear.Click += new System.EventHandler(this.BtCompanyNoteClearClick);
     //
     // btNoteCompanyRemoveNote
     //
     this.btNoteCompanyRemoveNote.Location = new System.Drawing.Point(255, 331);
     this.btNoteCompanyRemoveNote.Name = "btNoteCompanyRemoveNote";
     this.btNoteCompanyRemoveNote.Size = new System.Drawing.Size(75, 23);
     this.btNoteCompanyRemoveNote.TabIndex = 3;
     this.btNoteCompanyRemoveNote.Text = "Remove";
     this.btNoteCompanyRemoveNote.UseVisualStyleBackColor = true;
     this.btNoteCompanyRemoveNote.Visible = false;
     this.btNoteCompanyRemoveNote.Click += new System.EventHandler(this.BtNoteCompanyRemoveNoteClick);
     //
     // btSaveCompanyNote
     //
     this.btSaveCompanyNote.Location = new System.Drawing.Point(385, 331);
     this.btSaveCompanyNote.Name = "btSaveCompanyNote";
     this.btSaveCompanyNote.Size = new System.Drawing.Size(75, 23);
     this.btSaveCompanyNote.TabIndex = 3;
     this.btSaveCompanyNote.Text = "Save";
     this.btSaveCompanyNote.UseVisualStyleBackColor = true;
     this.btSaveCompanyNote.Click += new System.EventHandler(this.SaveCompanyNoteClick);
     //
     // tbNoteCompanySubject
     //
     this.tbNoteCompanySubject.Location = new System.Drawing.Point(140, 116);
     this.tbNoteCompanySubject.Name = "tbNoteCompanySubject";
     this.tbNoteCompanySubject.Size = new System.Drawing.Size(133, 25);
     this.tbNoteCompanySubject.TabIndex = 2;
     //
     // rtxNoteCompanyBody
     //
     this.rtxNoteCompanyBody.Location = new System.Drawing.Point(143, 161);
     this.rtxNoteCompanyBody.Name = "rtxNoteCompanyBody";
     this.rtxNoteCompanyBody.Size = new System.Drawing.Size(317, 143);
     this.rtxNoteCompanyBody.TabIndex = 1;
     this.rtxNoteCompanyBody.Text = "";
     //
     // cbNoteCompanyNote
     //
     this.cbNoteCompanyNote.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbNoteCompanyNote.FormattingEnabled = true;
     this.cbNoteCompanyNote.Location = new System.Drawing.Point(143, 64);
     this.cbNoteCompanyNote.Name = "cbNoteCompanyNote";
     this.cbNoteCompanyNote.Size = new System.Drawing.Size(121, 25);
     this.cbNoteCompanyNote.TabIndex = 0;
     this.cbNoteCompanyNote.Visible = false;
     this.cbNoteCompanyNote.SelectedIndexChanged += new System.EventHandler(this.CbNoteCompanyNoteSelectedIndexChanged);
     //
     // cbNoteSelectCompany
     //
     this.cbNoteSelectCompany.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbNoteSelectCompany.FormattingEnabled = true;
     this.cbNoteSelectCompany.Location = new System.Drawing.Point(143, 24);
     this.cbNoteSelectCompany.Name = "cbNoteSelectCompany";
     this.cbNoteSelectCompany.Size = new System.Drawing.Size(121, 25);
     this.cbNoteSelectCompany.TabIndex = 0;
     this.cbNoteSelectCompany.SelectedIndexChanged += new System.EventHandler(this.CbNoteSelectCompanySelectedIndexChanged);
     //
     // tabViewCompanyContacts
     //
     this.tabViewCompanyContacts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabViewCompanyContacts.Controls.Add(this.btAddCompanyContactsDone);
     this.tabViewCompanyContacts.Controls.Add(this.btAddContactToCompany);
     this.tabViewCompanyContacts.Controls.Add(this.dgwCompanyContacts);
     this.tabViewCompanyContacts.Location = new System.Drawing.Point(4, 26);
     this.tabViewCompanyContacts.Name = "tabViewCompanyContacts";
     this.tabViewCompanyContacts.Size = new System.Drawing.Size(798, 468);
     this.tabViewCompanyContacts.TabIndex = 2;
     this.tabViewCompanyContacts.Text = "View Contacts";
     //
     // btAddCompanyContactsDone
     //
     this.btAddCompanyContactsDone.Location = new System.Drawing.Point(513, 261);
     this.btAddCompanyContactsDone.Name = "btAddCompanyContactsDone";
     this.btAddCompanyContactsDone.Size = new System.Drawing.Size(75, 23);
     this.btAddCompanyContactsDone.TabIndex = 2;
     this.btAddCompanyContactsDone.Text = "Done";
     this.btAddCompanyContactsDone.UseVisualStyleBackColor = true;
     this.btAddCompanyContactsDone.Click += new System.EventHandler(this.BtAddCompanyContactsDoneClick);
     //
     // btAddContactToCompany
     //
     this.btAddContactToCompany.Location = new System.Drawing.Point(316, 261);
     this.btAddContactToCompany.Name = "btAddContactToCompany";
     this.btAddContactToCompany.Size = new System.Drawing.Size(153, 23);
     this.btAddContactToCompany.TabIndex = 1;
     this.btAddContactToCompany.Text = "Add To company";
     this.btAddContactToCompany.UseVisualStyleBackColor = true;
     this.btAddContactToCompany.Visible = false;
     this.btAddContactToCompany.Click += new System.EventHandler(this.BtAddContactToCompanyClick);
     //
     // dgwCompanyContacts
     //
     this.dgwCompanyContacts.AllowUserToAddRows = false;
     this.dgwCompanyContacts.AllowUserToDeleteRows = false;
     this.dgwCompanyContacts.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgwCompanyContacts.Location = new System.Drawing.Point(16, 13);
     this.dgwCompanyContacts.Name = "dgwCompanyContacts";
     this.dgwCompanyContacts.ReadOnly = true;
     this.dgwCompanyContacts.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgwCompanyContacts.Size = new System.Drawing.Size(758, 225);
     this.dgwCompanyContacts.TabIndex = 0;
     //
     // tabCtrlAppoinments
     //
     this.tabCtrlAppoinments.Controls.Add(this.tabAddAppointment);
     this.tabCtrlAppoinments.Controls.Add(this.tabViewAppointment);
     this.tabCtrlAppoinments.Controls.Add(this.tabAppointmentDetails);
     this.tabCtrlAppoinments.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlAppoinments.Location = new System.Drawing.Point(158, 60);
     this.tabCtrlAppoinments.Margin = new System.Windows.Forms.Padding(4);
     this.tabCtrlAppoinments.Name = "tabCtrlAppoinments";
     this.tabCtrlAppoinments.SelectedIndex = 0;
     this.tabCtrlAppoinments.Size = new System.Drawing.Size(806, 498);
     this.tabCtrlAppoinments.TabIndex = 1;
     this.tabCtrlAppoinments.Visible = false;
     this.tabCtrlAppoinments.Selected += new System.Windows.Forms.TabControlEventHandler(this.TabCtrlAppoinmentsSelected);
     //
     // tabAddAppointment
     //
     this.tabAddAppointment.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabAddAppointment.Controls.Add(this.btSaveEditedAppointment);
     this.tabAddAppointment.Controls.Add(this.label21);
     this.tabAddAppointment.Controls.Add(this.label16);
     this.tabAddAppointment.Controls.Add(this.clbContacts);
     this.tabAddAppointment.Controls.Add(this.label20);
     this.tabAddAppointment.Controls.Add(this.tbCountry);
     this.tabAddAppointment.Controls.Add(this.label19);
     this.tabAddAppointment.Controls.Add(this.dtpReminderTime);
     this.tabAddAppointment.Controls.Add(this.dtpAppointmentTimeEnd);
     this.tabAddAppointment.Controls.Add(this.dtpAppointmentTimeStart);
     this.tabAddAppointment.Controls.Add(this.btSave);
     this.tabAddAppointment.Controls.Add(this.cbReminderType);
     this.tabAddAppointment.Controls.Add(this.label15);
     this.tabAddAppointment.Controls.Add(this.label14);
     this.tabAddAppointment.Controls.Add(this.dtpReminderDate);
     this.tabAddAppointment.Controls.Add(this.label13);
     this.tabAddAppointment.Controls.Add(this.tbSubject);
     this.tabAddAppointment.Controls.Add(this.label12);
     this.tabAddAppointment.Controls.Add(this.rtbNotes);
     this.tabAddAppointment.Controls.Add(this.label11);
     this.tabAddAppointment.Controls.Add(this.cbCompany);
     this.tabAddAppointment.Controls.Add(this.label10);
     this.tabAddAppointment.Controls.Add(this.label9);
     this.tabAddAppointment.Controls.Add(this.label8);
     this.tabAddAppointment.Controls.Add(this.dtpAppointmentDateStart);
     this.tabAddAppointment.Controls.Add(this.tbCity);
     this.tabAddAppointment.Controls.Add(this.tbPostnumber);
     this.tabAddAppointment.Controls.Add(this.tbStreet);
     this.tabAddAppointment.Controls.Add(this.label6);
     this.tabAddAppointment.Controls.Add(this.label5);
     this.tabAddAppointment.Controls.Add(this.label4);
     this.tabAddAppointment.Controls.Add(this.label3);
     this.tabAddAppointment.Controls.Add(this.cbAppoinmentType);
     this.tabAddAppointment.Controls.Add(this.label2);
     this.tabAddAppointment.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabAddAppointment.Location = new System.Drawing.Point(4, 26);
     this.tabAddAppointment.Margin = new System.Windows.Forms.Padding(4);
     this.tabAddAppointment.Name = "tabAddAppointment";
     this.tabAddAppointment.Padding = new System.Windows.Forms.Padding(4);
     this.tabAddAppointment.Size = new System.Drawing.Size(798, 468);
     this.tabAddAppointment.TabIndex = 0;
     this.tabAddAppointment.Text = "Add/Edit Appointment";
     //
     // btSaveEditedAppointment
     //
     this.btSaveEditedAppointment.Location = new System.Drawing.Point(430, 408);
     this.btSaveEditedAppointment.Margin = new System.Windows.Forms.Padding(4);
     this.btSaveEditedAppointment.Name = "btSaveEditedAppointment";
     this.btSaveEditedAppointment.Size = new System.Drawing.Size(176, 29);
     this.btSaveEditedAppointment.TabIndex = 15;
     this.btSaveEditedAppointment.Text = "Save edited appointment";
     this.btSaveEditedAppointment.UseVisualStyleBackColor = true;
     this.btSaveEditedAppointment.Click += new System.EventHandler(this.BtSaveEditedAppointmentClick);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label21.Location = new System.Drawing.Point(14, 19);
     this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(41, 18);
     this.label21.TabIndex = 46;
     this.label21.Text = "Date";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(589, 86);
     this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(39, 17);
     this.label16.TabIndex = 45;
     this.label16.Text = "Type";
     //
     // clbContacts
     //
     this.clbContacts.FormattingEnabled = true;
     this.clbContacts.Location = new System.Drawing.Point(156, 408);
     this.clbContacts.Name = "clbContacts";
     this.clbContacts.Size = new System.Drawing.Size(235, 44);
     this.clbContacts.TabIndex = 44;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(17, 408);
     this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(67, 17);
     this.label20.TabIndex = 42;
     this.label20.Text = "Contacts";
     //
     // tbCountry
     //
     this.tbCountry.Location = new System.Drawing.Point(158, 334);
     this.tbCountry.Margin = new System.Windows.Forms.Padding(4);
     this.tbCountry.Name = "tbCountry";
     this.tbCountry.Size = new System.Drawing.Size(236, 25);
     this.tbCountry.TabIndex = 8;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(17, 340);
     this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(59, 17);
     this.label19.TabIndex = 40;
     this.label19.Text = "Country";
     //
     // dtpReminderTime
     //
     this.dtpReminderTime.CustomFormat = "HH:MM";
     this.dtpReminderTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpReminderTime.Location = new System.Drawing.Point(513, 78);
     this.dtpReminderTime.Margin = new System.Windows.Forms.Padding(4);
     this.dtpReminderTime.MaxDate = new System.DateTime(2019, 12, 31, 0, 0, 0, 0);
     this.dtpReminderTime.MinDate = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.dtpReminderTime.Name = "dtpReminderTime";
     this.dtpReminderTime.ShowUpDown = true;
     this.dtpReminderTime.Size = new System.Drawing.Size(68, 25);
     this.dtpReminderTime.TabIndex = 11;
     //
     // dtpAppointmentTimeEnd
     //
     this.dtpAppointmentTimeEnd.CustomFormat = "HH:MM";
     this.dtpAppointmentTimeEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpAppointmentTimeEnd.Location = new System.Drawing.Point(306, 115);
     this.dtpAppointmentTimeEnd.Margin = new System.Windows.Forms.Padding(4);
     this.dtpAppointmentTimeEnd.MaxDate = new System.DateTime(2019, 12, 31, 0, 0, 0, 0);
     this.dtpAppointmentTimeEnd.MinDate = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.dtpAppointmentTimeEnd.Name = "dtpAppointmentTimeEnd";
     this.dtpAppointmentTimeEnd.ShowUpDown = true;
     this.dtpAppointmentTimeEnd.Size = new System.Drawing.Size(85, 25);
     this.dtpAppointmentTimeEnd.TabIndex = 3;
     //
     // dtpAppointmentTimeStart
     //
     this.dtpAppointmentTimeStart.CustomFormat = "HH:MM";
     this.dtpAppointmentTimeStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtpAppointmentTimeStart.Location = new System.Drawing.Point(157, 115);
     this.dtpAppointmentTimeStart.Margin = new System.Windows.Forms.Padding(4);
     this.dtpAppointmentTimeStart.MaxDate = new System.DateTime(2019, 12, 31, 0, 0, 0, 0);
     this.dtpAppointmentTimeStart.MinDate = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.dtpAppointmentTimeStart.Name = "dtpAppointmentTimeStart";
     this.dtpAppointmentTimeStart.ShowUpDown = true;
     this.dtpAppointmentTimeStart.Size = new System.Drawing.Size(85, 25);
     this.dtpAppointmentTimeStart.TabIndex = 2;
     //
     // btSave
     //
     this.btSave.Location = new System.Drawing.Point(614, 408);
     this.btSave.Margin = new System.Windows.Forms.Padding(4);
     this.btSave.Name = "btSave";
     this.btSave.Size = new System.Drawing.Size(161, 29);
     this.btSave.TabIndex = 29;
     this.btSave.Text = "Add new appointment";
     this.btSave.UseVisualStyleBackColor = true;
     this.btSave.Click += new System.EventHandler(this.BtSaveClick);
     //
     // cbReminderType
     //
     this.cbReminderType.BackColor = System.Drawing.SystemColors.Window;
     this.cbReminderType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbReminderType.FormattingEnabled = true;
     this.cbReminderType.Location = new System.Drawing.Point(645, 78);
     this.cbReminderType.Margin = new System.Windows.Forms.Padding(4);
     this.cbReminderType.Name = "cbReminderType";
     this.cbReminderType.Size = new System.Drawing.Size(130, 25);
     this.cbReminderType.TabIndex = 12;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(429, 84);
     this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(40, 17);
     this.label15.TabIndex = 25;
     this.label15.Text = "Time";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(429, 47);
     this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(39, 17);
     this.label14.TabIndex = 24;
     this.label14.Text = "Date";
     //
     // dtpReminderDate
     //
     this.dtpReminderDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpReminderDate.Location = new System.Drawing.Point(513, 41);
     this.dtpReminderDate.Margin = new System.Windows.Forms.Padding(4);
     this.dtpReminderDate.MaxDate = new System.DateTime(2019, 12, 31, 0, 0, 0, 0);
     this.dtpReminderDate.MinDate = new System.DateTime(2011, 10, 13, 0, 0, 0, 0);
     this.dtpReminderDate.Name = "dtpReminderDate";
     this.dtpReminderDate.Size = new System.Drawing.Size(262, 25);
     this.dtpReminderDate.TabIndex = 10;
     this.dtpReminderDate.Value = new System.DateTime(2011, 10, 13, 0, 0, 0, 0);
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label13.Location = new System.Drawing.Point(429, 19);
     this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(77, 18);
     this.label13.TabIndex = 22;
     this.label13.Text = "Reminder";
     //
     // tbSubject
     //
     this.tbSubject.Location = new System.Drawing.Point(432, 142);
     this.tbSubject.Margin = new System.Windows.Forms.Padding(4);
     this.tbSubject.Name = "tbSubject";
     this.tbSubject.Size = new System.Drawing.Size(343, 25);
     this.tbSubject.TabIndex = 13;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label12.Location = new System.Drawing.Point(429, 115);
     this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(62, 18);
     this.label12.TabIndex = 20;
     this.label12.Text = "Subject";
     //
     // rtbNotes
     //
     this.rtbNotes.Location = new System.Drawing.Point(432, 201);
     this.rtbNotes.Margin = new System.Windows.Forms.Padding(4);
     this.rtbNotes.Name = "rtbNotes";
     this.rtbNotes.Size = new System.Drawing.Size(343, 196);
     this.rtbNotes.TabIndex = 14;
     this.rtbNotes.Text = "";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label11.Location = new System.Drawing.Point(429, 174);
     this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(42, 18);
     this.label11.TabIndex = 18;
     this.label11.Text = "Note";
     //
     // cbCompany
     //
     this.cbCompany.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbCompany.FormattingEnabled = true;
     this.cbCompany.Location = new System.Drawing.Point(157, 366);
     this.cbCompany.Margin = new System.Windows.Forms.Padding(4);
     this.cbCompany.Name = "cbCompany";
     this.cbCompany.Size = new System.Drawing.Size(236, 25);
     this.cbCompany.TabIndex = 9;
     this.cbCompany.SelectedIndexChanged += new System.EventHandler(this.CbCompanySelectedIndexChanged);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(17, 374);
     this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(71, 17);
     this.label10.TabIndex = 16;
     this.label10.Text = "Company";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(262, 119);
     this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(34, 17);
     this.label9.TabIndex = 14;
     this.label9.Text = "End";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(17, 121);
     this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(73, 17);
     this.label8.TabIndex = 12;
     this.label8.Text = "Time start";
     //
     // dtpAppointmentDateStart
     //
     this.dtpAppointmentDateStart.CustomFormat = "";
     this.dtpAppointmentDateStart.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpAppointmentDateStart.Location = new System.Drawing.Point(157, 41);
     this.dtpAppointmentDateStart.Margin = new System.Windows.Forms.Padding(4);
     this.dtpAppointmentDateStart.MaxDate = new System.DateTime(2019, 12, 31, 0, 0, 0, 0);
     this.dtpAppointmentDateStart.MinDate = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.dtpAppointmentDateStart.Name = "dtpAppointmentDateStart";
     this.dtpAppointmentDateStart.Size = new System.Drawing.Size(236, 25);
     this.dtpAppointmentDateStart.TabIndex = 1;
     //
     // tbCity
     //
     this.tbCity.Location = new System.Drawing.Point(157, 299);
     this.tbCity.Margin = new System.Windows.Forms.Padding(4);
     this.tbCity.Name = "tbCity";
     this.tbCity.Size = new System.Drawing.Size(236, 25);
     this.tbCity.TabIndex = 7;
     //
     // tbPostnumber
     //
     this.tbPostnumber.Location = new System.Drawing.Point(157, 265);
     this.tbPostnumber.Margin = new System.Windows.Forms.Padding(4);
     this.tbPostnumber.Name = "tbPostnumber";
     this.tbPostnumber.Size = new System.Drawing.Size(104, 25);
     this.tbPostnumber.TabIndex = 6;
     //
     // tbStreet
     //
     this.tbStreet.Location = new System.Drawing.Point(157, 232);
     this.tbStreet.Margin = new System.Windows.Forms.Padding(4);
     this.tbStreet.Name = "tbStreet";
     this.tbStreet.Size = new System.Drawing.Size(236, 25);
     this.tbStreet.TabIndex = 5;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(17, 271);
     this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(88, 17);
     this.label6.TabIndex = 6;
     this.label6.Text = "Postnumber";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(17, 305);
     this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(33, 17);
     this.label5.TabIndex = 5;
     this.label5.Text = "City";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(17, 238);
     this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(47, 17);
     this.label4.TabIndex = 4;
     this.label4.Text = "Street";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label3.Location = new System.Drawing.Point(17, 206);
     this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(69, 18);
     this.label3.TabIndex = 3;
     this.label3.Text = "Location";
     //
     // cbAppoinmentType
     //
     this.cbAppoinmentType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbAppoinmentType.FormattingEnabled = true;
     this.cbAppoinmentType.Location = new System.Drawing.Point(157, 158);
     this.cbAppoinmentType.Margin = new System.Windows.Forms.Padding(4);
     this.cbAppoinmentType.Name = "cbAppoinmentType";
     this.cbAppoinmentType.Size = new System.Drawing.Size(236, 25);
     this.cbAppoinmentType.TabIndex = 4;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(17, 161);
     this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(120, 17);
     this.label2.TabIndex = 1;
     this.label2.Text = "Appointment type";
     //
     // tabViewAppointment
     //
     this.tabViewAppointment.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabViewAppointment.Controls.Add(this.btViewDetailsOfAppointment);
     this.tabViewAppointment.Controls.Add(this.tbSearchAppointmentsByContact);
     this.tabViewAppointment.Controls.Add(this.panelSearchOptionsAppointments);
     this.tabViewAppointment.Controls.Add(this.btDelAppointment);
     this.tabViewAppointment.Controls.Add(this.btEditAppointment);
     this.tabViewAppointment.Controls.Add(this.tbSearchAppointmentsWithFilter);
     this.tabViewAppointment.Controls.Add(this.dgvViewAppoinments);
     this.tabViewAppointment.Controls.Add(this.cbCompanySearch);
     this.tabViewAppointment.Controls.Add(this.label22);
     this.tabViewAppointment.Controls.Add(this.label7);
     this.tabViewAppointment.Controls.Add(this.label23);
     this.tabViewAppointment.Controls.Add(this.label24);
     this.tabViewAppointment.Controls.Add(this.tbSearchQuery);
     this.tabViewAppointment.Controls.Add(this.mcAppointments);
     this.tabViewAppointment.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabViewAppointment.Location = new System.Drawing.Point(4, 26);
     this.tabViewAppointment.Name = "tabViewAppointment";
     this.tabViewAppointment.Padding = new System.Windows.Forms.Padding(3);
     this.tabViewAppointment.Size = new System.Drawing.Size(798, 468);
     this.tabViewAppointment.TabIndex = 2;
     this.tabViewAppointment.Text = "View appointments";
     //
     // btViewDetailsOfAppointment
     //
     this.btViewDetailsOfAppointment.Location = new System.Drawing.Point(644, 433);
     this.btViewDetailsOfAppointment.Name = "btViewDetailsOfAppointment";
     this.btViewDetailsOfAppointment.Size = new System.Drawing.Size(133, 24);
     this.btViewDetailsOfAppointment.TabIndex = 48;
     this.btViewDetailsOfAppointment.Text = "View details";
     this.btViewDetailsOfAppointment.UseVisualStyleBackColor = true;
     this.btViewDetailsOfAppointment.Click += new System.EventHandler(this.BtViewDetailsOfAppointmentClick);
     //
     // tbSearchAppointmentsByContact
     //
     this.tbSearchAppointmentsByContact.Location = new System.Drawing.Point(37, 355);
     this.tbSearchAppointmentsByContact.Name = "tbSearchAppointmentsByContact";
     this.tbSearchAppointmentsByContact.Size = new System.Drawing.Size(171, 25);
     this.tbSearchAppointmentsByContact.TabIndex = 47;
     //
     // panelSearchOptionsAppointments
     //
     this.panelSearchOptionsAppointments.Controls.Add(this.rbtSearchByAppointmentDate);
     this.panelSearchOptionsAppointments.Controls.Add(this.rtbSearchAppointmentsByContacts);
     this.panelSearchOptionsAppointments.Controls.Add(this.rbtSearchAppointmentsByCompany);
     this.panelSearchOptionsAppointments.Controls.Add(this.rbtSearchwordAppointment);
     this.panelSearchOptionsAppointments.Location = new System.Drawing.Point(5, 5);
     this.panelSearchOptionsAppointments.Name = "panelSearchOptionsAppointments";
     this.panelSearchOptionsAppointments.Size = new System.Drawing.Size(32, 455);
     this.panelSearchOptionsAppointments.TabIndex = 46;
     //
     // rbtSearchByAppointmentDate
     //
     this.rbtSearchByAppointmentDate.AutoSize = true;
     this.rbtSearchByAppointmentDate.Location = new System.Drawing.Point(9, 58);
     this.rbtSearchByAppointmentDate.Name = "rbtSearchByAppointmentDate";
     this.rbtSearchByAppointmentDate.Size = new System.Drawing.Size(14, 13);
     this.rbtSearchByAppointmentDate.TabIndex = 2;
     this.rbtSearchByAppointmentDate.Tag = "2";
     this.rbtSearchByAppointmentDate.UseVisualStyleBackColor = true;
     //
     // rtbSearchAppointmentsByContacts
     //
     this.rtbSearchAppointmentsByContacts.AutoSize = true;
     this.rtbSearchAppointmentsByContacts.Location = new System.Drawing.Point(9, 326);
     this.rtbSearchAppointmentsByContacts.Name = "rtbSearchAppointmentsByContacts";
     this.rtbSearchAppointmentsByContacts.Size = new System.Drawing.Size(14, 13);
     this.rtbSearchAppointmentsByContacts.TabIndex = 1;
     this.rtbSearchAppointmentsByContacts.Tag = "4";
     this.rtbSearchAppointmentsByContacts.UseVisualStyleBackColor = true;
     //
     // rbtSearchAppointmentsByCompany
     //
     this.rbtSearchAppointmentsByCompany.AutoSize = true;
     this.rbtSearchAppointmentsByCompany.Location = new System.Drawing.Point(9, 402);
     this.rbtSearchAppointmentsByCompany.Name = "rbtSearchAppointmentsByCompany";
     this.rbtSearchAppointmentsByCompany.Size = new System.Drawing.Size(14, 13);
     this.rbtSearchAppointmentsByCompany.TabIndex = 1;
     this.rbtSearchAppointmentsByCompany.Tag = "5";
     this.rbtSearchAppointmentsByCompany.UseVisualStyleBackColor = true;
     //
     // rbtSearchwordAppointment
     //
     this.rbtSearchwordAppointment.AutoSize = true;
     this.rbtSearchwordAppointment.Checked = true;
     this.rbtSearchwordAppointment.Location = new System.Drawing.Point(9, 7);
     this.rbtSearchwordAppointment.Name = "rbtSearchwordAppointment";
     this.rbtSearchwordAppointment.Size = new System.Drawing.Size(14, 13);
     this.rbtSearchwordAppointment.TabIndex = 0;
     this.rbtSearchwordAppointment.TabStop = true;
     this.rbtSearchwordAppointment.Tag = "1";
     this.rbtSearchwordAppointment.UseVisualStyleBackColor = true;
     //
     // btDelAppointment
     //
     this.btDelAppointment.Location = new System.Drawing.Point(460, 436);
     this.btDelAppointment.Name = "btDelAppointment";
     this.btDelAppointment.Size = new System.Drawing.Size(78, 24);
     this.btDelAppointment.TabIndex = 36;
     this.btDelAppointment.Text = "Delete";
     this.btDelAppointment.UseVisualStyleBackColor = true;
     this.btDelAppointment.Click += new System.EventHandler(this.BtDelAppointmentClick);
     //
     // btEditAppointment
     //
     this.btEditAppointment.Location = new System.Drawing.Point(554, 435);
     this.btEditAppointment.Name = "btEditAppointment";
     this.btEditAppointment.Size = new System.Drawing.Size(78, 24);
     this.btEditAppointment.TabIndex = 35;
     this.btEditAppointment.Text = "Edit";
     this.btEditAppointment.UseVisualStyleBackColor = true;
     this.btEditAppointment.Click += new System.EventHandler(this.BtEditAppointmentClick);
     //
     // tbSearchAppointmentsWithFilter
     //
     this.tbSearchAppointmentsWithFilter.Location = new System.Drawing.Point(220, 433);
     this.tbSearchAppointmentsWithFilter.Name = "tbSearchAppointmentsWithFilter";
     this.tbSearchAppointmentsWithFilter.Size = new System.Drawing.Size(78, 24);
     this.tbSearchAppointmentsWithFilter.TabIndex = 33;
     this.tbSearchAppointmentsWithFilter.Text = "Search";
     this.tbSearchAppointmentsWithFilter.UseVisualStyleBackColor = true;
     this.tbSearchAppointmentsWithFilter.Click += new System.EventHandler(this.TbSearchAppointmentsWithFilterClick);
     //
     // dgvViewAppoinments
     //
     this.dgvViewAppoinments.AllowUserToAddRows = false;
     this.dgvViewAppoinments.AllowUserToDeleteRows = false;
     this.dgvViewAppoinments.AllowUserToOrderColumns = true;
     this.dgvViewAppoinments.AllowUserToResizeColumns = false;
     this.dgvViewAppoinments.AllowUserToResizeRows = false;
     this.dgvViewAppoinments.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.dgvViewAppoinments.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvViewAppoinments.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvViewAppoinments.ColumnHeadersVisible = false;
     this.dgvViewAppoinments.Location = new System.Drawing.Point(220, 27);
     this.dgvViewAppoinments.MultiSelect = false;
     this.dgvViewAppoinments.Name = "dgvViewAppoinments";
     this.dgvViewAppoinments.ReadOnly = true;
     this.dgvViewAppoinments.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvViewAppoinments.ShowCellToolTips = false;
     this.dgvViewAppoinments.ShowRowErrors = false;
     this.dgvViewAppoinments.Size = new System.Drawing.Size(557, 390);
     this.dgvViewAppoinments.TabIndex = 28;
     //
     // cbCompanySearch
     //
     this.cbCompanySearch.FormattingEnabled = true;
     this.cbCompanySearch.Location = new System.Drawing.Point(37, 430);
     this.cbCompanySearch.Name = "cbCompanySearch";
     this.cbCompanySearch.Size = new System.Drawing.Size(174, 25);
     this.cbCompanySearch.TabIndex = 25;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(40, 405);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(71, 17);
     this.label22.TabIndex = 24;
     this.label22.Text = "Company";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(45, 38);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(57, 17);
     this.label7.TabIndex = 23;
     this.label7.Text = "Subject";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(39, 328);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(59, 17);
     this.label23.TabIndex = 23;
     this.label23.Text = "Contact";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(384, 249);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(91, 17);
     this.label24.TabIndex = 22;
     this.label24.Text = "Filter options";
     //
     // tbSearchQuery
     //
     this.tbSearchQuery.Location = new System.Drawing.Point(41, 8);
     this.tbSearchQuery.Name = "tbSearchQuery";
     this.tbSearchQuery.Size = new System.Drawing.Size(171, 25);
     this.tbSearchQuery.TabIndex = 18;
     //
     // mcAppointments
     //
     this.mcAppointments.Location = new System.Drawing.Point(40, 62);
     this.mcAppointments.MaxSelectionCount = 1;
     this.mcAppointments.Name = "mcAppointments";
     this.mcAppointments.TabIndex = 15;
     //
     // tabAppointmentDetails
     //
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentContacts);
     this.tabAppointmentDetails.Controls.Add(this.label69);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentCompany);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentCountry);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentCity);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentStreet);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentPostnumber);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentReminderType);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentReminderTime);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentReminderDate);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentType);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentStartTime);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentEndTime);
     this.tabAppointmentDetails.Controls.Add(this.label71);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentSubject);
     this.tabAppointmentDetails.Controls.Add(this.lbViewAppointmentStartDate);
     this.tabAppointmentDetails.Controls.Add(this.label45);
     this.tabAppointmentDetails.Controls.Add(this.label46);
     this.tabAppointmentDetails.Controls.Add(this.label47);
     this.tabAppointmentDetails.Controls.Add(this.label48);
     this.tabAppointmentDetails.Controls.Add(this.label50);
     this.tabAppointmentDetails.Controls.Add(this.label52);
     this.tabAppointmentDetails.Controls.Add(this.label53);
     this.tabAppointmentDetails.Controls.Add(this.label54);
     this.tabAppointmentDetails.Controls.Add(this.rtxbViewAppointmentNote);
     this.tabAppointmentDetails.Controls.Add(this.label55);
     this.tabAppointmentDetails.Controls.Add(this.label56);
     this.tabAppointmentDetails.Controls.Add(this.label57);
     this.tabAppointmentDetails.Controls.Add(this.label58);
     this.tabAppointmentDetails.Controls.Add(this.label62);
     this.tabAppointmentDetails.Controls.Add(this.label65);
     this.tabAppointmentDetails.Controls.Add(this.label66);
     this.tabAppointmentDetails.Controls.Add(this.label67);
     this.tabAppointmentDetails.Controls.Add(this.label68);
     this.tabAppointmentDetails.Location = new System.Drawing.Point(4, 26);
     this.tabAppointmentDetails.Name = "tabAppointmentDetails";
     this.tabAppointmentDetails.Padding = new System.Windows.Forms.Padding(3);
     this.tabAppointmentDetails.Size = new System.Drawing.Size(798, 468);
     this.tabAppointmentDetails.TabIndex = 3;
     this.tabAppointmentDetails.Text = "View Details of Appointment";
     this.tabAppointmentDetails.UseVisualStyleBackColor = true;
     //
     // lbViewAppointmentContacts
     //
     this.lbViewAppointmentContacts.FormattingEnabled = true;
     this.lbViewAppointmentContacts.ItemHeight = 17;
     this.lbViewAppointmentContacts.Location = new System.Drawing.Point(531, 399);
     this.lbViewAppointmentContacts.Name = "lbViewAppointmentContacts";
     this.lbViewAppointmentContacts.Size = new System.Drawing.Size(237, 55);
     this.lbViewAppointmentContacts.TabIndex = 103;
     //
     // label69
     //
     this.label69.AutoSize = true;
     this.label69.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label69.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label69.Location = new System.Drawing.Point(434, 349);
     this.label69.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label69.Name = "label69";
     this.label69.Size = new System.Drawing.Size(76, 18);
     this.label69.TabIndex = 102;
     this.label69.Text = "Attending";
     //
     // lbViewAppointmentCompany
     //
     this.lbViewAppointmentCompany.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentCompany.Location = new System.Drawing.Point(529, 379);
     this.lbViewAppointmentCompany.Name = "lbViewAppointmentCompany";
     this.lbViewAppointmentCompany.Size = new System.Drawing.Size(263, 22);
     this.lbViewAppointmentCompany.TabIndex = 100;
     this.lbViewAppointmentCompany.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentCountry
     //
     this.lbViewAppointmentCountry.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentCountry.Location = new System.Drawing.Point(528, 310);
     this.lbViewAppointmentCountry.Name = "lbViewAppointmentCountry";
     this.lbViewAppointmentCountry.Size = new System.Drawing.Size(263, 22);
     this.lbViewAppointmentCountry.TabIndex = 99;
     this.lbViewAppointmentCountry.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentCity
     //
     this.lbViewAppointmentCity.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentCity.Location = new System.Drawing.Point(529, 278);
     this.lbViewAppointmentCity.Name = "lbViewAppointmentCity";
     this.lbViewAppointmentCity.Size = new System.Drawing.Size(263, 22);
     this.lbViewAppointmentCity.TabIndex = 98;
     this.lbViewAppointmentCity.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentStreet
     //
     this.lbViewAppointmentStreet.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentStreet.Location = new System.Drawing.Point(532, 213);
     this.lbViewAppointmentStreet.Name = "lbViewAppointmentStreet";
     this.lbViewAppointmentStreet.Size = new System.Drawing.Size(263, 22);
     this.lbViewAppointmentStreet.TabIndex = 97;
     this.lbViewAppointmentStreet.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentPostnumber
     //
     this.lbViewAppointmentPostnumber.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentPostnumber.Location = new System.Drawing.Point(532, 249);
     this.lbViewAppointmentPostnumber.Name = "lbViewAppointmentPostnumber";
     this.lbViewAppointmentPostnumber.Size = new System.Drawing.Size(263, 22);
     this.lbViewAppointmentPostnumber.TabIndex = 96;
     this.lbViewAppointmentPostnumber.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentReminderType
     //
     this.lbViewAppointmentReminderType.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentReminderType.Location = new System.Drawing.Point(532, 115);
     this.lbViewAppointmentReminderType.Name = "lbViewAppointmentReminderType";
     this.lbViewAppointmentReminderType.Size = new System.Drawing.Size(160, 22);
     this.lbViewAppointmentReminderType.TabIndex = 94;
     this.lbViewAppointmentReminderType.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentReminderTime
     //
     this.lbViewAppointmentReminderTime.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentReminderTime.Location = new System.Drawing.Point(528, 80);
     this.lbViewAppointmentReminderTime.Name = "lbViewAppointmentReminderTime";
     this.lbViewAppointmentReminderTime.Size = new System.Drawing.Size(95, 22);
     this.lbViewAppointmentReminderTime.TabIndex = 93;
     this.lbViewAppointmentReminderTime.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentReminderDate
     //
     this.lbViewAppointmentReminderDate.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentReminderDate.Location = new System.Drawing.Point(528, 43);
     this.lbViewAppointmentReminderDate.Name = "lbViewAppointmentReminderDate";
     this.lbViewAppointmentReminderDate.Size = new System.Drawing.Size(126, 22);
     this.lbViewAppointmentReminderDate.TabIndex = 92;
     this.lbViewAppointmentReminderDate.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentType
     //
     this.lbViewAppointmentType.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentType.Location = new System.Drawing.Point(27, 414);
     this.lbViewAppointmentType.Name = "lbViewAppointmentType";
     this.lbViewAppointmentType.Size = new System.Drawing.Size(126, 22);
     this.lbViewAppointmentType.TabIndex = 91;
     this.lbViewAppointmentType.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentStartTime
     //
     this.lbViewAppointmentStartTime.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentStartTime.Location = new System.Drawing.Point(82, 357);
     this.lbViewAppointmentStartTime.Name = "lbViewAppointmentStartTime";
     this.lbViewAppointmentStartTime.Size = new System.Drawing.Size(93, 22);
     this.lbViewAppointmentStartTime.TabIndex = 90;
     this.lbViewAppointmentStartTime.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentEndTime
     //
     this.lbViewAppointmentEndTime.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentEndTime.Location = new System.Drawing.Point(228, 357);
     this.lbViewAppointmentEndTime.Name = "lbViewAppointmentEndTime";
     this.lbViewAppointmentEndTime.Size = new System.Drawing.Size(126, 22);
     this.lbViewAppointmentEndTime.TabIndex = 89;
     this.lbViewAppointmentEndTime.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label71
     //
     this.label71.AutoSize = true;
     this.label71.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label71.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label71.Location = new System.Drawing.Point(22, 336);
     this.label71.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label71.Name = "label71";
     this.label71.Size = new System.Drawing.Size(43, 18);
     this.label71.TabIndex = 88;
     this.label71.Text = "Time";
     //
     // lbViewAppointmentSubject
     //
     this.lbViewAppointmentSubject.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentSubject.Location = new System.Drawing.Point(21, 36);
     this.lbViewAppointmentSubject.Name = "lbViewAppointmentSubject";
     this.lbViewAppointmentSubject.Size = new System.Drawing.Size(394, 22);
     this.lbViewAppointmentSubject.TabIndex = 87;
     this.lbViewAppointmentSubject.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lbViewAppointmentStartDate
     //
     this.lbViewAppointmentStartDate.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.lbViewAppointmentStartDate.Location = new System.Drawing.Point(71, 266);
     this.lbViewAppointmentStartDate.Name = "lbViewAppointmentStartDate";
     this.lbViewAppointmentStartDate.Size = new System.Drawing.Size(126, 22);
     this.lbViewAppointmentStartDate.TabIndex = 85;
     this.lbViewAppointmentStartDate.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label45.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label45.Location = new System.Drawing.Point(22, 244);
     this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(41, 18);
     this.label45.TabIndex = 83;
     this.label45.Text = "Date";
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Location = new System.Drawing.Point(434, 118);
     this.label46.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(39, 17);
     this.label46.TabIndex = 82;
     this.label46.Text = "Type";
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Location = new System.Drawing.Point(434, 404);
     this.label47.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(67, 17);
     this.label47.TabIndex = 80;
     this.label47.Text = "Contacts";
     //
     // label48
     //
     this.label48.AutoSize = true;
     this.label48.Location = new System.Drawing.Point(434, 310);
     this.label48.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label48.Name = "label48";
     this.label48.Size = new System.Drawing.Size(59, 17);
     this.label48.TabIndex = 78;
     this.label48.Text = "Country";
     //
     // label50
     //
     this.label50.AutoSize = true;
     this.label50.Location = new System.Drawing.Point(434, 83);
     this.label50.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label50.Name = "label50";
     this.label50.Size = new System.Drawing.Size(40, 17);
     this.label50.TabIndex = 70;
     this.label50.Text = "Time";
     //
     // label52
     //
     this.label52.AutoSize = true;
     this.label52.Location = new System.Drawing.Point(434, 46);
     this.label52.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label52.Name = "label52";
     this.label52.Size = new System.Drawing.Size(39, 17);
     this.label52.TabIndex = 69;
     this.label52.Text = "Date";
     //
     // label53
     //
     this.label53.AutoSize = true;
     this.label53.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label53.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label53.Location = new System.Drawing.Point(434, 18);
     this.label53.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label53.Name = "label53";
     this.label53.Size = new System.Drawing.Size(77, 18);
     this.label53.TabIndex = 67;
     this.label53.Text = "Reminder";
     //
     // label54
     //
     this.label54.AutoSize = true;
     this.label54.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label54.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label54.Location = new System.Drawing.Point(20, 10);
     this.label54.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label54.Name = "label54";
     this.label54.Size = new System.Drawing.Size(62, 18);
     this.label54.TabIndex = 65;
     this.label54.Text = "Subject";
     //
     // rtxbViewAppointmentNote
     //
     this.rtxbViewAppointmentNote.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.rtxbViewAppointmentNote.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.rtxbViewAppointmentNote.Enabled = false;
     this.rtxbViewAppointmentNote.Location = new System.Drawing.Point(25, 101);
     this.rtxbViewAppointmentNote.Margin = new System.Windows.Forms.Padding(4);
     this.rtxbViewAppointmentNote.Name = "rtxbViewAppointmentNote";
     this.rtxbViewAppointmentNote.ReadOnly = true;
     this.rtxbViewAppointmentNote.Size = new System.Drawing.Size(390, 139);
     this.rtxbViewAppointmentNote.TabIndex = 64;
     this.rtxbViewAppointmentNote.Text = "";
     //
     // label55
     //
     this.label55.AutoSize = true;
     this.label55.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label55.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label55.Location = new System.Drawing.Point(20, 66);
     this.label55.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label55.Name = "label55";
     this.label55.Size = new System.Drawing.Size(42, 18);
     this.label55.TabIndex = 63;
     this.label55.Text = "Note";
     //
     // label56
     //
     this.label56.AutoSize = true;
     this.label56.Location = new System.Drawing.Point(434, 376);
     this.label56.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label56.Name = "label56";
     this.label56.Size = new System.Drawing.Size(71, 17);
     this.label56.TabIndex = 61;
     this.label56.Text = "Company";
     //
     // label57
     //
     this.label57.AutoSize = true;
     this.label57.Location = new System.Drawing.Point(182, 357);
     this.label57.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label57.Name = "label57";
     this.label57.Size = new System.Drawing.Size(34, 17);
     this.label57.TabIndex = 60;
     this.label57.Text = "End";
     //
     // label58
     //
     this.label58.AutoSize = true;
     this.label58.Location = new System.Drawing.Point(27, 358);
     this.label58.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label58.Name = "label58";
     this.label58.Size = new System.Drawing.Size(39, 17);
     this.label58.TabIndex = 59;
     this.label58.Text = "Start";
     //
     // label62
     //
     this.label62.AutoSize = true;
     this.label62.Location = new System.Drawing.Point(434, 249);
     this.label62.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label62.Name = "label62";
     this.label62.Size = new System.Drawing.Size(88, 17);
     this.label62.TabIndex = 53;
     this.label62.Text = "Postnumber";
     //
     // label65
     //
     this.label65.AutoSize = true;
     this.label65.Location = new System.Drawing.Point(434, 279);
     this.label65.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label65.Name = "label65";
     this.label65.Size = new System.Drawing.Size(33, 17);
     this.label65.TabIndex = 52;
     this.label65.Text = "City";
     //
     // label66
     //
     this.label66.AutoSize = true;
     this.label66.Location = new System.Drawing.Point(434, 213);
     this.label66.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label66.Name = "label66";
     this.label66.Size = new System.Drawing.Size(47, 17);
     this.label66.TabIndex = 51;
     this.label66.Text = "Street";
     //
     // label67
     //
     this.label67.AutoSize = true;
     this.label67.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label67.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label67.Location = new System.Drawing.Point(434, 172);
     this.label67.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label67.Name = "label67";
     this.label67.Size = new System.Drawing.Size(69, 18);
     this.label67.TabIndex = 50;
     this.label67.Text = "Location";
     //
     // label68
     //
     this.label68.AutoSize = true;
     this.label68.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label68.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label68.Location = new System.Drawing.Point(27, 387);
     this.label68.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label68.Name = "label68";
     this.label68.Size = new System.Drawing.Size(131, 18);
     this.label68.TabIndex = 48;
     this.label68.Text = "Appointment type";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // pbHome
     //
     this.pbHome.BackColor = System.Drawing.Color.Transparent;
     this.pbHome.Image = global::CsiCrm.Properties.Resources.homeBG3;
     this.pbHome.Location = new System.Drawing.Point(158, 60);
     this.pbHome.Name = "pbHome";
     this.pbHome.Size = new System.Drawing.Size(807, 496);
     this.pbHome.TabIndex = 32;
     this.pbHome.TabStop = false;
     //
     // tabCtrlContact
     //
     this.tabCtrlContact.Controls.Add(this.tabAddContact);
     this.tabCtrlContact.Controls.Add(this.tabAddDetails);
     this.tabCtrlContact.Controls.Add(this.tabViewContacts);
     this.tabCtrlContact.Controls.Add(this.tabContactNote);
     this.tabCtrlContact.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlContact.Location = new System.Drawing.Point(158, 60);
     this.tabCtrlContact.Name = "tabCtrlContact";
     this.tabCtrlContact.SelectedIndex = 0;
     this.tabCtrlContact.Size = new System.Drawing.Size(806, 498);
     this.tabCtrlContact.TabIndex = 33;
     this.tabCtrlContact.Visible = false;
     this.tabCtrlContact.SelectedIndexChanged += new System.EventHandler(this.TabCtrlContactSelectedIndexChanged1);
     //
     // tabAddContact
     //
     this.tabAddContact.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabAddContact.Controls.Add(this.lbSocialSecurity);
     this.tabAddContact.Controls.Add(this.dtpDateOfBirth);
     this.tabAddContact.Controls.Add(this.btSaveEditedContact);
     this.tabAddContact.Controls.Add(this.btCreate);
     this.tabAddContact.Controls.Add(this.tbxSsn);
     this.tabAddContact.Controls.Add(this.tbxCountry);
     this.tabAddContact.Controls.Add(this.tbxCity);
     this.tabAddContact.Controls.Add(this.tbxPostnr);
     this.tabAddContact.Controls.Add(this.tbxStreet);
     this.tabAddContact.Controls.Add(this.tbxMobile);
     this.tabAddContact.Controls.Add(this.tbxHomeNr);
     this.tabAddContact.Controls.Add(this.tbxEmail);
     this.tabAddContact.Controls.Add(this.btEdit);
     this.tabAddContact.Controls.Add(this.tbxName);
     this.tabAddContact.Controls.Add(this.tbxSurname);
     this.tabAddContact.Controls.Add(this.lbSSN);
     this.tabAddContact.Controls.Add(this.lbCountry);
     this.tabAddContact.Controls.Add(this.lbCity);
     this.tabAddContact.Controls.Add(this.btUpload);
     this.tabAddContact.Controls.Add(this.lbImage);
     this.tabAddContact.Controls.Add(this.lbMobile);
     this.tabAddContact.Controls.Add(this.pbxImage);
     this.tabAddContact.Controls.Add(this.lbPostnr);
     this.tabAddContact.Controls.Add(this.lbHome);
     this.tabAddContact.Controls.Add(this.lbTele);
     this.tabAddContact.Controls.Add(this.lbContactInfo);
     this.tabAddContact.Controls.Add(this.lbStreet);
     this.tabAddContact.Controls.Add(this.lbAddress);
     this.tabAddContact.Controls.Add(this.lbDOB);
     this.tabAddContact.Controls.Add(this.lbEmail);
     this.tabAddContact.Controls.Add(this.lbPersInfo);
     this.tabAddContact.Controls.Add(this.lbName);
     this.tabAddContact.Controls.Add(this.lbSurname);
     this.tabAddContact.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabAddContact.Location = new System.Drawing.Point(4, 26);
     this.tabAddContact.Name = "tabAddContact";
     this.tabAddContact.Padding = new System.Windows.Forms.Padding(3);
     this.tabAddContact.Size = new System.Drawing.Size(798, 468);
     this.tabAddContact.TabIndex = 0;
     this.tabAddContact.Text = "Add/Edit Contact";
     //
     // lbSocialSecurity
     //
     this.lbSocialSecurity.AutoSize = true;
     this.lbSocialSecurity.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbSocialSecurity.Location = new System.Drawing.Point(147, 181);
     this.lbSocialSecurity.Name = "lbSocialSecurity";
     this.lbSocialSecurity.Size = new System.Drawing.Size(133, 15);
     this.lbSocialSecurity.TabIndex = 84;
     this.lbSocialSecurity.Text = "Social security number";
     //
     // dtpDateOfBirth
     //
     this.dtpDateOfBirth.Location = new System.Drawing.Point(127, 118);
     this.dtpDateOfBirth.MaxDate = new System.DateTime(2011, 12, 31, 0, 0, 0, 0);
     this.dtpDateOfBirth.MinDate = new System.DateTime(1905, 1, 1, 0, 0, 0, 0);
     this.dtpDateOfBirth.Name = "dtpDateOfBirth";
     this.dtpDateOfBirth.Size = new System.Drawing.Size(186, 25);
     this.dtpDateOfBirth.TabIndex = 3;
     this.dtpDateOfBirth.TabStop = false;
     this.dtpDateOfBirth.Value = new System.DateTime(2011, 10, 20, 10, 32, 38, 0);
     //
     // btSaveEditedContact
     //
     this.btSaveEditedContact.Location = new System.Drawing.Point(602, 345);
     this.btSaveEditedContact.Name = "btSaveEditedContact";
     this.btSaveEditedContact.Size = new System.Drawing.Size(155, 32);
     this.btSaveEditedContact.TabIndex = 18;
     this.btSaveEditedContact.Text = "Save Edit ";
     this.btSaveEditedContact.UseVisualStyleBackColor = true;
     this.btSaveEditedContact.Click += new System.EventHandler(this.BtSaveEditedContactClick);
     //
     // btCreate
     //
     this.btCreate.Location = new System.Drawing.Point(602, 383);
     this.btCreate.Name = "btCreate";
     this.btCreate.Size = new System.Drawing.Size(155, 33);
     this.btCreate.TabIndex = 13;
     this.btCreate.Text = "Create Contact";
     this.btCreate.UseVisualStyleBackColor = true;
     this.btCreate.Click += new System.EventHandler(this.BtCreateClick);
     //
     // tbxSsn
     //
     this.tbxSsn.Location = new System.Drawing.Point(127, 149);
     this.tbxSsn.MaxLength = 12;
     this.tbxSsn.Name = "tbxSsn";
     this.tbxSsn.Size = new System.Drawing.Size(186, 25);
     this.tbxSsn.TabIndex = 4;
     this.tbxSsn.Validating += new System.ComponentModel.CancelEventHandler(this.TbxSsnValidating);
     //
     // tbxCountry
     //
     this.tbxCountry.Location = new System.Drawing.Point(482, 149);
     this.tbxCountry.Name = "tbxCountry";
     this.tbxCountry.Size = new System.Drawing.Size(275, 25);
     this.tbxCountry.TabIndex = 11;
     this.tbxCountry.Validating += new System.ComponentModel.CancelEventHandler(this.TbxCountryValidating);
     //
     // tbxCity
     //
     this.tbxCity.Location = new System.Drawing.Point(484, 118);
     this.tbxCity.Name = "tbxCity";
     this.tbxCity.Size = new System.Drawing.Size(275, 25);
     this.tbxCity.TabIndex = 10;
     this.tbxCity.Validating += new System.ComponentModel.CancelEventHandler(this.TbxCityValidating);
     //
     // tbxPostnr
     //
     this.tbxPostnr.Location = new System.Drawing.Point(484, 87);
     this.tbxPostnr.Name = "tbxPostnr";
     this.tbxPostnr.Size = new System.Drawing.Size(106, 25);
     this.tbxPostnr.TabIndex = 9;
     this.tbxPostnr.Validating += new System.ComponentModel.CancelEventHandler(this.TbxPostnrValidating);
     //
     // tbxStreet
     //
     this.tbxStreet.Location = new System.Drawing.Point(482, 56);
     this.tbxStreet.Name = "tbxStreet";
     this.tbxStreet.Size = new System.Drawing.Size(275, 25);
     this.tbxStreet.TabIndex = 8;
     this.tbxStreet.Validating += new System.ComponentModel.CancelEventHandler(this.TbxStreetValidating);
     //
     // tbxMobile
     //
     this.tbxMobile.Location = new System.Drawing.Point(110, 427);
     this.tbxMobile.Name = "tbxMobile";
     this.tbxMobile.Size = new System.Drawing.Size(178, 25);
     this.tbxMobile.TabIndex = 7;
     //
     // tbxHomeNr
     //
     this.tbxHomeNr.Location = new System.Drawing.Point(110, 396);
     this.tbxHomeNr.Name = "tbxHomeNr";
     this.tbxHomeNr.Size = new System.Drawing.Size(178, 25);
     this.tbxHomeNr.TabIndex = 6;
     //
     // tbxEmail
     //
     this.tbxEmail.Location = new System.Drawing.Point(110, 314);
     this.tbxEmail.Name = "tbxEmail";
     this.tbxEmail.Size = new System.Drawing.Size(178, 25);
     this.tbxEmail.TabIndex = 5;
     this.tbxEmail.Validating += new System.ComponentModel.CancelEventHandler(this.TbxEmailValidating);
     //
     // btEdit
     //
     this.btEdit.Location = new System.Drawing.Point(602, 422);
     this.btEdit.Name = "btEdit";
     this.btEdit.Size = new System.Drawing.Size(155, 32);
     this.btEdit.TabIndex = 17;
     this.btEdit.Text = "Edit Contact";
     this.btEdit.UseVisualStyleBackColor = true;
     this.btEdit.Click += new System.EventHandler(this.BtEditClick1);
     //
     // tbxName
     //
     this.tbxName.Location = new System.Drawing.Point(127, 54);
     this.tbxName.Name = "tbxName";
     this.tbxName.Size = new System.Drawing.Size(186, 25);
     this.tbxName.TabIndex = 1;
     this.tbxName.Validating += new System.ComponentModel.CancelEventHandler(this.TbxNameValidating);
     //
     // tbxSurname
     //
     this.tbxSurname.Location = new System.Drawing.Point(127, 87);
     this.tbxSurname.Name = "tbxSurname";
     this.tbxSurname.Size = new System.Drawing.Size(186, 25);
     this.tbxSurname.TabIndex = 2;
     this.tbxSurname.Validating += new System.ComponentModel.CancelEventHandler(this.TbxSurnameValidating);
     //
     // lbSSN
     //
     this.lbSSN.AutoSize = true;
     this.lbSSN.Location = new System.Drawing.Point(20, 152);
     this.lbSSN.Name = "lbSSN";
     this.lbSSN.Size = new System.Drawing.Size(42, 17);
     this.lbSSN.TabIndex = 81;
     this.lbSSN.Text = "SSN:";
     //
     // lbCountry
     //
     this.lbCountry.AutoSize = true;
     this.lbCountry.Location = new System.Drawing.Point(380, 152);
     this.lbCountry.Name = "lbCountry";
     this.lbCountry.Size = new System.Drawing.Size(63, 17);
     this.lbCountry.TabIndex = 52;
     this.lbCountry.Text = "Country:";
     //
     // lbCity
     //
     this.lbCity.AutoSize = true;
     this.lbCity.Location = new System.Drawing.Point(380, 120);
     this.lbCity.Name = "lbCity";
     this.lbCity.Size = new System.Drawing.Size(37, 17);
     this.lbCity.TabIndex = 50;
     this.lbCity.Text = "City:";
     //
     // btUpload
     //
     this.btUpload.Location = new System.Drawing.Point(481, 201);
     this.btUpload.Name = "btUpload";
     this.btUpload.Size = new System.Drawing.Size(75, 23);
     this.btUpload.TabIndex = 12;
     this.btUpload.Text = "Upload";
     this.btUpload.UseVisualStyleBackColor = true;
     this.btUpload.Click += new System.EventHandler(this.BtUploadClick);
     //
     // lbImage
     //
     this.lbImage.AutoSize = true;
     this.lbImage.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbImage.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbImage.Location = new System.Drawing.Point(380, 204);
     this.lbImage.Name = "lbImage";
     this.lbImage.Size = new System.Drawing.Size(59, 18);
     this.lbImage.TabIndex = 78;
     this.lbImage.Text = "Picture";
     //
     // lbMobile
     //
     this.lbMobile.AutoSize = true;
     this.lbMobile.Location = new System.Drawing.Point(20, 430);
     this.lbMobile.Name = "lbMobile";
     this.lbMobile.Size = new System.Drawing.Size(53, 17);
     this.lbMobile.TabIndex = 66;
     this.lbMobile.Text = "Mobile:";
     //
     // pbxImage
     //
     this.pbxImage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pbxImage.Location = new System.Drawing.Point(569, 199);
     this.pbxImage.Name = "pbxImage";
     this.pbxImage.Size = new System.Drawing.Size(188, 125);
     this.pbxImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbxImage.TabIndex = 77;
     this.pbxImage.TabStop = false;
     this.pbxImage.Tag = "";
     //
     // lbPostnr
     //
     this.lbPostnr.AutoSize = true;
     this.lbPostnr.Location = new System.Drawing.Point(380, 91);
     this.lbPostnr.Name = "lbPostnr";
     this.lbPostnr.Size = new System.Drawing.Size(98, 17);
     this.lbPostnr.TabIndex = 49;
     this.lbPostnr.Text = "Post Number:";
     //
     // lbHome
     //
     this.lbHome.AutoSize = true;
     this.lbHome.Location = new System.Drawing.Point(20, 402);
     this.lbHome.Name = "lbHome";
     this.lbHome.Size = new System.Drawing.Size(51, 17);
     this.lbHome.TabIndex = 65;
     this.lbHome.Text = "Home:";
     //
     // lbTele
     //
     this.lbTele.AutoSize = true;
     this.lbTele.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbTele.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbTele.Location = new System.Drawing.Point(14, 357);
     this.lbTele.Name = "lbTele";
     this.lbTele.Size = new System.Drawing.Size(122, 18);
     this.lbTele.TabIndex = 69;
     this.lbTele.Text = "Phone Numbers";
     //
     // lbContactInfo
     //
     this.lbContactInfo.AutoSize = true;
     this.lbContactInfo.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbContactInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbContactInfo.Location = new System.Drawing.Point(14, 279);
     this.lbContactInfo.Name = "lbContactInfo";
     this.lbContactInfo.Size = new System.Drawing.Size(147, 18);
     this.lbContactInfo.TabIndex = 68;
     this.lbContactInfo.Text = "Contact Information";
     //
     // lbStreet
     //
     this.lbStreet.AutoSize = true;
     this.lbStreet.Location = new System.Drawing.Point(380, 57);
     this.lbStreet.Name = "lbStreet";
     this.lbStreet.Size = new System.Drawing.Size(51, 17);
     this.lbStreet.TabIndex = 47;
     this.lbStreet.Text = "Street:";
     //
     // lbAddress
     //
     this.lbAddress.AutoSize = true;
     this.lbAddress.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbAddress.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbAddress.Location = new System.Drawing.Point(380, 23);
     this.lbAddress.Name = "lbAddress";
     this.lbAddress.Size = new System.Drawing.Size(57, 18);
     this.lbAddress.TabIndex = 44;
     this.lbAddress.Text = "Adress";
     //
     // lbDOB
     //
     this.lbDOB.AutoSize = true;
     this.lbDOB.Location = new System.Drawing.Point(20, 120);
     this.lbDOB.Name = "lbDOB";
     this.lbDOB.Size = new System.Drawing.Size(97, 17);
     this.lbDOB.TabIndex = 70;
     this.lbDOB.Text = "Date-of-birth: ";
     //
     // lbEmail
     //
     this.lbEmail.AutoSize = true;
     this.lbEmail.Location = new System.Drawing.Point(20, 317);
     this.lbEmail.Name = "lbEmail";
     this.lbEmail.Size = new System.Drawing.Size(52, 17);
     this.lbEmail.TabIndex = 64;
     this.lbEmail.Text = "E-Mail:";
     //
     // lbPersInfo
     //
     this.lbPersInfo.AutoSize = true;
     this.lbPersInfo.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbPersInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbPersInfo.Location = new System.Drawing.Point(14, 23);
     this.lbPersInfo.Name = "lbPersInfo";
     this.lbPersInfo.Size = new System.Drawing.Size(155, 18);
     this.lbPersInfo.TabIndex = 67;
     this.lbPersInfo.Text = "Personal Information";
     //
     // lbName
     //
     this.lbName.AutoSize = true;
     this.lbName.Location = new System.Drawing.Point(20, 56);
     this.lbName.Name = "lbName";
     this.lbName.Size = new System.Drawing.Size(84, 17);
     this.lbName.TabIndex = 41;
     this.lbName.Text = "First Name:";
     //
     // lbSurname
     //
     this.lbSurname.AutoSize = true;
     this.lbSurname.Location = new System.Drawing.Point(20, 91);
     this.lbSurname.Name = "lbSurname";
     this.lbSurname.Size = new System.Drawing.Size(72, 17);
     this.lbSurname.TabIndex = 43;
     this.lbSurname.Text = "Surname:";
     //
     // tabAddDetails
     //
     this.tabAddDetails.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabAddDetails.Controls.Add(this.btAddIntrestest);
     this.tabAddDetails.Controls.Add(this.dtpRelDateOfBirth);
     this.tabAddDetails.Controls.Add(this.label78);
     this.tabAddDetails.Controls.Add(this.cbContactToAddDetail);
     this.tabAddDetails.Controls.Add(this.lbRelDob);
     this.tabAddDetails.Controls.Add(this.cbxAddRel);
     this.tabAddDetails.Controls.Add(this.btCreateRela);
     this.tabAddDetails.Controls.Add(this.cbxRelType);
     this.tabAddDetails.Controls.Add(this.tbxRelaSurname);
     this.tabAddDetails.Controls.Add(this.tbxRelaName);
     this.tabAddDetails.Controls.Add(this.lbRelType);
     this.tabAddDetails.Controls.Add(this.lbRelaSurname);
     this.tabAddDetails.Controls.Add(this.lbRelaName);
     this.tabAddDetails.Controls.Add(this.lbxRelatives);
     this.tabAddDetails.Controls.Add(this.lbRelatives);
     this.tabAddDetails.Controls.Add(this.clbInterests);
     this.tabAddDetails.Controls.Add(this.lbInterest);
     this.tabAddDetails.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabAddDetails.Location = new System.Drawing.Point(4, 26);
     this.tabAddDetails.Name = "tabAddDetails";
     this.tabAddDetails.Padding = new System.Windows.Forms.Padding(3);
     this.tabAddDetails.Size = new System.Drawing.Size(798, 468);
     this.tabAddDetails.TabIndex = 1;
     this.tabAddDetails.Text = "Add Details";
     //
     // btAddIntrestest
     //
     this.btAddIntrestest.Location = new System.Drawing.Point(345, 412);
     this.btAddIntrestest.Name = "btAddIntrestest";
     this.btAddIntrestest.Size = new System.Drawing.Size(131, 35);
     this.btAddIntrestest.TabIndex = 88;
     this.btAddIntrestest.Text = "Save intrests";
     this.btAddIntrestest.UseVisualStyleBackColor = true;
     this.btAddIntrestest.Click += new System.EventHandler(this.BtAddIntrestestClick);
     //
     // dtpRelDateOfBirth
     //
     this.dtpRelDateOfBirth.Location = new System.Drawing.Point(572, 238);
     this.dtpRelDateOfBirth.Name = "dtpRelDateOfBirth";
     this.dtpRelDateOfBirth.Size = new System.Drawing.Size(194, 25);
     this.dtpRelDateOfBirth.TabIndex = 8;
     //
     // label78
     //
     this.label78.AutoSize = true;
     this.label78.Location = new System.Drawing.Point(19, 46);
     this.label78.Name = "label78";
     this.label78.Size = new System.Drawing.Size(108, 17);
     this.label78.TabIndex = 87;
     this.label78.Text = "Select Contact:";
     //
     // cbContactToAddDetail
     //
     this.cbContactToAddDetail.FormattingEnabled = true;
     this.cbContactToAddDetail.Location = new System.Drawing.Point(17, 73);
     this.cbContactToAddDetail.Name = "cbContactToAddDetail";
     this.cbContactToAddDetail.Size = new System.Drawing.Size(317, 25);
     this.cbContactToAddDetail.TabIndex = 1;
     this.cbContactToAddDetail.SelectedIndexChanged += new System.EventHandler(this.CbContactToAddDetailSelectedIndexChanged);
     //
     // lbRelDob
     //
     this.lbRelDob.AutoSize = true;
     this.lbRelDob.Location = new System.Drawing.Point(458, 244);
     this.lbRelDob.Name = "lbRelDob";
     this.lbRelDob.Size = new System.Drawing.Size(101, 17);
     this.lbRelDob.TabIndex = 83;
     this.lbRelDob.Text = "Date Of Birth: ";
     //
     // cbxAddRel
     //
     this.cbxAddRel.AutoSize = true;
     this.cbxAddRel.Location = new System.Drawing.Point(355, 75);
     this.cbxAddRel.Name = "cbxAddRel";
     this.cbxAddRel.Size = new System.Drawing.Size(335, 21);
     this.cbxAddRel.TabIndex = 5;
     this.cbxAddRel.Text = "Create new family member for selected contact";
     this.cbxAddRel.UseVisualStyleBackColor = true;
     this.cbxAddRel.CheckedChanged += new System.EventHandler(this.CbxAddRelCheckedChanged);
     //
     // btCreateRela
     //
     this.btCreateRela.Location = new System.Drawing.Point(592, 328);
     this.btCreateRela.Name = "btCreateRela";
     this.btCreateRela.Size = new System.Drawing.Size(174, 35);
     this.btCreateRela.TabIndex = 10;
     this.btCreateRela.Text = "Save family member";
     this.btCreateRela.UseVisualStyleBackColor = true;
     this.btCreateRela.Click += new System.EventHandler(this.BtCreateRelaClick1);
     //
     // cbxRelType
     //
     this.cbxRelType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxRelType.FormattingEnabled = true;
     this.cbxRelType.Location = new System.Drawing.Point(572, 279);
     this.cbxRelType.Name = "cbxRelType";
     this.cbxRelType.Size = new System.Drawing.Size(194, 25);
     this.cbxRelType.TabIndex = 9;
     //
     // tbxRelaSurname
     //
     this.tbxRelaSurname.Location = new System.Drawing.Point(572, 203);
     this.tbxRelaSurname.Name = "tbxRelaSurname";
     this.tbxRelaSurname.Size = new System.Drawing.Size(194, 25);
     this.tbxRelaSurname.TabIndex = 7;
     //
     // tbxRelaName
     //
     this.tbxRelaName.Location = new System.Drawing.Point(572, 167);
     this.tbxRelaName.Name = "tbxRelaName";
     this.tbxRelaName.Size = new System.Drawing.Size(194, 25);
     this.tbxRelaName.TabIndex = 6;
     //
     // lbRelType
     //
     this.lbRelType.AutoSize = true;
     this.lbRelType.Location = new System.Drawing.Point(458, 285);
     this.lbRelType.Name = "lbRelType";
     this.lbRelType.Size = new System.Drawing.Size(95, 17);
     this.lbRelType.TabIndex = 84;
     this.lbRelType.Text = "Relative Type";
     //
     // lbRelaSurname
     //
     this.lbRelaSurname.AutoSize = true;
     this.lbRelaSurname.Location = new System.Drawing.Point(458, 206);
     this.lbRelaSurname.Name = "lbRelaSurname";
     this.lbRelaSurname.Size = new System.Drawing.Size(68, 17);
     this.lbRelaSurname.TabIndex = 82;
     this.lbRelaSurname.Text = "Surname";
     //
     // lbRelaName
     //
     this.lbRelaName.AutoSize = true;
     this.lbRelaName.Location = new System.Drawing.Point(458, 170);
     this.lbRelaName.Name = "lbRelaName";
     this.lbRelaName.Size = new System.Drawing.Size(84, 17);
     this.lbRelaName.TabIndex = 81;
     this.lbRelaName.Text = "First Name:";
     //
     // lbxRelatives
     //
     this.lbxRelatives.FormattingEnabled = true;
     this.lbxRelatives.ItemHeight = 17;
     this.lbxRelatives.Location = new System.Drawing.Point(17, 140);
     this.lbxRelatives.Name = "lbxRelatives";
     this.lbxRelatives.Size = new System.Drawing.Size(317, 89);
     this.lbxRelatives.TabIndex = 2;
     //
     // lbRelatives
     //
     this.lbRelatives.AutoSize = true;
     this.lbRelatives.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbRelatives.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbRelatives.Location = new System.Drawing.Point(19, 19);
     this.lbRelatives.Name = "lbRelatives";
     this.lbRelatives.Size = new System.Drawing.Size(122, 18);
     this.lbRelatives.TabIndex = 40;
     this.lbRelatives.Text = "Family Members";
     //
     // clbInterests
     //
     this.clbInterests.CheckOnClick = true;
     this.clbInterests.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.clbInterests.FormattingEnabled = true;
     this.clbInterests.Location = new System.Drawing.Point(22, 303);
     this.clbInterests.MultiColumn = true;
     this.clbInterests.Name = "clbInterests";
     this.clbInterests.Size = new System.Drawing.Size(312, 144);
     this.clbInterests.TabIndex = 4;
     //
     // lbInterest
     //
     this.lbInterest.AutoSize = true;
     this.lbInterest.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbInterest.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.lbInterest.Location = new System.Drawing.Point(19, 274);
     this.lbInterest.Name = "lbInterest";
     this.lbInterest.Size = new System.Drawing.Size(71, 18);
     this.lbInterest.TabIndex = 38;
     this.lbInterest.Text = "Interests";
     //
     // tabViewContacts
     //
     this.tabViewContacts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabViewContacts.Controls.Add(this.btSelectContact);
     this.tabViewContacts.Controls.Add(this.btDeleteContact);
     this.tabViewContacts.Controls.Add(this.dataGridViewContacts);
     this.tabViewContacts.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.tabViewContacts.Location = new System.Drawing.Point(4, 26);
     this.tabViewContacts.Name = "tabViewContacts";
     this.tabViewContacts.Padding = new System.Windows.Forms.Padding(3);
     this.tabViewContacts.Size = new System.Drawing.Size(798, 468);
     this.tabViewContacts.TabIndex = 3;
     this.tabViewContacts.Text = "View Contacts";
     //
     // btSelectContact
     //
     this.btSelectContact.Location = new System.Drawing.Point(20, 398);
     this.btSelectContact.Name = "btSelectContact";
     this.btSelectContact.Size = new System.Drawing.Size(177, 35);
     this.btSelectContact.TabIndex = 4;
     this.btSelectContact.Text = "Select Contact to Edit";
     this.btSelectContact.UseVisualStyleBackColor = true;
     this.btSelectContact.Click += new System.EventHandler(this.BtSelectContactClick);
     //
     // btDeleteContact
     //
     this.btDeleteContact.Location = new System.Drawing.Point(613, 398);
     this.btDeleteContact.Name = "btDeleteContact";
     this.btDeleteContact.Size = new System.Drawing.Size(162, 35);
     this.btDeleteContact.TabIndex = 3;
     this.btDeleteContact.Text = "Delete Contact";
     this.btDeleteContact.UseVisualStyleBackColor = true;
     this.btDeleteContact.Click += new System.EventHandler(this.BtDeleteContactClick);
     //
     // dataGridViewContacts
     //
     this.dataGridViewContacts.AllowUserToAddRows = false;
     this.dataGridViewContacts.AllowUserToDeleteRows = false;
     this.dataGridViewContacts.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dataGridViewContacts.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewContacts.Location = new System.Drawing.Point(20, 19);
     this.dataGridViewContacts.Name = "dataGridViewContacts";
     this.dataGridViewContacts.ReadOnly = true;
     this.dataGridViewContacts.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewContacts.Size = new System.Drawing.Size(755, 351);
     this.dataGridViewContacts.TabIndex = 2;
     //
     // tabContactNote
     //
     this.tabContactNote.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     this.tabContactNote.Controls.Add(this.btContactNoteSave);
     this.tabContactNote.Controls.Add(this.btContactNoteDel);
     this.tabContactNote.Controls.Add(this.btContactNoteClear);
     this.tabContactNote.Controls.Add(this.rtbContactNoteBody);
     this.tabContactNote.Controls.Add(this.tbContactNoteSubject);
     this.tabContactNote.Controls.Add(this.cbContactNoteNote);
     this.tabContactNote.Controls.Add(this.cbContactNoteRelative);
     this.tabContactNote.Controls.Add(this.cbContactNoteContact);
     this.tabContactNote.Controls.Add(this.label59);
     this.tabContactNote.Controls.Add(this.label49);
     this.tabContactNote.Controls.Add(this.lbSelectRelative);
     this.tabContactNote.Controls.Add(this.lbRelativeInfo);
     this.tabContactNote.Controls.Add(this.lbAddContactNoteInfo);
     this.tabContactNote.Controls.Add(this.lbContactNoteSelectNote);
     this.tabContactNote.Controls.Add(this.label18);
     this.tabContactNote.Location = new System.Drawing.Point(4, 26);
     this.tabContactNote.Name = "tabContactNote";
     this.tabContactNote.Size = new System.Drawing.Size(798, 468);
     this.tabContactNote.TabIndex = 4;
     this.tabContactNote.Text = "Add/View contact notes";
     //
     // btContactNoteSave
     //
     this.btContactNoteSave.Location = new System.Drawing.Point(342, 390);
     this.btContactNoteSave.Name = "btContactNoteSave";
     this.btContactNoteSave.Size = new System.Drawing.Size(75, 35);
     this.btContactNoteSave.TabIndex = 3;
     this.btContactNoteSave.Text = "Save";
     this.btContactNoteSave.UseVisualStyleBackColor = true;
     this.btContactNoteSave.Click += new System.EventHandler(this.BtContactNoteSaveClick);
     //
     // btContactNoteDel
     //
     this.btContactNoteDel.Location = new System.Drawing.Point(221, 390);
     this.btContactNoteDel.Name = "btContactNoteDel";
     this.btContactNoteDel.Size = new System.Drawing.Size(75, 35);
     this.btContactNoteDel.TabIndex = 4;
     this.btContactNoteDel.Text = "Remove";
     this.btContactNoteDel.UseVisualStyleBackColor = true;
     this.btContactNoteDel.Visible = false;
     this.btContactNoteDel.Click += new System.EventHandler(this.BtContactNoteDelClick);
     //
     // btContactNoteClear
     //
     this.btContactNoteClear.Location = new System.Drawing.Point(109, 390);
     this.btContactNoteClear.Name = "btContactNoteClear";
     this.btContactNoteClear.Size = new System.Drawing.Size(75, 35);
     this.btContactNoteClear.TabIndex = 4;
     this.btContactNoteClear.Text = "Clear";
     this.btContactNoteClear.UseVisualStyleBackColor = true;
     this.btContactNoteClear.Click += new System.EventHandler(this.BtContactNoteClearClick);
     //
     // rtbContactNoteBody
     //
     this.rtbContactNoteBody.Location = new System.Drawing.Point(109, 232);
     this.rtbContactNoteBody.Name = "rtbContactNoteBody";
     this.rtbContactNoteBody.Size = new System.Drawing.Size(308, 133);
     this.rtbContactNoteBody.TabIndex = 2;
     this.rtbContactNoteBody.Text = "";
     //
     // tbContactNoteSubject
     //
     this.tbContactNoteSubject.Location = new System.Drawing.Point(109, 193);
     this.tbContactNoteSubject.Name = "tbContactNoteSubject";
     this.tbContactNoteSubject.Size = new System.Drawing.Size(308, 25);
     this.tbContactNoteSubject.TabIndex = 1;
     //
     // cbContactNoteNote
     //
     this.cbContactNoteNote.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbContactNoteNote.FormattingEnabled = true;
     this.cbContactNoteNote.Location = new System.Drawing.Point(174, 121);
     this.cbContactNoteNote.Name = "cbContactNoteNote";
     this.cbContactNoteNote.Size = new System.Drawing.Size(243, 25);
     this.cbContactNoteNote.TabIndex = 1;
     this.cbContactNoteNote.Visible = false;
     this.cbContactNoteNote.SelectedIndexChanged += new System.EventHandler(this.CbContactNoteNoteSelectedIndexChanged);
     //
     // cbContactNoteRelative
     //
     this.cbContactNoteRelative.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbContactNoteRelative.FormattingEnabled = true;
     this.cbContactNoteRelative.Location = new System.Drawing.Point(174, 73);
     this.cbContactNoteRelative.Name = "cbContactNoteRelative";
     this.cbContactNoteRelative.Size = new System.Drawing.Size(243, 25);
     this.cbContactNoteRelative.TabIndex = 1;
     this.cbContactNoteRelative.Visible = false;
     this.cbContactNoteRelative.SelectedIndexChanged += new System.EventHandler(this.CbContactNoteRelativeSelectedIndexChanged);
     //
     // cbContactNoteContact
     //
     this.cbContactNoteContact.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbContactNoteContact.FormattingEnabled = true;
     this.cbContactNoteContact.Location = new System.Drawing.Point(174, 24);
     this.cbContactNoteContact.Name = "cbContactNoteContact";
     this.cbContactNoteContact.Size = new System.Drawing.Size(243, 25);
     this.cbContactNoteContact.TabIndex = 1;
     this.cbContactNoteContact.SelectedIndexChanged += new System.EventHandler(this.CbContactNoteContactSelectedIndexChanged);
     //
     // label59
     //
     this.label59.AutoSize = true;
     this.label59.Location = new System.Drawing.Point(27, 232);
     this.label59.Name = "label59";
     this.label59.Size = new System.Drawing.Size(42, 17);
     this.label59.TabIndex = 0;
     this.label59.Text = "Note:";
     //
     // label49
     //
     this.label49.AutoSize = true;
     this.label49.Location = new System.Drawing.Point(27, 197);
     this.label49.Name = "label49";
     this.label49.Size = new System.Drawing.Size(61, 17);
     this.label49.TabIndex = 0;
     this.label49.Text = "Subject:";
     //
     // lbSelectRelative
     //
     this.lbSelectRelative.AutoSize = true;
     this.lbSelectRelative.Location = new System.Drawing.Point(27, 76);
     this.lbSelectRelative.Name = "lbSelectRelative";
     this.lbSelectRelative.Size = new System.Drawing.Size(109, 17);
     this.lbSelectRelative.TabIndex = 0;
     this.lbSelectRelative.Text = "Select Relative:";
     this.lbSelectRelative.Visible = false;
     //
     // lbRelativeInfo
     //
     this.lbRelativeInfo.AutoSize = true;
     this.lbRelativeInfo.Location = new System.Drawing.Point(427, 76);
     this.lbRelativeInfo.Name = "lbRelativeInfo";
     this.lbRelativeInfo.Size = new System.Drawing.Size(275, 17);
     this.lbRelativeInfo.TabIndex = 0;
     this.lbRelativeInfo.Text = "(Leave Blank to add new note to Contact)";
     this.lbRelativeInfo.Visible = false;
     //
     // lbAddContactNoteInfo
     //
     this.lbAddContactNoteInfo.AutoSize = true;
     this.lbAddContactNoteInfo.Location = new System.Drawing.Point(427, 124);
     this.lbAddContactNoteInfo.Name = "lbAddContactNoteInfo";
     this.lbAddContactNoteInfo.Size = new System.Drawing.Size(204, 17);
     this.lbAddContactNoteInfo.TabIndex = 0;
     this.lbAddContactNoteInfo.Text = "(Leave Blank to add new note)";
     this.lbAddContactNoteInfo.Visible = false;
     //
     // lbContactNoteSelectNote
     //
     this.lbContactNoteSelectNote.AutoSize = true;
     this.lbContactNoteSelectNote.Location = new System.Drawing.Point(25, 120);
     this.lbContactNoteSelectNote.Name = "lbContactNoteSelectNote";
     this.lbContactNoteSelectNote.Size = new System.Drawing.Size(87, 17);
     this.lbContactNoteSelectNote.TabIndex = 0;
     this.lbContactNoteSelectNote.Text = "Select Note:";
     this.lbContactNoteSelectNote.Visible = false;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(25, 32);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(108, 17);
     this.label18.TabIndex = 0;
     this.label18.Text = "Select Contact:";
     //
     // tabCtrlUserManual
     //
     this.tabCtrlUserManual.Controls.Add(this.tabUserManual);
     this.tabCtrlUserManual.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabCtrlUserManual.Location = new System.Drawing.Point(157, 61);
     this.tabCtrlUserManual.Name = "tabCtrlUserManual";
     this.tabCtrlUserManual.SelectedIndex = 0;
     this.tabCtrlUserManual.Size = new System.Drawing.Size(807, 498);
     this.tabCtrlUserManual.TabIndex = 19;
     this.tabCtrlUserManual.Visible = false;
     //
     // tabUserManual
     //
     this.tabUserManual.Controls.Add(this.webUserManual);
     this.tabUserManual.Location = new System.Drawing.Point(4, 26);
     this.tabUserManual.Name = "tabUserManual";
     this.tabUserManual.Padding = new System.Windows.Forms.Padding(3);
     this.tabUserManual.Size = new System.Drawing.Size(799, 468);
     this.tabUserManual.TabIndex = 1;
     this.tabUserManual.Text = "User Manual";
     this.tabUserManual.UseVisualStyleBackColor = true;
     //
     // webUserManual
     //
     this.webUserManual.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webUserManual.Location = new System.Drawing.Point(3, 3);
     this.webUserManual.MinimumSize = new System.Drawing.Size(20, 20);
     this.webUserManual.Name = "webUserManual";
     this.webUserManual.Size = new System.Drawing.Size(793, 462);
     this.webUserManual.TabIndex = 0;
     //
     // Home1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(186)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.BackgroundImage = global::CsiCrm.Properties.Resources.Untitled_61;
     this.ClientSize = new System.Drawing.Size(1180, 744);
     this.Controls.Add(this.btUserManual);
     this.Controls.Add(this.btJournal);
     this.Controls.Add(this.btAppointments);
     this.Controls.Add(this.btCompanies);
     this.Controls.Add(this.btContacts);
     this.Controls.Add(this.btHome);
     this.Controls.Add(this.tabControl2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.monthCalendar1);
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.tabCtrlUserManual);
     this.Controls.Add(this.tabCtrlCompanies);
     this.Controls.Add(this.tabCtrlJournal);
     this.Controls.Add(this.tabCtrlContact);
     this.Controls.Add(this.tabCtrlAppoinments);
     this.Controls.Add(this.pbHome);
     this.MaximumSize = new System.Drawing.Size(1196, 782);
     this.MinimumSize = new System.Drawing.Size(1196, 782);
     this.Name = "Home1";
     this.Text = "Form1";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tabControl2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.tabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     this.tabCalender.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.tabCtrlJournal.ResumeLayout(false);
     this.tabJournalCompany.ResumeLayout(false);
     this.tabJournalCompany.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     this.tabContactJournal.ResumeLayout(false);
     this.tabContactJournal.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
     this.tabSearchAllNotes.ResumeLayout(false);
     this.tabSearchAllNotes.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     this.tabCtrlCompanies.ResumeLayout(false);
     this.tabAddCompany.ResumeLayout(false);
     this.tabAddCompany.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxCompanyLogo)).EndInit();
     this.tabViewCompanyNote.ResumeLayout(false);
     this.tabViewCompanyNote.PerformLayout();
     this.tabViewCompanyContacts.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgwCompanyContacts)).EndInit();
     this.tabCtrlAppoinments.ResumeLayout(false);
     this.tabAddAppointment.ResumeLayout(false);
     this.tabAddAppointment.PerformLayout();
     this.tabViewAppointment.ResumeLayout(false);
     this.tabViewAppointment.PerformLayout();
     this.panelSearchOptionsAppointments.ResumeLayout(false);
     this.panelSearchOptionsAppointments.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvViewAppoinments)).EndInit();
     this.tabAppointmentDetails.ResumeLayout(false);
     this.tabAppointmentDetails.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbHome)).EndInit();
     this.tabCtrlContact.ResumeLayout(false);
     this.tabAddContact.ResumeLayout(false);
     this.tabAddContact.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxImage)).EndInit();
     this.tabAddDetails.ResumeLayout(false);
     this.tabAddDetails.PerformLayout();
     this.tabViewContacts.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewContacts)).EndInit();
     this.tabContactNote.ResumeLayout(false);
     this.tabContactNote.PerformLayout();
     this.tabCtrlUserManual.ResumeLayout(false);
     this.tabUserManual.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #28
0
 //Winform usage
 public void BindBrokenMessages2WinformErrorProvider(System.Windows.Forms.ErrorProvider errorProvider, System.Windows.Forms.Control.ControlCollection controls)
 {
     BindBrokenMessages2WinformErrorProvider(errorProvider, controls, true);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLogin));
     this.txtName = new System.Windows.Forms.TextBox();
     this.txtPass = new System.Windows.Forms.TextBox();
     this.roleCombo = new System.Windows.Forms.ComboBox();
     this.pnlLogin = new System.Windows.Forms.Panel();
     this.btnCancel = new System.Windows.Forms.Button();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.btnLogin = new System.Windows.Forms.Button();
     this.label5 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.pnlEmail = new System.Windows.Forms.Panel();
     this.btnPnlClose = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.txtEmail = new System.Windows.Forms.TextBox();
     this.btnMail = new System.Windows.Forms.Button();
     this.lbPasswordFarget = new System.Windows.Forms.Label();
     this.btnMinimize = new System.Windows.Forms.Button();
     this.btnClose = new System.Windows.Forms.Button();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.label12 = new System.Windows.Forms.Label();
     this.pnlLogin.SuspendLayout();
     this.pnlEmail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // txtName
     //
     this.txtName.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtName.Location = new System.Drawing.Point(27, 148);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(268, 25);
     this.txtName.TabIndex = 1;
     //
     // txtPass
     //
     this.txtPass.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPass.Location = new System.Drawing.Point(27, 206);
     this.txtPass.Name = "txtPass";
     this.txtPass.Size = new System.Drawing.Size(268, 25);
     this.txtPass.TabIndex = 2;
     this.txtPass.UseSystemPasswordChar = true;
     this.txtPass.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPass_KeyDown);
     //
     // roleCombo
     //
     this.roleCombo.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.roleCombo.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.roleCombo.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.roleCombo.FormattingEnabled = true;
     this.roleCombo.Items.AddRange(new object[] {
     "Admin",
     "Manager"});
     this.roleCombo.Location = new System.Drawing.Point(27, 90);
     this.roleCombo.Name = "roleCombo";
     this.roleCombo.Size = new System.Drawing.Size(268, 25);
     this.roleCombo.TabIndex = 0;
     //
     // pnlLogin
     //
     this.pnlLogin.Controls.Add(this.btnCancel);
     this.pnlLogin.Controls.Add(this.label7);
     this.pnlLogin.Controls.Add(this.label6);
     this.pnlLogin.Controls.Add(this.btnLogin);
     this.pnlLogin.Controls.Add(this.label5);
     this.pnlLogin.Controls.Add(this.label3);
     this.pnlLogin.Controls.Add(this.roleCombo);
     this.pnlLogin.Controls.Add(this.txtName);
     this.pnlLogin.Controls.Add(this.txtPass);
     this.pnlLogin.Location = new System.Drawing.Point(81, 153);
     this.pnlLogin.Name = "pnlLogin";
     this.pnlLogin.Size = new System.Drawing.Size(329, 305);
     this.pnlLogin.TabIndex = 11;
     this.pnlLogin.MouseDown += new System.Windows.Forms.MouseEventHandler(this.frmLogin_MouseDown);
     //
     // btnCancel
     //
     this.btnCancel.BackColor = System.Drawing.Color.White;
     this.btnCancel.FlatAppearance.BorderColor = System.Drawing.Color.Silver;
     this.btnCancel.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Red;
     this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnCancel.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCancel.ForeColor = System.Drawing.Color.Black;
     this.btnCancel.Image = ((System.Drawing.Image)(resources.GetObject("btnCancel.Image")));
     this.btnCancel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCancel.Location = new System.Drawing.Point(27, 247);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(117, 36);
     this.btnCancel.TabIndex = 13;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = false;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Segoe UI", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.White;
     this.label7.Location = new System.Drawing.Point(3, 1);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(88, 40);
     this.label7.TabIndex = 12;
     this.label7.Text = "Login";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location = new System.Drawing.Point(24, 186);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(95, 17);
     this.label6.TabIndex = 6;
     this.label6.Text = "User Password";
     //
     // btnLogin
     //
     this.btnLogin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(21)))), ((int)(((byte)(146)))), ((int)(((byte)(74)))));
     this.btnLogin.FlatAppearance.BorderColor = System.Drawing.Color.WhiteSmoke;
     this.btnLogin.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnLogin.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLogin.Image = ((System.Drawing.Image)(resources.GetObject("btnLogin.Image")));
     this.btnLogin.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnLogin.Location = new System.Drawing.Point(178, 247);
     this.btnLogin.Name = "btnLogin";
     this.btnLogin.Size = new System.Drawing.Size(117, 36);
     this.btnLogin.TabIndex = 3;
     this.btnLogin.Text = "Login";
     this.btnLogin.UseVisualStyleBackColor = false;
     this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(26, 128);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(74, 17);
     this.label5.TabIndex = 5;
     this.label5.Text = "User Name";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(26, 65);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(103, 17);
     this.label3.TabIndex = 4;
     this.label3.Text = "Select Your Role";
     //
     // pnlEmail
     //
     this.pnlEmail.Controls.Add(this.btnPnlClose);
     this.pnlEmail.Controls.Add(this.label2);
     this.pnlEmail.Controls.Add(this.label1);
     this.pnlEmail.Controls.Add(this.txtEmail);
     this.pnlEmail.Controls.Add(this.btnMail);
     this.pnlEmail.Location = new System.Drawing.Point(81, 153);
     this.pnlEmail.Name = "pnlEmail";
     this.pnlEmail.Size = new System.Drawing.Size(326, 209);
     this.pnlEmail.TabIndex = 11;
     //
     // btnPnlClose
     //
     this.btnPnlClose.BackColor = System.Drawing.Color.White;
     this.btnPnlClose.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnPnlClose.BackgroundImage")));
     this.btnPnlClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnPnlClose.FlatAppearance.BorderSize = 0;
     this.btnPnlClose.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Red;
     this.btnPnlClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnPnlClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPnlClose.ForeColor = System.Drawing.Color.Black;
     this.btnPnlClose.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnPnlClose.Location = new System.Drawing.Point(2, 1);
     this.btnPnlClose.Name = "btnPnlClose";
     this.btnPnlClose.Size = new System.Drawing.Size(27, 24);
     this.btnPnlClose.TabIndex = 13;
     this.btnPnlClose.UseVisualStyleBackColor = false;
     this.btnPnlClose.Click += new System.EventHandler(this.btnPnlClose_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(24, 69);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(155, 17);
     this.label2.TabIndex = 8;
     this.label2.Text = "Enter Your Email address";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Gold;
     this.label1.Location = new System.Drawing.Point(64, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(199, 21);
     this.label1.TabIndex = 2;
     this.label1.Text = " Password Recovery Panel";
     //
     // txtEmail
     //
     this.txtEmail.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtEmail.Location = new System.Drawing.Point(27, 101);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Size = new System.Drawing.Size(268, 25);
     this.txtEmail.TabIndex = 1;
     this.txtEmail.Validating += new System.ComponentModel.CancelEventHandler(this.txtEmail_Validating);
     //
     // btnMail
     //
     this.btnMail.BackColor = System.Drawing.Color.ForestGreen;
     this.btnMail.FlatAppearance.BorderSize = 0;
     this.btnMail.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnMail.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMail.Image = ((System.Drawing.Image)(resources.GetObject("btnMail.Image")));
     this.btnMail.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnMail.Location = new System.Drawing.Point(171, 155);
     this.btnMail.Name = "btnMail";
     this.btnMail.Size = new System.Drawing.Size(124, 30);
     this.btnMail.TabIndex = 7;
     this.btnMail.Text = "Send Mail";
     this.btnMail.UseVisualStyleBackColor = false;
     this.btnMail.Click += new System.EventHandler(this.btnMail_Click);
     //
     // lbPasswordFarget
     //
     this.lbPasswordFarget.AutoSize = true;
     this.lbPasswordFarget.Cursor = System.Windows.Forms.Cursors.Hand;
     this.lbPasswordFarget.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbPasswordFarget.ForeColor = System.Drawing.Color.White;
     this.lbPasswordFarget.Location = new System.Drawing.Point(133, 461);
     this.lbPasswordFarget.Name = "lbPasswordFarget";
     this.lbPasswordFarget.Size = new System.Drawing.Size(107, 17);
     this.lbPasswordFarget.TabIndex = 4;
     this.lbPasswordFarget.Text = "Forgot Password";
     this.lbPasswordFarget.Click += new System.EventHandler(this.lbPasswordFarget_Click);
     //
     // btnMinimize
     //
     this.btnMinimize.BackColor = System.Drawing.Color.Transparent;
     this.btnMinimize.BackgroundImage = global::OMMS.Properties.Resources.min_1;
     this.btnMinimize.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnMinimize.FlatAppearance.BorderSize = 0;
     this.btnMinimize.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Blue;
     this.btnMinimize.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnMinimize.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnMinimize.ForeColor = System.Drawing.Color.Black;
     this.btnMinimize.Location = new System.Drawing.Point(425, 0);
     this.btnMinimize.Name = "btnMinimize";
     this.btnMinimize.Size = new System.Drawing.Size(27, 24);
     this.btnMinimize.TabIndex = 12;
     this.btnMinimize.UseVisualStyleBackColor = false;
     this.btnMinimize.Click += new System.EventHandler(this.btnMinimize_Click);
     this.btnMinimize.MouseEnter += new System.EventHandler(this.btnMinimize_MouseEnter);
     this.btnMinimize.MouseLeave += new System.EventHandler(this.btnMinimize_MouseLeave);
     //
     // btnClose
     //
     this.btnClose.BackColor = System.Drawing.Color.Transparent;
     this.btnClose.BackgroundImage = global::OMMS.Properties.Resources.close_1;
     this.btnClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnClose.FlatAppearance.BorderSize = 0;
     this.btnClose.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Red;
     this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClose.ForeColor = System.Drawing.Color.Black;
     this.btnClose.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnClose.Location = new System.Drawing.Point(457, 0);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(27, 24);
     this.btnClose.TabIndex = 12;
     this.btnClose.UseVisualStyleBackColor = false;
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     this.btnClose.MouseEnter += new System.EventHandler(this.btnClose_MouseEnter);
     this.btnClose.MouseLeave += new System.EventHandler(this.btnClose_MouseLeave);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(189)))), ((int)(((byte)(242)))));
     this.label12.Location = new System.Drawing.Point(85, 70);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(313, 32);
     this.label12.TabIndex = 166;
     this.label12.Text = "Oil Mills Managment System";
     //
     // frmLogin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(487, 518);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.btnMinimize);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.lbPasswordFarget);
     this.Controls.Add(this.pnlLogin);
     this.Controls.Add(this.pnlEmail);
     this.ForeColor = System.Drawing.Color.White;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmLogin";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = " ";
     this.Load += new System.EventHandler(this.frmLogin_Load);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.frmLogin_MouseDown);
     this.pnlLogin.ResumeLayout(false);
     this.pnlLogin.PerformLayout();
     this.pnlEmail.ResumeLayout(false);
     this.pnlEmail.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EEPROMMarlin));
     this.label1 = new System.Windows.Forms.Label();
     this.xstepsbox = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.ystepsbox = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.zstepsbox = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.estepsbox = new System.Windows.Forms.TextBox();
     this.buttonLoad = new System.Windows.Forms.Button();
     this.buttonSave = new System.Windows.Forms.Button();
     this.buttonRestore = new System.Windows.Forms.Button();
     this.buttonAbort = new System.Windows.Forms.Button();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.xfeedbox = new System.Windows.Forms.TextBox();
     this.yfeedbox = new System.Windows.Forms.TextBox();
     this.zfeedbox = new System.Windows.Forms.TextBox();
     this.efeedbox = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.maccxbox = new System.Windows.Forms.TextBox();
     this.maccybox = new System.Windows.Forms.TextBox();
     this.macczbox = new System.Windows.Forms.TextBox();
     this.maccebox = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.mzjerkbox = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.maxxyjerkbox = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.minsegtbox = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.mintfeedbox = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.minfeedbox = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.ppidbox = new System.Windows.Forms.TextBox();
     this.ipidbox = new System.Windows.Forms.TextBox();
     this.dpidbox = new System.Windows.Forms.TextBox();
     this.accbox = new System.Windows.Forms.TextBox();
     this.lable17 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.raccbox = new System.Windows.Forms.TextBox();
     this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(74, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Steps per mm:";
     //
     // xstepsbox
     //
     this.xstepsbox.Location = new System.Drawing.Point(207, 6);
     this.xstepsbox.Name = "xstepsbox";
     this.xstepsbox.Size = new System.Drawing.Size(63, 20);
     this.xstepsbox.TabIndex = 1;
     this.xstepsbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(184, 9);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(17, 13);
     this.label2.TabIndex = 2;
     this.label2.Text = "X:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(276, 9);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(17, 13);
     this.label3.TabIndex = 3;
     this.label3.Text = "Y:";
     //
     // ystepsbox
     //
     this.ystepsbox.Location = new System.Drawing.Point(299, 6);
     this.ystepsbox.Name = "ystepsbox";
     this.ystepsbox.Size = new System.Drawing.Size(63, 20);
     this.ystepsbox.TabIndex = 4;
     this.ystepsbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(368, 9);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(17, 13);
     this.label4.TabIndex = 5;
     this.label4.Text = "Z:";
     //
     // zstepsbox
     //
     this.zstepsbox.Location = new System.Drawing.Point(391, 6);
     this.zstepsbox.Name = "zstepsbox";
     this.zstepsbox.Size = new System.Drawing.Size(63, 20);
     this.zstepsbox.TabIndex = 6;
     this.zstepsbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(460, 9);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(17, 13);
     this.label5.TabIndex = 7;
     this.label5.Text = "E:";
     //
     // estepsbox
     //
     this.estepsbox.Location = new System.Drawing.Point(483, 6);
     this.estepsbox.Name = "estepsbox";
     this.estepsbox.Size = new System.Drawing.Size(63, 20);
     this.estepsbox.TabIndex = 8;
     this.estepsbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // buttonLoad
     //
     this.buttonLoad.Location = new System.Drawing.Point(15, 356);
     this.buttonLoad.Name = "buttonLoad";
     this.buttonLoad.Size = new System.Drawing.Size(95, 22);
     this.buttonLoad.TabIndex = 9;
     this.buttonLoad.Text = "Reload Config";
     this.buttonLoad.UseVisualStyleBackColor = true;
     this.buttonLoad.Click += new System.EventHandler(this.buttonLoad_Click);
     //
     // buttonSave
     //
     this.buttonSave.Location = new System.Drawing.Point(372, 357);
     this.buttonSave.Name = "buttonSave";
     this.buttonSave.Size = new System.Drawing.Size(105, 22);
     this.buttonSave.TabIndex = 10;
     this.buttonSave.Text = "Save to EEPROM";
     this.buttonSave.UseVisualStyleBackColor = true;
     this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
     //
     // buttonRestore
     //
     this.buttonRestore.Location = new System.Drawing.Point(116, 355);
     this.buttonRestore.Name = "buttonRestore";
     this.buttonRestore.Size = new System.Drawing.Size(141, 23);
     this.buttonRestore.TabIndex = 11;
     this.buttonRestore.Text = "Restore factory settings";
     this.buttonRestore.UseVisualStyleBackColor = true;
     this.buttonRestore.Click += new System.EventHandler(this.buttonRestore_Click);
     //
     // buttonAbort
     //
     this.buttonAbort.Location = new System.Drawing.Point(496, 356);
     this.buttonAbort.Name = "buttonAbort";
     this.buttonAbort.Size = new System.Drawing.Size(95, 23);
     this.buttonAbort.TabIndex = 12;
     this.buttonAbort.Text = "Cancel";
     this.buttonAbort.UseVisualStyleBackColor = true;
     this.buttonAbort.Click += new System.EventHandler(this.buttonAbort_Click_1);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(12, 35);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(136, 13);
     this.label6.TabIndex = 13;
     this.label6.Text = "Maximum feedrates [mm/s]:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(184, 35);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(17, 13);
     this.label7.TabIndex = 14;
     this.label7.Text = "X:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(276, 35);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(17, 13);
     this.label8.TabIndex = 15;
     this.label8.Text = "Y:";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(368, 35);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(17, 13);
     this.label9.TabIndex = 16;
     this.label9.Text = "Z:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(460, 35);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(17, 13);
     this.label10.TabIndex = 17;
     this.label10.Text = "E:";
     //
     // xfeedbox
     //
     this.xfeedbox.Location = new System.Drawing.Point(207, 32);
     this.xfeedbox.Name = "xfeedbox";
     this.xfeedbox.Size = new System.Drawing.Size(63, 20);
     this.xfeedbox.TabIndex = 18;
     this.xfeedbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // yfeedbox
     //
     this.yfeedbox.Location = new System.Drawing.Point(299, 32);
     this.yfeedbox.Name = "yfeedbox";
     this.yfeedbox.Size = new System.Drawing.Size(63, 20);
     this.yfeedbox.TabIndex = 19;
     this.yfeedbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // zfeedbox
     //
     this.zfeedbox.Location = new System.Drawing.Point(391, 32);
     this.zfeedbox.Name = "zfeedbox";
     this.zfeedbox.Size = new System.Drawing.Size(63, 20);
     this.zfeedbox.TabIndex = 20;
     this.zfeedbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // efeedbox
     //
     this.efeedbox.Location = new System.Drawing.Point(483, 32);
     this.efeedbox.Name = "efeedbox";
     this.efeedbox.Size = new System.Drawing.Size(63, 20);
     this.efeedbox.TabIndex = 21;
     this.efeedbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(12, 61);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(154, 13);
     this.label11.TabIndex = 22;
     this.label11.Text = "Maximum Acceleration [mm/s²]:";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(184, 61);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(17, 13);
     this.label12.TabIndex = 23;
     this.label12.Text = "X:";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(276, 61);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(17, 13);
     this.label13.TabIndex = 24;
     this.label13.Text = "Y:";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(368, 61);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(17, 13);
     this.label14.TabIndex = 25;
     this.label14.Text = "Z:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(460, 61);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(17, 13);
     this.label15.TabIndex = 26;
     this.label15.Text = "E:";
     //
     // maccxbox
     //
     this.maccxbox.Location = new System.Drawing.Point(207, 58);
     this.maccxbox.Name = "maccxbox";
     this.maccxbox.Size = new System.Drawing.Size(63, 20);
     this.maccxbox.TabIndex = 27;
     this.maccxbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // maccybox
     //
     this.maccybox.Location = new System.Drawing.Point(299, 58);
     this.maccybox.Name = "maccybox";
     this.maccybox.Size = new System.Drawing.Size(63, 20);
     this.maccybox.TabIndex = 28;
     this.maccybox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // macczbox
     //
     this.macczbox.Location = new System.Drawing.Point(391, 58);
     this.macczbox.Name = "macczbox";
     this.macczbox.Size = new System.Drawing.Size(63, 20);
     this.macczbox.TabIndex = 29;
     this.macczbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // maccebox
     //
     this.maccebox.Location = new System.Drawing.Point(483, 58);
     this.maccebox.Name = "maccebox";
     this.maccebox.Size = new System.Drawing.Size(63, 20);
     this.maccebox.TabIndex = 30;
     this.maccebox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.mzjerkbox);
     this.panel2.Controls.Add(this.label23);
     this.panel2.Controls.Add(this.maxxyjerkbox);
     this.panel2.Controls.Add(this.label22);
     this.panel2.Controls.Add(this.minsegtbox);
     this.panel2.Controls.Add(this.label21);
     this.panel2.Controls.Add(this.mintfeedbox);
     this.panel2.Controls.Add(this.label20);
     this.panel2.Controls.Add(this.minfeedbox);
     this.panel2.Controls.Add(this.label19);
     this.panel2.Controls.Add(this.label18);
     this.panel2.Location = new System.Drawing.Point(15, 162);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(576, 168);
     this.panel2.TabIndex = 36;
     //
     // mzjerkbox
     //
     this.mzjerkbox.Location = new System.Drawing.Point(20, 118);
     this.mzjerkbox.Name = "mzjerkbox";
     this.mzjerkbox.Size = new System.Drawing.Size(63, 20);
     this.mzjerkbox.TabIndex = 44;
     this.mzjerkbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(4, 91);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(116, 13);
     this.label23.TabIndex = 43;
     this.label23.Text = "Maximum Z jerk [mm/s]";
     //
     // maxxyjerkbox
     //
     this.maxxyjerkbox.Location = new System.Drawing.Point(438, 56);
     this.maxxyjerkbox.Name = "maxxyjerkbox";
     this.maxxyjerkbox.Size = new System.Drawing.Size(63, 20);
     this.maxxyjerkbox.TabIndex = 42;
     this.maxxyjerkbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(420, 31);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(126, 13);
     this.label22.TabIndex = 41;
     this.label22.Text = "Maximum X-Y jerk [mm/s]";
     //
     // minsegtbox
     //
     this.minsegtbox.Location = new System.Drawing.Point(285, 56);
     this.minsegtbox.Name = "minsegtbox";
     this.minsegtbox.Size = new System.Drawing.Size(63, 20);
     this.minsegtbox.TabIndex = 40;
     this.minsegtbox.Validating += new System.ComponentModel.CancelEventHandler(this.int_Validating);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(267, 31);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(135, 13);
     this.label21.TabIndex = 39;
     this.label21.Text = "Minimum segment time [ms]";
     //
     // mintfeedbox
     //
     this.mintfeedbox.Location = new System.Drawing.Point(149, 56);
     this.mintfeedbox.Name = "mintfeedbox";
     this.mintfeedbox.Size = new System.Drawing.Size(63, 20);
     this.mintfeedbox.TabIndex = 38;
     this.mintfeedbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(131, 31);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(130, 13);
     this.label20.TabIndex = 37;
     this.label20.Text = "Min travel feedrate [mm/s]";
     //
     // minfeedbox
     //
     this.minfeedbox.Location = new System.Drawing.Point(23, 56);
     this.minfeedbox.Name = "minfeedbox";
     this.minfeedbox.Size = new System.Drawing.Size(63, 20);
     this.minfeedbox.TabIndex = 36;
     this.minfeedbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(13, 31);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(101, 13);
     this.label19.TabIndex = 1;
     this.label19.Text = "Min feedrate [mm/s]";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(13, 4);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(104, 13);
     this.label18.TabIndex = 0;
     this.label18.Text = "Advanced variables:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(12, 137);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(67, 13);
     this.label24.TabIndex = 37;
     this.label24.Text = "PID settings:";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(184, 137);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(17, 13);
     this.label25.TabIndex = 46;
     this.label25.Text = "P:";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(276, 137);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(13, 13);
     this.label26.TabIndex = 47;
     this.label26.Text = "I:";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(364, 137);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(18, 13);
     this.label27.TabIndex = 49;
     this.label27.Text = "D:";
     //
     // ppidbox
     //
     this.ppidbox.Location = new System.Drawing.Point(207, 136);
     this.ppidbox.Name = "ppidbox";
     this.ppidbox.Size = new System.Drawing.Size(63, 20);
     this.ppidbox.TabIndex = 50;
     this.ppidbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // ipidbox
     //
     this.ipidbox.Location = new System.Drawing.Point(295, 134);
     this.ipidbox.Name = "ipidbox";
     this.ipidbox.Size = new System.Drawing.Size(63, 20);
     this.ipidbox.TabIndex = 51;
     this.ipidbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // dpidbox
     //
     this.dpidbox.Location = new System.Drawing.Point(388, 134);
     this.dpidbox.Name = "dpidbox";
     this.dpidbox.Size = new System.Drawing.Size(63, 20);
     this.dpidbox.TabIndex = 52;
     this.dpidbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // accbox
     //
     this.accbox.Location = new System.Drawing.Point(207, 84);
     this.accbox.Name = "accbox";
     this.accbox.Size = new System.Drawing.Size(63, 20);
     this.accbox.TabIndex = 32;
     this.accbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // lable17
     //
     this.lable17.AutoSize = true;
     this.lable17.Location = new System.Drawing.Point(12, 113);
     this.lable17.Name = "lable17";
     this.lable17.Size = new System.Drawing.Size(107, 13);
     this.lable17.TabIndex = 33;
     this.lable17.Text = "Retract Acceleration:";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(12, 87);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(69, 13);
     this.label16.TabIndex = 31;
     this.label16.Text = "Acceleration:";
     //
     // raccbox
     //
     this.raccbox.Location = new System.Drawing.Point(207, 110);
     this.raccbox.Name = "raccbox";
     this.raccbox.Size = new System.Drawing.Size(63, 20);
     this.raccbox.TabIndex = 34;
     this.raccbox.Validating += new System.ComponentModel.CancelEventHandler(this.floatPos_Validating);
     //
     // errorProvider
     //
     this.errorProvider.ContainerControl = this;
     //
     // EEPROMMarlin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize = new System.Drawing.Size(615, 408);
     this.ControlBox = false;
     this.Controls.Add(this.raccbox);
     this.Controls.Add(this.dpidbox);
     this.Controls.Add(this.label16);
     this.Controls.Add(this.ipidbox);
     this.Controls.Add(this.lable17);
     this.Controls.Add(this.ppidbox);
     this.Controls.Add(this.accbox);
     this.Controls.Add(this.label27);
     this.Controls.Add(this.label26);
     this.Controls.Add(this.label25);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.maccebox);
     this.Controls.Add(this.macczbox);
     this.Controls.Add(this.maccybox);
     this.Controls.Add(this.maccxbox);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.efeedbox);
     this.Controls.Add(this.zfeedbox);
     this.Controls.Add(this.yfeedbox);
     this.Controls.Add(this.xfeedbox);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.buttonAbort);
     this.Controls.Add(this.buttonRestore);
     this.Controls.Add(this.buttonSave);
     this.Controls.Add(this.buttonLoad);
     this.Controls.Add(this.estepsbox);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.zstepsbox);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.ystepsbox);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.xstepsbox);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "EEPROMMarlin";
     this.Text = "Marlin Firmware EEPROM settings";
     this.Activated += new System.EventHandler(this.EEPROMMarlin_Activated);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Label label1;
     System.Windows.Forms.Label cONTRASENALabel;
     System.Windows.Forms.Label aPELLIDOSLabel;
     System.Windows.Forms.Label nOMBRESLabel;
     System.Windows.Forms.Label cEDULALabel;
     System.Windows.Forms.Label usuarioLbl;
     System.Windows.Forms.Label tipoUsuarioLbl;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Crear_Usuario_Form));
     this.verificarContrasenaTxt = new System.Windows.Forms.TextBox();
     this.contrasenaTxt = new System.Windows.Forms.TextBox();
     this.apellidosTxt = new System.Windows.Forms.TextBox();
     this.nombresTxt = new System.Windows.Forms.TextBox();
     this.cedulaTxt = new System.Windows.Forms.TextBox();
     this.usuarioTxt = new System.Windows.Forms.TextBox();
     this.GuardarBtn = new System.Windows.Forms.Button();
     this.imageNewUser = new System.Windows.Forms.PictureBox();
     this.tipoUsuarioCbx = new System.Windows.Forms.ComboBox();
     this.verContrasena = new System.Windows.Forms.Button();
     this.errorLbl = new System.Windows.Forms.Label();
     this.cancelarBtn = new System.Windows.Forms.Button();
     this.controladorErrores = new System.Windows.Forms.ErrorProvider(this.components);
     label1 = new System.Windows.Forms.Label();
     cONTRASENALabel = new System.Windows.Forms.Label();
     aPELLIDOSLabel = new System.Windows.Forms.Label();
     nOMBRESLabel = new System.Windows.Forms.Label();
     cEDULALabel = new System.Windows.Forms.Label();
     usuarioLbl = new System.Windows.Forms.Label();
     tipoUsuarioLbl = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.imageNewUser)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.controladorErrores)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Location = new System.Drawing.Point(22, 244);
     label1.Name = "label1";
     label1.Size = new System.Drawing.Size(105, 13);
     label1.TabIndex = 38;
     label1.Text = "Verificar Contraseña:";
     //
     // cONTRASENALabel
     //
     cONTRASENALabel.AutoSize = true;
     cONTRASENALabel.Location = new System.Drawing.Point(22, 218);
     cONTRASENALabel.Name = "cONTRASENALabel";
     cONTRASENALabel.Size = new System.Drawing.Size(64, 13);
     cONTRASENALabel.TabIndex = 36;
     cONTRASENALabel.Text = "Contraseña:";
     //
     // aPELLIDOSLabel
     //
     aPELLIDOSLabel.AutoSize = true;
     aPELLIDOSLabel.Location = new System.Drawing.Point(22, 109);
     aPELLIDOSLabel.Name = "aPELLIDOSLabel";
     aPELLIDOSLabel.Size = new System.Drawing.Size(52, 13);
     aPELLIDOSLabel.TabIndex = 35;
     aPELLIDOSLabel.Text = "Apellidos:";
     //
     // nOMBRESLabel
     //
     nOMBRESLabel.AutoSize = true;
     nOMBRESLabel.Location = new System.Drawing.Point(22, 84);
     nOMBRESLabel.Name = "nOMBRESLabel";
     nOMBRESLabel.Size = new System.Drawing.Size(52, 13);
     nOMBRESLabel.TabIndex = 34;
     nOMBRESLabel.Text = "Nombres:";
     //
     // cEDULALabel
     //
     cEDULALabel.AutoSize = true;
     cEDULALabel.Location = new System.Drawing.Point(22, 135);
     cEDULALabel.Name = "cEDULALabel";
     cEDULALabel.Size = new System.Drawing.Size(43, 13);
     cEDULALabel.TabIndex = 32;
     cEDULALabel.Text = "Cedula:";
     //
     // usuarioLbl
     //
     usuarioLbl.AutoSize = true;
     usuarioLbl.Location = new System.Drawing.Point(22, 192);
     usuarioLbl.Name = "usuarioLbl";
     usuarioLbl.Size = new System.Drawing.Size(46, 13);
     usuarioLbl.TabIndex = 33;
     usuarioLbl.Text = "Usuario:";
     //
     // tipoUsuarioLbl
     //
     tipoUsuarioLbl.AutoSize = true;
     tipoUsuarioLbl.Location = new System.Drawing.Point(21, 165);
     tipoUsuarioLbl.Name = "tipoUsuarioLbl";
     tipoUsuarioLbl.Size = new System.Drawing.Size(68, 13);
     tipoUsuarioLbl.TabIndex = 43;
     tipoUsuarioLbl.Text = "Tipo usuario:";
     //
     // verificarContrasenaTxt
     //
     this.verificarContrasenaTxt.Location = new System.Drawing.Point(134, 240);
     this.verificarContrasenaTxt.Name = "verificarContrasenaTxt";
     this.verificarContrasenaTxt.Size = new System.Drawing.Size(206, 20);
     this.verificarContrasenaTxt.TabIndex = 7;
     this.verificarContrasenaTxt.UseSystemPasswordChar = true;
     this.verificarContrasenaTxt.TextChanged += new System.EventHandler(this.verificarContrasenaTxt_TextChanged);
     //
     // contrasenaTxt
     //
     this.contrasenaTxt.Location = new System.Drawing.Point(134, 214);
     this.contrasenaTxt.Name = "contrasenaTxt";
     this.contrasenaTxt.Size = new System.Drawing.Size(206, 20);
     this.contrasenaTxt.TabIndex = 6;
     this.contrasenaTxt.UseSystemPasswordChar = true;
     this.contrasenaTxt.TextChanged += new System.EventHandler(this.verificarContrasenaTxt_TextChanged);
     //
     // apellidosTxt
     //
     this.apellidosTxt.Location = new System.Drawing.Point(134, 106);
     this.apellidosTxt.Name = "apellidosTxt";
     this.apellidosTxt.Size = new System.Drawing.Size(206, 20);
     this.apellidosTxt.TabIndex = 2;
     //
     // nombresTxt
     //
     this.nombresTxt.Location = new System.Drawing.Point(134, 81);
     this.nombresTxt.Name = "nombresTxt";
     this.nombresTxt.Size = new System.Drawing.Size(206, 20);
     this.nombresTxt.TabIndex = 1;
     //
     // cedulaTxt
     //
     this.cedulaTxt.Location = new System.Drawing.Point(134, 131);
     this.cedulaTxt.Name = "cedulaTxt";
     this.cedulaTxt.Size = new System.Drawing.Size(206, 20);
     this.cedulaTxt.TabIndex = 3;
     this.cedulaTxt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cedulaTxt_KeyPress);
     //
     // usuarioTxt
     //
     this.usuarioTxt.Location = new System.Drawing.Point(134, 188);
     this.usuarioTxt.Name = "usuarioTxt";
     this.usuarioTxt.Size = new System.Drawing.Size(206, 20);
     this.usuarioTxt.TabIndex = 5;
     //
     // GuardarBtn
     //
     this.GuardarBtn.Location = new System.Drawing.Point(154, 330);
     this.GuardarBtn.Name = "GuardarBtn";
     this.GuardarBtn.Size = new System.Drawing.Size(90, 23);
     this.GuardarBtn.TabIndex = 9;
     this.GuardarBtn.Text = "Guardar";
     this.GuardarBtn.UseVisualStyleBackColor = true;
     this.GuardarBtn.Click += new System.EventHandler(this.AceptarBtn_Click);
     //
     // imageNewUser
     //
     this.imageNewUser.Dock = System.Windows.Forms.DockStyle.Top;
     this.imageNewUser.Image = global::SIFCA.Properties.Resources.agregar_usuarios;
     this.imageNewUser.Location = new System.Drawing.Point(0, 0);
     this.imageNewUser.Name = "imageNewUser";
     this.imageNewUser.Size = new System.Drawing.Size(360, 62);
     this.imageNewUser.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.imageNewUser.TabIndex = 24;
     this.imageNewUser.TabStop = false;
     //
     // tipoUsuarioCbx
     //
     this.tipoUsuarioCbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipoUsuarioCbx.FormattingEnabled = true;
     this.tipoUsuarioCbx.Items.AddRange(new object[] {
     "Administrador",
     "No Administrador"});
     this.tipoUsuarioCbx.Location = new System.Drawing.Point(134, 160);
     this.tipoUsuarioCbx.Name = "tipoUsuarioCbx";
     this.tipoUsuarioCbx.Size = new System.Drawing.Size(206, 21);
     this.tipoUsuarioCbx.TabIndex = 4;
     //
     // verContrasena
     //
     this.verContrasena.Location = new System.Drawing.Point(226, 263);
     this.verContrasena.Name = "verContrasena";
     this.verContrasena.Size = new System.Drawing.Size(114, 23);
     this.verContrasena.TabIndex = 8;
     this.verContrasena.Text = "Ver Contraseña";
     this.verContrasena.UseVisualStyleBackColor = true;
     this.verContrasena.Click += new System.EventHandler(this.verContrasena_Click);
     //
     // errorLbl
     //
     this.errorLbl.AutoSize = true;
     this.errorLbl.Location = new System.Drawing.Point(131, 299);
     this.errorLbl.Name = "errorLbl";
     this.errorLbl.Size = new System.Drawing.Size(0, 13);
     this.errorLbl.TabIndex = 46;
     //
     // cancelarBtn
     //
     this.cancelarBtn.Location = new System.Drawing.Point(250, 330);
     this.cancelarBtn.Name = "cancelarBtn";
     this.cancelarBtn.Size = new System.Drawing.Size(90, 23);
     this.cancelarBtn.TabIndex = 10;
     this.cancelarBtn.Text = "Cancelar";
     this.cancelarBtn.UseVisualStyleBackColor = true;
     this.cancelarBtn.Click += new System.EventHandler(this.cancelarBtn_Click);
     //
     // controladorErrores
     //
     this.controladorErrores.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.controladorErrores.ContainerControl = this;
     //
     // Crear_Usuario_Form
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(360, 373);
     this.Controls.Add(this.verContrasena);
     this.Controls.Add(this.errorLbl);
     this.Controls.Add(this.cancelarBtn);
     this.Controls.Add(this.tipoUsuarioCbx);
     this.Controls.Add(tipoUsuarioLbl);
     this.Controls.Add(label1);
     this.Controls.Add(this.verificarContrasenaTxt);
     this.Controls.Add(cONTRASENALabel);
     this.Controls.Add(this.contrasenaTxt);
     this.Controls.Add(aPELLIDOSLabel);
     this.Controls.Add(this.apellidosTxt);
     this.Controls.Add(nOMBRESLabel);
     this.Controls.Add(this.nombresTxt);
     this.Controls.Add(cEDULALabel);
     this.Controls.Add(this.cedulaTxt);
     this.Controls.Add(usuarioLbl);
     this.Controls.Add(this.usuarioTxt);
     this.Controls.Add(this.GuardarBtn);
     this.Controls.Add(this.imageNewUser);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Crear_Usuario_Form";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Registrar usuarios";
     ((System.ComponentModel.ISupportInitialize)(this.imageNewUser)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.controladorErrores)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #32
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components       = new System.ComponentModel.Container();
     this.gpbEmpleados     = new System.Windows.Forms.GroupBox();
     this.txtRol           = new System.Windows.Forms.TextBox();
     this.label11          = new System.Windows.Forms.Label();
     this.txtLocalidad     = new System.Windows.Forms.TextBox();
     this.label12          = new System.Windows.Forms.Label();
     this.txtPassword      = new System.Windows.Forms.TextBox();
     this.label9           = new System.Windows.Forms.Label();
     this.txtDireccion     = new System.Windows.Forms.TextBox();
     this.label5           = new System.Windows.Forms.Label();
     this.txtUser          = new System.Windows.Forms.TextBox();
     this.label8           = new System.Windows.Forms.Label();
     this.txtTelefono      = new System.Windows.Forms.TextBox();
     this.label6           = new System.Windows.Forms.Label();
     this.txtApellidoM     = new System.Windows.Forms.TextBox();
     this.label4           = new System.Windows.Forms.Label();
     this.txtApellidoP     = new System.Windows.Forms.TextBox();
     this.label3           = new System.Windows.Forms.Label();
     this.txtNombre        = new System.Windows.Forms.TextBox();
     this.label2           = new System.Windows.Forms.Label();
     this.txtCurp          = new System.Windows.Forms.TextBox();
     this.label1           = new System.Windows.Forms.Label();
     this.dgvEmpleados     = new System.Windows.Forms.DataGridView();
     this.btnAgregar       = new System.Windows.Forms.Button();
     this.btnModificar     = new System.Windows.Forms.Button();
     this.btnEliminar      = new System.Windows.Forms.Button();
     this.label10          = new System.Windows.Forms.Label();
     this.txtBuscar        = new System.Windows.Forms.TextBox();
     this.btnAgregarUser   = new System.Windows.Forms.Button();
     this.btnModificarUser = new System.Windows.Forms.Button();
     this.btnCancelar      = new System.Windows.Forms.Button();
     this.epError          = new System.Windows.Forms.ErrorProvider(this.components);
     this.gpbEmpleados.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvEmpleados)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.epError)).BeginInit();
     this.SuspendLayout();
     //
     // gpbEmpleados
     //
     this.gpbEmpleados.Controls.Add(this.txtRol);
     this.gpbEmpleados.Controls.Add(this.label11);
     this.gpbEmpleados.Controls.Add(this.txtLocalidad);
     this.gpbEmpleados.Controls.Add(this.label12);
     this.gpbEmpleados.Controls.Add(this.txtPassword);
     this.gpbEmpleados.Controls.Add(this.label9);
     this.gpbEmpleados.Controls.Add(this.txtDireccion);
     this.gpbEmpleados.Controls.Add(this.label5);
     this.gpbEmpleados.Controls.Add(this.txtUser);
     this.gpbEmpleados.Controls.Add(this.label8);
     this.gpbEmpleados.Controls.Add(this.txtTelefono);
     this.gpbEmpleados.Controls.Add(this.label6);
     this.gpbEmpleados.Controls.Add(this.txtApellidoM);
     this.gpbEmpleados.Controls.Add(this.label4);
     this.gpbEmpleados.Controls.Add(this.txtApellidoP);
     this.gpbEmpleados.Controls.Add(this.label3);
     this.gpbEmpleados.Controls.Add(this.txtNombre);
     this.gpbEmpleados.Controls.Add(this.label2);
     this.gpbEmpleados.Controls.Add(this.txtCurp);
     this.gpbEmpleados.Controls.Add(this.label1);
     this.gpbEmpleados.Location = new System.Drawing.Point(20, 46);
     this.gpbEmpleados.Name     = "gpbEmpleados";
     this.gpbEmpleados.Size     = new System.Drawing.Size(347, 414);
     this.gpbEmpleados.TabIndex = 0;
     this.gpbEmpleados.TabStop  = false;
     this.gpbEmpleados.Text     = "Datos del Empleado";
     //
     // txtRol
     //
     this.txtRol.Location  = new System.Drawing.Point(116, 373);
     this.txtRol.MaxLength = 60;
     this.txtRol.Name      = "txtRol";
     this.txtRol.Size      = new System.Drawing.Size(196, 20);
     this.txtRol.TabIndex  = 10;
     this.txtRol.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtRolKeyPress);
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(12, 373);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(104, 23);
     this.label11.TabIndex = 4;
     this.label11.Text     = "Rol:";
     //
     // txtLocalidad
     //
     this.txtLocalidad.Location  = new System.Drawing.Point(118, 180);
     this.txtLocalidad.MaxLength = 60;
     this.txtLocalidad.Name      = "txtLocalidad";
     this.txtLocalidad.Size      = new System.Drawing.Size(196, 20);
     this.txtLocalidad.TabIndex  = 5;
     this.txtLocalidad.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtLocalidadKeyPress);
     //
     // label12
     //
     this.label12.Location = new System.Drawing.Point(14, 183);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(98, 17);
     this.label12.TabIndex = 14;
     this.label12.Text     = "Localidad:";
     //
     // txtPassword
     //
     this.txtPassword.Location  = new System.Drawing.Point(116, 334);
     this.txtPassword.MaxLength = 60;
     this.txtPassword.Name      = "txtPassword";
     this.txtPassword.Size      = new System.Drawing.Size(196, 20);
     this.txtPassword.TabIndex  = 9;
     this.txtPassword.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtPasswordKeyPress);
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(12, 334);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(104, 23);
     this.label9.TabIndex = 2;
     this.label9.Text     = "Contraseña:";
     //
     // txtDireccion
     //
     this.txtDireccion.Location  = new System.Drawing.Point(118, 217);
     this.txtDireccion.MaxLength = 60;
     this.txtDireccion.Name      = "txtDireccion";
     this.txtDireccion.Size      = new System.Drawing.Size(196, 20);
     this.txtDireccion.TabIndex  = 6;
     this.txtDireccion.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtDireccionKeyPress);
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(14, 220);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(98, 17);
     this.label5.TabIndex = 12;
     this.label5.Text     = "Dirección:";
     //
     // txtUser
     //
     this.txtUser.Location  = new System.Drawing.Point(116, 296);
     this.txtUser.MaxLength = 60;
     this.txtUser.Name      = "txtUser";
     this.txtUser.Size      = new System.Drawing.Size(196, 20);
     this.txtUser.TabIndex  = 8;
     this.txtUser.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtUserKeyPress);
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(12, 299);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(106, 23);
     this.label8.TabIndex = 0;
     this.label8.Text     = "Nombre de Usuario:";
     //
     // txtTelefono
     //
     this.txtTelefono.Location  = new System.Drawing.Point(118, 256);
     this.txtTelefono.MaxLength = 10;
     this.txtTelefono.Name      = "txtTelefono";
     this.txtTelefono.Size      = new System.Drawing.Size(196, 20);
     this.txtTelefono.TabIndex  = 7;
     this.txtTelefono.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtTelefonoKeyPress);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(14, 256);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(98, 17);
     this.label6.TabIndex = 10;
     this.label6.Text     = "Teléfono:";
     //
     // txtApellidoM
     //
     this.txtApellidoM.Location  = new System.Drawing.Point(118, 139);
     this.txtApellidoM.MaxLength = 60;
     this.txtApellidoM.Name      = "txtApellidoM";
     this.txtApellidoM.Size      = new System.Drawing.Size(196, 20);
     this.txtApellidoM.TabIndex  = 4;
     this.txtApellidoM.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtApellidoMKeyPress);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(14, 142);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(98, 20);
     this.label4.TabIndex = 6;
     this.label4.Text     = "Apellido Materno:";
     //
     // txtApellidoP
     //
     this.txtApellidoP.Location  = new System.Drawing.Point(118, 98);
     this.txtApellidoP.MaxLength = 60;
     this.txtApellidoP.Name      = "txtApellidoP";
     this.txtApellidoP.Size      = new System.Drawing.Size(196, 20);
     this.txtApellidoP.TabIndex  = 3;
     this.txtApellidoP.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtApellidoPKeyPress);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(14, 101);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(98, 32);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Apellido Paterno:";
     //
     // txtNombre
     //
     this.txtNombre.Location  = new System.Drawing.Point(118, 66);
     this.txtNombre.MaxLength = 60;
     this.txtNombre.Name      = "txtNombre";
     this.txtNombre.Size      = new System.Drawing.Size(196, 20);
     this.txtNombre.TabIndex  = 2;
     this.txtNombre.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtNombreKeyPress);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(12, 70);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(88, 16);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Nombres:";
     //
     // txtCurp
     //
     this.txtCurp.Location  = new System.Drawing.Point(118, 27);
     this.txtCurp.MaxLength = 18;
     this.txtCurp.Name      = "txtCurp";
     this.txtCurp.Size      = new System.Drawing.Size(196, 20);
     this.txtCurp.TabIndex  = 1;
     this.txtCurp.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TxtCurpKeyPress);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 30);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(88, 16);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Curp:";
     //
     // dgvEmpleados
     //
     this.dgvEmpleados.AllowUserToAddRows          = false;
     this.dgvEmpleados.AllowUserToDeleteRows       = false;
     this.dgvEmpleados.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvEmpleados.Location = new System.Drawing.Point(373, 46);
     this.dgvEmpleados.Name     = "dgvEmpleados";
     this.dgvEmpleados.ReadOnly = true;
     this.dgvEmpleados.Size     = new System.Drawing.Size(459, 393);
     this.dgvEmpleados.TabIndex = 1;
     //
     // btnAgregar
     //
     this.btnAgregar.Location = new System.Drawing.Point(388, 449);
     this.btnAgregar.Name     = "btnAgregar";
     this.btnAgregar.Size     = new System.Drawing.Size(75, 23);
     this.btnAgregar.TabIndex = 3;
     this.btnAgregar.Text     = "Agregar";
     this.btnAgregar.UseVisualStyleBackColor = true;
     this.btnAgregar.Click += new System.EventHandler(this.BtnAgregarClick);
     //
     // btnModificar
     //
     this.btnModificar.Location = new System.Drawing.Point(516, 449);
     this.btnModificar.Name     = "btnModificar";
     this.btnModificar.Size     = new System.Drawing.Size(75, 23);
     this.btnModificar.TabIndex = 4;
     this.btnModificar.Text     = "Modificar";
     this.btnModificar.UseVisualStyleBackColor = true;
     this.btnModificar.Click += new System.EventHandler(this.BtnModificarClick);
     //
     // btnEliminar
     //
     this.btnEliminar.Location = new System.Drawing.Point(648, 449);
     this.btnEliminar.Name     = "btnEliminar";
     this.btnEliminar.Size     = new System.Drawing.Size(75, 23);
     this.btnEliminar.TabIndex = 5;
     this.btnEliminar.Text     = "Eliminar";
     this.btnEliminar.UseVisualStyleBackColor = true;
     this.btnEliminar.Click += new System.EventHandler(this.BtnEliminarClick);
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(373, 9);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(100, 23);
     this.label10.TabIndex = 6;
     this.label10.Text     = "Buscar:";
     //
     // txtBuscar
     //
     this.txtBuscar.Location     = new System.Drawing.Point(446, 6);
     this.txtBuscar.Name         = "txtBuscar";
     this.txtBuscar.Size         = new System.Drawing.Size(373, 20);
     this.txtBuscar.TabIndex     = 11;
     this.txtBuscar.TextChanged += new System.EventHandler(this.TxtBuscarTextChanged);
     this.txtBuscar.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.TxtBuscarKeyPress);
     //
     // btnAgregarUser
     //
     this.btnAgregarUser.Location = new System.Drawing.Point(388, 449);
     this.btnAgregarUser.Name     = "btnAgregarUser";
     this.btnAgregarUser.Size     = new System.Drawing.Size(75, 23);
     this.btnAgregarUser.TabIndex = 8;
     this.btnAgregarUser.Text     = "AgregarUser";
     this.btnAgregarUser.UseVisualStyleBackColor = true;
     this.btnAgregarUser.Click += new System.EventHandler(this.BtnAgregarUserClick);
     //
     // btnModificarUser
     //
     this.btnModificarUser.Location = new System.Drawing.Point(516, 449);
     this.btnModificarUser.Name     = "btnModificarUser";
     this.btnModificarUser.Size     = new System.Drawing.Size(75, 23);
     this.btnModificarUser.TabIndex = 9;
     this.btnModificarUser.Text     = "ModificarUser";
     this.btnModificarUser.UseVisualStyleBackColor = true;
     this.btnModificarUser.Click += new System.EventHandler(this.BtnModificarUserClick);
     //
     // btnCancelar
     //
     this.btnCancelar.Location = new System.Drawing.Point(757, 449);
     this.btnCancelar.Name     = "btnCancelar";
     this.btnCancelar.Size     = new System.Drawing.Size(75, 23);
     this.btnCancelar.TabIndex = 10;
     this.btnCancelar.Text     = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.BtnCancelarClick);
     //
     // epError
     //
     this.epError.ContainerControl = this;
     //
     // FormUsuarios
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(844, 504);
     this.Controls.Add(this.btnCancelar);
     this.Controls.Add(this.btnModificarUser);
     this.Controls.Add(this.btnAgregarUser);
     this.Controls.Add(this.txtBuscar);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.btnEliminar);
     this.Controls.Add(this.btnModificar);
     this.Controls.Add(this.btnAgregar);
     this.Controls.Add(this.dgvEmpleados);
     this.Controls.Add(this.gpbEmpleados);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.Name            = "FormUsuarios";
     this.Text            = "Panel de Empleados";
     this.Load           += new System.EventHandler(this.FormUsuariosLoad);
     this.gpbEmpleados.ResumeLayout(false);
     this.gpbEmpleados.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvEmpleados)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.epError)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Initializes a new instance of the <see cref="TransactionHistoryArchiveDataGridViewBase"/> class.
        /// </summary>
        public TransactionHistoryArchiveDataGridViewBase()
        {
            this.components = new System.ComponentModel.Container();

            this.uxTransactionHistoryArchiveDataGridView  = new System.Windows.Forms.DataGridView();
            this.uxTransactionHistoryArchiveBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.uxTransactionHistoryArchiveErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxTransactionIdDataGridViewColumn        = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxProductIdDataGridViewColumn            = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxReferenceOrderIdDataGridViewColumn     = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxReferenceOrderLineIdDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxTransactionDateDataGridViewColumn      = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxTransactionTypeDataGridViewColumn      = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxQuantityDataGridViewColumn             = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxActualCostDataGridViewColumn           = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.uxModifiedDateDataGridViewColumn         = new System.Windows.Forms.DataGridViewTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.uxTransactionHistoryArchiveDataGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxTransactionHistoryArchiveBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxTransactionHistoryArchiveErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTransactionHistoryArchiveErrorProvider
            //
            this.uxTransactionHistoryArchiveErrorProvider.ContainerControl = this;
            this.uxTransactionHistoryArchiveErrorProvider.DataSource       = this.uxTransactionHistoryArchiveBindingSource;
            //
            // uxTransactionHistoryArchiveDataGridView
            //
            this.uxTransactionHistoryArchiveDataGridView.AutoGenerateColumns         = false;
            this.uxTransactionHistoryArchiveDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.uxTransactionHistoryArchiveDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
                this.uxTransactionIdDataGridViewColumn,
                this.uxProductIdDataGridViewColumn,
                this.uxReferenceOrderIdDataGridViewColumn,
                this.uxReferenceOrderLineIdDataGridViewColumn,
                this.uxTransactionDateDataGridViewColumn,
                this.uxTransactionTypeDataGridViewColumn,
                this.uxQuantityDataGridViewColumn,
                this.uxActualCostDataGridViewColumn,
                this.uxModifiedDateDataGridViewColumn
            });
            this.uxTransactionHistoryArchiveDataGridView.Dock                      = System.Windows.Forms.DockStyle.Fill;
            this.uxTransactionHistoryArchiveDataGridView.Location                  = new System.Drawing.Point(0, 0);
            this.uxTransactionHistoryArchiveDataGridView.Name                      = "uxTransactionHistoryArchiveDataGridView";
            this.uxTransactionHistoryArchiveDataGridView.Size                      = new System.Drawing.Size(470, 300);
            this.uxTransactionHistoryArchiveDataGridView.TabIndex                  = 0;
            this.uxTransactionHistoryArchiveDataGridView.BackgroundColor           = System.Drawing.Color.WhiteSmoke;
            this.uxTransactionHistoryArchiveDataGridView.EnableHeadersVisualStyles = false;
            this.uxTransactionHistoryArchiveDataGridView.DataError                += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnTransactionHistoryArchiveDataGridViewDataError);
            this.uxTransactionHistoryArchiveDataGridView.CellValueNeeded          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnTransactionHistoryArchiveDataGridViewCellValueNeeded);
            this.uxTransactionHistoryArchiveDataGridView.CellValuePushed          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnTransactionHistoryArchiveDataGridViewCellValuePushed);

            //
            // uxTransactionIdDataGridViewColumn
            //
            this.uxTransactionIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxTransactionIdDataGridViewColumn.DataPropertyName = "TransactionId";
            this.uxTransactionIdDataGridViewColumn.HeaderText       = "TransactionId";
            this.uxTransactionIdDataGridViewColumn.Name             = "uxTransactionIdDataGridViewColumn";
            this.uxTransactionIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxTransactionIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxTransactionIdDataGridViewColumn.ReadOnly         = false;
            //
            // uxProductIdDataGridViewColumn
            //
            this.uxProductIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxProductIdDataGridViewColumn.DataPropertyName = "ProductId";
            this.uxProductIdDataGridViewColumn.HeaderText       = "ProductId";
            this.uxProductIdDataGridViewColumn.Name             = "uxProductIdDataGridViewColumn";
            this.uxProductIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxProductIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxProductIdDataGridViewColumn.ReadOnly         = false;
            //
            // uxReferenceOrderIdDataGridViewColumn
            //
            this.uxReferenceOrderIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxReferenceOrderIdDataGridViewColumn.DataPropertyName = "ReferenceOrderId";
            this.uxReferenceOrderIdDataGridViewColumn.HeaderText       = "ReferenceOrderId";
            this.uxReferenceOrderIdDataGridViewColumn.Name             = "uxReferenceOrderIdDataGridViewColumn";
            this.uxReferenceOrderIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxReferenceOrderIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxReferenceOrderIdDataGridViewColumn.ReadOnly         = false;
            //
            // uxReferenceOrderLineIdDataGridViewColumn
            //
            this.uxReferenceOrderLineIdDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxReferenceOrderLineIdDataGridViewColumn.DataPropertyName = "ReferenceOrderLineId";
            this.uxReferenceOrderLineIdDataGridViewColumn.HeaderText       = "ReferenceOrderLineId";
            this.uxReferenceOrderLineIdDataGridViewColumn.Name             = "uxReferenceOrderLineIdDataGridViewColumn";
            this.uxReferenceOrderLineIdDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxReferenceOrderLineIdDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxReferenceOrderLineIdDataGridViewColumn.ReadOnly         = false;
            //
            // uxTransactionDateDataGridViewColumn
            //
            this.uxTransactionDateDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxTransactionDateDataGridViewColumn.DataPropertyName = "TransactionDate";
            this.uxTransactionDateDataGridViewColumn.HeaderText       = "TransactionDate";
            this.uxTransactionDateDataGridViewColumn.Name             = "uxTransactionDateDataGridViewColumn";
            this.uxTransactionDateDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxTransactionDateDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxTransactionDateDataGridViewColumn.ReadOnly         = false;
            //
            // uxTransactionTypeDataGridViewColumn
            //
            this.uxTransactionTypeDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxTransactionTypeDataGridViewColumn.DataPropertyName = "TransactionType";
            this.uxTransactionTypeDataGridViewColumn.HeaderText       = "TransactionType";
            this.uxTransactionTypeDataGridViewColumn.Name             = "uxTransactionTypeDataGridViewColumn";
            this.uxTransactionTypeDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxTransactionTypeDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxTransactionTypeDataGridViewColumn.ReadOnly         = false;
            //
            // uxQuantityDataGridViewColumn
            //
            this.uxQuantityDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxQuantityDataGridViewColumn.DataPropertyName = "Quantity";
            this.uxQuantityDataGridViewColumn.HeaderText       = "Quantity";
            this.uxQuantityDataGridViewColumn.Name             = "uxQuantityDataGridViewColumn";
            this.uxQuantityDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxQuantityDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxQuantityDataGridViewColumn.ReadOnly         = false;
            //
            // uxActualCostDataGridViewColumn
            //
            this.uxActualCostDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxActualCostDataGridViewColumn.DataPropertyName = "ActualCost";
            this.uxActualCostDataGridViewColumn.HeaderText       = "ActualCost";
            this.uxActualCostDataGridViewColumn.Name             = "uxActualCostDataGridViewColumn";
            this.uxActualCostDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxActualCostDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxActualCostDataGridViewColumn.ReadOnly         = false;
            //
            // uxModifiedDateDataGridViewColumn
            //
            this.uxModifiedDateDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxModifiedDateDataGridViewColumn.DataPropertyName = "ModifiedDate";
            this.uxModifiedDateDataGridViewColumn.HeaderText       = "ModifiedDate";
            this.uxModifiedDateDataGridViewColumn.Name             = "uxModifiedDateDataGridViewColumn";
            this.uxModifiedDateDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxModifiedDateDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxModifiedDateDataGridViewColumn.ReadOnly         = false;

            // this
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.uxTransactionHistoryArchiveDataGridView);
            this.Name = "TransactionHistoryArchiveDataGridView";
            this.Size = new System.Drawing.Size(470, 300);
            ((System.ComponentModel.ISupportInitialize)(this.uxTransactionHistoryArchiveErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxTransactionHistoryArchiveDataGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxTransactionHistoryArchiveBindingSource)).EndInit();
            this.ResumeLayout(false);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.lsvNV = new System.Windows.Forms.ListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.btnSLF = new System.Windows.Forms.Button();
     this.btnLSP = new System.Windows.Forms.Button();
     this.btnLSN = new System.Windows.Forms.Button();
     this.btnSLL = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.txtTenNV = new System.Windows.Forms.TextBox();
     this.dtpNS = new System.Windows.Forms.DateTimePicker();
     this.rdbNam = new System.Windows.Forms.RadioButton();
     this.rdbNu = new System.Windows.Forms.RadioButton();
     this.txtDiaChi = new System.Windows.Forms.TextBox();
     this.txtDienthoai = new System.Windows.Forms.TextBox();
     this.btnThem = new System.Windows.Forms.Button();
     this.btnXoa = new System.Windows.Forms.Button();
     this.btnSua = new System.Windows.Forms.Button();
     this.cmbChucVu = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.txtTimKiem = new System.Windows.Forms.TextBox();
     this.loi = new System.Windows.Forms.ErrorProvider(this.components);
     this.label8 = new System.Windows.Forms.Label();
     this.txtMaNV = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.loi)).BeginInit();
     this.SuspendLayout();
     //
     // lsvNV
     //
     this.lsvNV.BackColor = System.Drawing.Color.AliceBlue;
     this.lsvNV.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3,
     this.columnHeader4,
     this.columnHeader5,
     this.columnHeader6,
     this.columnHeader7});
     this.lsvNV.FullRowSelect = true;
     this.lsvNV.GridLines = true;
     this.lsvNV.Location = new System.Drawing.Point(46, 220);
     this.lsvNV.MultiSelect = false;
     this.lsvNV.Name = "lsvNV";
     this.lsvNV.Size = new System.Drawing.Size(633, 200);
     this.lsvNV.TabIndex = 0;
     this.lsvNV.UseCompatibleStateImageBehavior = false;
     this.lsvNV.View = System.Windows.Forms.View.Details;
     this.lsvNV.SelectedIndexChanged += new System.EventHandler(this.lsvNV_SelectedIndexChanged);
     this.lsvNV.Click += new System.EventHandler(this.lsvNV_Click);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Mã nhân viên";
     this.columnHeader1.Width = 89;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Tên nhân viên";
     this.columnHeader2.Width = 101;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Ngày sinh";
     this.columnHeader3.Width = 81;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Phái";
     this.columnHeader4.Width = 87;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "Địa chỉ";
     this.columnHeader5.Width = 110;
     //
     // columnHeader6
     //
     this.columnHeader6.Text = "Phone";
     this.columnHeader6.Width = 78;
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "Chức vụ";
     this.columnHeader7.Width = 80;
     //
     // btnSLF
     //
     this.btnSLF.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSLF.Location = new System.Drawing.Point(50, 191);
     this.btnSLF.Name = "btnSLF";
     this.btnSLF.Size = new System.Drawing.Size(44, 23);
     this.btnSLF.TabIndex = 1;
     this.btnSLF.Text = "First";
     this.btnSLF.UseVisualStyleBackColor = true;
     this.btnSLF.Click += new System.EventHandler(this.btnSLF_Click);
     //
     // btnLSP
     //
     this.btnLSP.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLSP.Location = new System.Drawing.Point(100, 191);
     this.btnLSP.Name = "btnLSP";
     this.btnLSP.Size = new System.Drawing.Size(44, 23);
     this.btnLSP.TabIndex = 2;
     this.btnLSP.Text = "<<";
     this.btnLSP.UseVisualStyleBackColor = true;
     this.btnLSP.Click += new System.EventHandler(this.btnLSP_Click);
     //
     // btnLSN
     //
     this.btnLSN.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLSN.Location = new System.Drawing.Point(150, 191);
     this.btnLSN.Name = "btnLSN";
     this.btnLSN.Size = new System.Drawing.Size(44, 23);
     this.btnLSN.TabIndex = 3;
     this.btnLSN.Text = ">>";
     this.btnLSN.UseVisualStyleBackColor = true;
     this.btnLSN.Click += new System.EventHandler(this.btnLSN_Click);
     //
     // btnSLL
     //
     this.btnSLL.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSLL.Location = new System.Drawing.Point(200, 191);
     this.btnSLL.Name = "btnSLL";
     this.btnSLL.Size = new System.Drawing.Size(44, 23);
     this.btnSLL.TabIndex = 4;
     this.btnSLL.Text = "Last";
     this.btnSLL.UseVisualStyleBackColor = true;
     this.btnSLL.Click += new System.EventHandler(this.btnSLL_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(45, 67);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(79, 13);
     this.label2.TabIndex = 6;
     this.label2.Text = "Tên nhân viên:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(45, 101);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(57, 13);
     this.label3.TabIndex = 7;
     this.label3.Text = "Ngày sinh:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(45, 132);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(50, 13);
     this.label4.TabIndex = 8;
     this.label4.Text = "Giới tính:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(385, 37);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(43, 13);
     this.label5.TabIndex = 9;
     this.label5.Text = "Địa chỉ:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(385, 71);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(58, 13);
     this.label6.TabIndex = 10;
     this.label6.Text = "Điện thoại:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(385, 102);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(50, 13);
     this.label7.TabIndex = 11;
     this.label7.Text = "Chức vụ:";
     //
     // txtTenNV
     //
     this.txtTenNV.BackColor = System.Drawing.Color.AliceBlue;
     this.txtTenNV.Location = new System.Drawing.Point(150, 60);
     this.txtTenNV.Name = "txtTenNV";
     this.txtTenNV.Size = new System.Drawing.Size(174, 20);
     this.txtTenNV.TabIndex = 13;
     //
     // dtpNS
     //
     this.dtpNS.CalendarMonthBackground = System.Drawing.Color.AliceBlue;
     this.dtpNS.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpNS.Location = new System.Drawing.Point(150, 94);
     this.dtpNS.Name = "dtpNS";
     this.dtpNS.Size = new System.Drawing.Size(174, 20);
     this.dtpNS.TabIndex = 14;
     this.dtpNS.ValueChanged += new System.EventHandler(this.dtpNS_ValueChanged);
     //
     // rdbNam
     //
     this.rdbNam.AutoSize = true;
     this.rdbNam.Checked = true;
     this.rdbNam.Location = new System.Drawing.Point(150, 128);
     this.rdbNam.Name = "rdbNam";
     this.rdbNam.Size = new System.Drawing.Size(47, 17);
     this.rdbNam.TabIndex = 15;
     this.rdbNam.TabStop = true;
     this.rdbNam.Text = "Nam";
     this.rdbNam.UseVisualStyleBackColor = true;
     //
     // rdbNu
     //
     this.rdbNu.AutoSize = true;
     this.rdbNu.Location = new System.Drawing.Point(252, 128);
     this.rdbNu.Name = "rdbNu";
     this.rdbNu.Size = new System.Drawing.Size(39, 17);
     this.rdbNu.TabIndex = 16;
     this.rdbNu.Text = "Nữ";
     this.rdbNu.UseVisualStyleBackColor = true;
     //
     // txtDiaChi
     //
     this.txtDiaChi.BackColor = System.Drawing.Color.AliceBlue;
     this.txtDiaChi.Location = new System.Drawing.Point(457, 30);
     this.txtDiaChi.Name = "txtDiaChi";
     this.txtDiaChi.Size = new System.Drawing.Size(173, 20);
     this.txtDiaChi.TabIndex = 17;
     //
     // txtDienthoai
     //
     this.txtDienthoai.BackColor = System.Drawing.Color.AliceBlue;
     this.txtDienthoai.Location = new System.Drawing.Point(457, 64);
     this.txtDienthoai.Name = "txtDienthoai";
     this.txtDienthoai.Size = new System.Drawing.Size(173, 20);
     this.txtDienthoai.TabIndex = 18;
     this.txtDienthoai.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtDienthoai_KeyDown);
     this.txtDienthoai.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtDienthoai_KeyPress);
     //
     // btnThem
     //
     this.btnThem.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnThem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnThem.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnThem.ForeColor = System.Drawing.Color.Navy;
     this.btnThem.Location = new System.Drawing.Point(327, 155);
     this.btnThem.Name = "btnThem";
     this.btnThem.Size = new System.Drawing.Size(75, 23);
     this.btnThem.TabIndex = 20;
     this.btnThem.Text = "Thêm";
     this.btnThem.UseVisualStyleBackColor = true;
     this.btnThem.Click += new System.EventHandler(this.btnThem_Click);
     //
     // btnXoa
     //
     this.btnXoa.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnXoa.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnXoa.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnXoa.ForeColor = System.Drawing.Color.Navy;
     this.btnXoa.Location = new System.Drawing.Point(445, 155);
     this.btnXoa.Name = "btnXoa";
     this.btnXoa.Size = new System.Drawing.Size(75, 23);
     this.btnXoa.TabIndex = 21;
     this.btnXoa.Text = "Xóa";
     this.btnXoa.UseVisualStyleBackColor = true;
     this.btnXoa.Click += new System.EventHandler(this.btnXoa_Click);
     //
     // btnSua
     //
     this.btnSua.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnSua.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnSua.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSua.ForeColor = System.Drawing.Color.Navy;
     this.btnSua.Location = new System.Drawing.Point(564, 155);
     this.btnSua.Name = "btnSua";
     this.btnSua.Size = new System.Drawing.Size(75, 23);
     this.btnSua.TabIndex = 22;
     this.btnSua.Text = "Sửa";
     this.btnSua.UseVisualStyleBackColor = true;
     this.btnSua.Click += new System.EventHandler(this.btnSua_Click);
     //
     // cmbChucVu
     //
     this.cmbChucVu.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbChucVu.FormattingEnabled = true;
     this.cmbChucVu.Location = new System.Drawing.Point(457, 94);
     this.cmbChucVu.Name = "cmbChucVu";
     this.cmbChucVu.Size = new System.Drawing.Size(173, 21);
     this.cmbChucVu.TabIndex = 23;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(295, 196);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(52, 13);
     this.label1.TabIndex = 24;
     this.label1.Text = "Tìm kiếm:";
     //
     // txtTimKiem
     //
     this.txtTimKiem.BackColor = System.Drawing.Color.AliceBlue;
     this.txtTimKiem.Location = new System.Drawing.Point(364, 189);
     this.txtTimKiem.Name = "txtTimKiem";
     this.txtTimKiem.Size = new System.Drawing.Size(140, 20);
     this.txtTimKiem.TabIndex = 25;
     this.txtTimKiem.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtTimKiem_KeyUp);
     //
     // loi
     //
     this.loi.ContainerControl = this;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(47, 30);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(75, 13);
     this.label8.TabIndex = 26;
     this.label8.Text = "Mã nhân viên:";
     //
     // txtMaNV
     //
     this.txtMaNV.BackColor = System.Drawing.Color.AliceBlue;
     this.txtMaNV.Location = new System.Drawing.Point(150, 23);
     this.txtMaNV.Name = "txtMaNV";
     this.txtMaNV.Size = new System.Drawing.Size(174, 20);
     this.txtMaNV.TabIndex = 27;
     //
     // FormNhanVien
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.ClientSize = new System.Drawing.Size(723, 432);
     this.Controls.Add(this.txtMaNV);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.txtTimKiem);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.cmbChucVu);
     this.Controls.Add(this.btnSua);
     this.Controls.Add(this.btnXoa);
     this.Controls.Add(this.btnThem);
     this.Controls.Add(this.txtDienthoai);
     this.Controls.Add(this.txtDiaChi);
     this.Controls.Add(this.rdbNu);
     this.Controls.Add(this.rdbNam);
     this.Controls.Add(this.dtpNS);
     this.Controls.Add(this.txtTenNV);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.btnSLL);
     this.Controls.Add(this.btnLSN);
     this.Controls.Add(this.btnLSP);
     this.Controls.Add(this.btnSLF);
     this.Controls.Add(this.lsvNV);
     this.Name = "FormNhanVien";
     this.Text = "FormNhanVien";
     this.Load += new System.EventHandler(this.FormNhanVien_Load);
     ((System.ComponentModel.ISupportInitialize)(this.loi)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCategory));
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.categoryBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.newDataSet = new PEIMSV3Cs.NewDataSet();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.Panel1 = new System.Windows.Forms.Panel();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.SaveButton = new System.Windows.Forms.Button();
     this.SearchIDButton = new System.Windows.Forms.Button();
     this.ExitButton = new System.Windows.Forms.Button();
     this.UpdateButton = new System.Windows.Forms.Button();
     this.DeleteButton = new System.Windows.Forms.Button();
     this.AddButton = new System.Windows.Forms.Button();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.listBox1 = new System.Windows.Forms.ListBox();
     this.categoryIDLabel = new System.Windows.Forms.Label();
     this.categoryIDTextBox = new System.Windows.Forms.TextBox();
     this.categoryNameLabel = new System.Windows.Forms.Label();
     this.categoryNameTextBox = new System.Windows.Forms.TextBox();
     this.categoryDescriptionLabel = new System.Windows.Forms.Label();
     this.categoryDescriptionTextBox = new System.Windows.Forms.TextBox();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.categoryDataGridView = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel3 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.panel5 = new System.Windows.Forms.Panel();
     this.panel6 = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.categoryBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.newDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.Panel1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.categoryDataGridView)).BeginInit();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.BindingSource = this.categoryBindingSource;
     this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem = this.bindingNavigatorDeleteItem;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.bindingNavigatorDeleteItem,
     this.toolStripButton1});
     this.bindingNavigator1.Location = new System.Drawing.Point(0, 0);
     this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name = "bindingNavigator1";
     this.bindingNavigator1.Padding = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.bindingNavigator1.Size = new System.Drawing.Size(612, 25);
     this.bindingNavigator1.TabIndex = 0;
     this.bindingNavigator1.Text = "bindingNavigator1";
     //
     // categoryBindingSource
     //
     this.categoryBindingSource.DataMember = "category";
     this.categoryBindingSource.DataSource = this.newDataSet;
     //
     // newDataSet
     //
     this.newDataSet.DataSetName = "NewDataSet";
     this.newDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(35, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     this.bindingNavigatorAddNewItem.Click += new System.EventHandler(this.bindingNavigatorAddNewItem_Click);
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "Save";
     this.toolStripButton1.Click += new System.EventHandler(this.Save_Click);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // Panel1
     //
     this.Panel1.AutoScroll = true;
     this.Panel1.AutoSize = true;
     this.Panel1.Controls.Add(this.tabControl1);
     this.Panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Panel1.Location = new System.Drawing.Point(0, 0);
     this.Panel1.Margin = new System.Windows.Forms.Padding(10, 3, 10, 3);
     this.Panel1.Name = "Panel1";
     this.Panel1.Size = new System.Drawing.Size(612, 268);
     this.Panel1.TabIndex = 1;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Location = new System.Drawing.Point(0, 3);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(600, 263);
     this.tabControl1.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.SaveButton);
     this.tabPage1.Controls.Add(this.SearchIDButton);
     this.tabPage1.Controls.Add(this.ExitButton);
     this.tabPage1.Controls.Add(this.UpdateButton);
     this.tabPage1.Controls.Add(this.DeleteButton);
     this.tabPage1.Controls.Add(this.AddButton);
     this.tabPage1.Controls.Add(this.textBox1);
     this.tabPage1.Controls.Add(this.listBox1);
     this.tabPage1.Controls.Add(this.categoryIDLabel);
     this.tabPage1.Controls.Add(this.categoryIDTextBox);
     this.tabPage1.Controls.Add(this.categoryNameLabel);
     this.tabPage1.Controls.Add(this.categoryNameTextBox);
     this.tabPage1.Controls.Add(this.categoryDescriptionLabel);
     this.tabPage1.Controls.Add(this.categoryDescriptionTextBox);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(592, 237);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Details View";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // SaveButton
     //
     this.SaveButton.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.SaveButton.Location = new System.Drawing.Point(394, 204);
     this.SaveButton.Name = "SaveButton";
     this.SaveButton.Size = new System.Drawing.Size(75, 23);
     this.SaveButton.TabIndex = 55;
     this.SaveButton.Text = "Save";
     this.SaveButton.UseVisualStyleBackColor = true;
     this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click);
     //
     // SearchIDButton
     //
     this.SearchIDButton.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.SearchIDButton.Location = new System.Drawing.Point(457, 168);
     this.SearchIDButton.Name = "SearchIDButton";
     this.SearchIDButton.Size = new System.Drawing.Size(125, 23);
     this.SearchIDButton.TabIndex = 36;
     this.SearchIDButton.Text = "SearchID";
     this.SearchIDButton.UseVisualStyleBackColor = true;
     //
     // ExitButton
     //
     this.ExitButton.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ExitButton.Location = new System.Drawing.Point(507, 204);
     this.ExitButton.Name = "ExitButton";
     this.ExitButton.Size = new System.Drawing.Size(75, 23);
     this.ExitButton.TabIndex = 35;
     this.ExitButton.Text = "Exit";
     this.ExitButton.UseVisualStyleBackColor = true;
     this.ExitButton.Click += new System.EventHandler(this.ExitButton_Click);
     //
     // UpdateButton
     //
     this.UpdateButton.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.UpdateButton.Location = new System.Drawing.Point(294, 204);
     this.UpdateButton.Name = "UpdateButton";
     this.UpdateButton.Size = new System.Drawing.Size(75, 23);
     this.UpdateButton.TabIndex = 34;
     this.UpdateButton.Text = "Update";
     this.UpdateButton.UseVisualStyleBackColor = true;
     this.UpdateButton.Click += new System.EventHandler(this.UpdateButton_Click);
     //
     // DeleteButton
     //
     this.DeleteButton.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DeleteButton.Location = new System.Drawing.Point(194, 204);
     this.DeleteButton.Name = "DeleteButton";
     this.DeleteButton.Size = new System.Drawing.Size(75, 23);
     this.DeleteButton.TabIndex = 33;
     this.DeleteButton.Text = "Delete";
     this.DeleteButton.UseVisualStyleBackColor = true;
     this.DeleteButton.Click += new System.EventHandler(this.DeleteButton_Click);
     //
     // AddButton
     //
     this.AddButton.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AddButton.Location = new System.Drawing.Point(96, 204);
     this.AddButton.Name = "AddButton";
     this.AddButton.Size = new System.Drawing.Size(75, 23);
     this.AddButton.TabIndex = 32;
     this.AddButton.Text = "Add";
     this.AddButton.UseVisualStyleBackColor = true;
     this.AddButton.Click += new System.EventHandler(this.AddButton_Click);
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(457, 140);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(120, 20);
     this.textBox1.TabIndex = 31;
     //
     // listBox1
     //
     this.listBox1.DataSource = this.categoryBindingSource;
     this.listBox1.DisplayMember = "categoryID";
     this.listBox1.FormattingEnabled = true;
     this.listBox1.Location = new System.Drawing.Point(457, 26);
     this.listBox1.Name = "listBox1";
     this.listBox1.Size = new System.Drawing.Size(120, 108);
     this.listBox1.TabIndex = 30;
     //
     // categoryIDLabel
     //
     this.categoryIDLabel.AutoSize = true;
     this.categoryIDLabel.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.categoryIDLabel.Location = new System.Drawing.Point(16, 30);
     this.categoryIDLabel.Name = "categoryIDLabel";
     this.categoryIDLabel.Size = new System.Drawing.Size(74, 12);
     this.categoryIDLabel.TabIndex = 24;
     this.categoryIDLabel.Text = "categoryID";
     //
     // categoryIDTextBox
     //
     this.categoryIDTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.categoryBindingSource, "categoryID", true));
     this.categoryIDTextBox.Location = new System.Drawing.Point(158, 26);
     this.categoryIDTextBox.Name = "categoryIDTextBox";
     this.categoryIDTextBox.Size = new System.Drawing.Size(272, 20);
     this.categoryIDTextBox.TabIndex = 25;
     //
     // categoryNameLabel
     //
     this.categoryNameLabel.AutoSize = true;
     this.categoryNameLabel.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.categoryNameLabel.Location = new System.Drawing.Point(16, 74);
     this.categoryNameLabel.Name = "categoryNameLabel";
     this.categoryNameLabel.Size = new System.Drawing.Size(94, 12);
     this.categoryNameLabel.TabIndex = 26;
     this.categoryNameLabel.Text = "categoryName";
     //
     // categoryNameTextBox
     //
     this.categoryNameTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.categoryBindingSource, "categoryName", true));
     this.categoryNameTextBox.Location = new System.Drawing.Point(158, 70);
     this.categoryNameTextBox.Name = "categoryNameTextBox";
     this.categoryNameTextBox.Size = new System.Drawing.Size(272, 20);
     this.categoryNameTextBox.TabIndex = 27;
     //
     // categoryDescriptionLabel
     //
     this.categoryDescriptionLabel.AutoSize = true;
     this.categoryDescriptionLabel.Font = new System.Drawing.Font("Copperplate Gothic Light", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.categoryDescriptionLabel.Location = new System.Drawing.Point(16, 122);
     this.categoryDescriptionLabel.Name = "categoryDescriptionLabel";
     this.categoryDescriptionLabel.Size = new System.Drawing.Size(135, 12);
     this.categoryDescriptionLabel.TabIndex = 28;
     this.categoryDescriptionLabel.Text = "categoryDescription";
     //
     // categoryDescriptionTextBox
     //
     this.categoryDescriptionTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.categoryBindingSource, "categoryDescription", true));
     this.categoryDescriptionTextBox.Location = new System.Drawing.Point(158, 118);
     this.categoryDescriptionTextBox.Name = "categoryDescriptionTextBox";
     this.categoryDescriptionTextBox.Size = new System.Drawing.Size(272, 20);
     this.categoryDescriptionTextBox.TabIndex = 29;
     //
     // tabPage2
     //
     this.tabPage2.AutoScroll = true;
     this.tabPage2.Controls.Add(this.categoryDataGridView);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(592, 237);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Data Grid View";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // categoryDataGridView
     //
     this.categoryDataGridView.AutoGenerateColumns = false;
     this.categoryDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.categoryDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1,
     this.dataGridViewTextBoxColumn2,
     this.dataGridViewTextBoxColumn3});
     this.categoryDataGridView.DataSource = this.categoryBindingSource;
     this.categoryDataGridView.Location = new System.Drawing.Point(-4, 0);
     this.categoryDataGridView.Name = "categoryDataGridView";
     this.categoryDataGridView.Size = new System.Drawing.Size(345, 241);
     this.categoryDataGridView.TabIndex = 0;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.DataPropertyName = "categoryID";
     this.dataGridViewTextBoxColumn1.HeaderText = "categoryID";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.DataPropertyName = "categoryName";
     this.dataGridViewTextBoxColumn2.HeaderText = "categoryName";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.DataPropertyName = "categoryDescription";
     this.dataGridViewTextBoxColumn3.HeaderText = "categoryDescription";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     //
     // panel3
     //
     this.panel3.Controls.Add(this.Panel1);
     this.panel3.Controls.Add(this.panel4);
     this.panel3.Controls.Add(this.panel5);
     this.panel3.Controls.Add(this.panel6);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 25);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(612, 268);
     this.panel3.TabIndex = 19;
     //
     // panel4
     //
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(612, 268);
     this.panel4.TabIndex = 3;
     //
     // panel5
     //
     this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel5.Location = new System.Drawing.Point(0, 0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(612, 268);
     this.panel5.TabIndex = 5;
     //
     // panel6
     //
     this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel6.Location = new System.Drawing.Point(0, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(612, 268);
     this.panel6.TabIndex = 6;
     //
     // frmCategory
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(612, 293);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.bindingNavigator1);
     this.Name = "frmCategory";
     this.Text = "Category";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmcategory_FormClosing);
     this.Load += new System.EventHandler(this.frmcategory_Load);
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
     this.bindingNavigator1.ResumeLayout(false);
     this.bindingNavigator1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.categoryBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.newDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.Panel1.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.categoryDataGridView)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		/// <summary>
		/// Initializes the component.
		/// </summary>
		public void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);
			
			//this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			this.uxStateProvinceId = new System.Windows.Forms.TextBox();
			uxStateProvinceIdLabel = new System.Windows.Forms.Label();
			this.uxStateProvinceCode = new System.Windows.Forms.TextBox();
			uxStateProvinceCodeLabel = new System.Windows.Forms.Label();
			this.uxCountryRegionCode = new System.Windows.Forms.ComboBox();
			uxCountryRegionCodeLabel = new System.Windows.Forms.Label();
			this.uxIsOnlyStateProvinceFlag = new System.Windows.Forms.CheckBox();
			uxIsOnlyStateProvinceFlagLabel = new System.Windows.Forms.Label();
			this.uxName = new System.Windows.Forms.TextBox();
			uxNameLabel = new System.Windows.Forms.Label();
			this.uxTerritoryId = new System.Windows.Forms.ComboBox();
			uxTerritoryIdLabel = new System.Windows.Forms.Label();
			this.uxRowguid = new System.Windows.Forms.TextBox();
			uxRowguidLabel = new System.Windows.Forms.Label();
			this.uxModifiedDate = new System.Windows.Forms.DateTimePicker();
			uxModifiedDateLabel = new System.Windows.Forms.Label();
			
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
			this.SuspendLayout();
			
			// 
			// uxTableLayoutPanel
			// 
			//this.uxTableLayoutPanel.AutoSize = true;
			//this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			//this.uxTableLayoutPanel.ColumnCount = 2;
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
			//this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
			//this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
			//this.uxTableLayoutPanel.RowCount = 2;
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
			//this.uxTableLayoutPanel.TabIndex = 0;
			
			//
			// uxErrorProvider
			//
			this.uxErrorProvider.ContainerControl = this;
			this.uxErrorProvider.DataSource = this.uxBindingSource;
			
			//
			// uxStateProvinceIdLabel
			//
			this.uxStateProvinceIdLabel.Name = "uxStateProvinceIdLabel";
			this.uxStateProvinceIdLabel.Text = "State Province Id:";
			this.uxStateProvinceIdLabel.Location = new System.Drawing.Point(3, 0);
			this.Controls.Add(this.uxStateProvinceIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxStateProvinceIdLabel);			
			//
			// uxStateProvinceId
			//
			this.uxStateProvinceId.Name = "uxStateProvinceId";
            this.uxStateProvinceId.ReadOnly = true;
			//this.uxTableLayoutPanel.Controls.Add(this.uxStateProvinceId);
			this.uxStateProvinceId.Location = new System.Drawing.Point(160, 0);
			this.Controls.Add(this.uxStateProvinceId);
			//
			// uxStateProvinceCodeLabel
			//
			this.uxStateProvinceCodeLabel.Name = "uxStateProvinceCodeLabel";
			this.uxStateProvinceCodeLabel.Text = "State Province Code:";
			this.uxStateProvinceCodeLabel.Location = new System.Drawing.Point(3, 26);
			this.Controls.Add(this.uxStateProvinceCodeLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxStateProvinceCodeLabel);			
			//
			// uxStateProvinceCode
			//
			this.uxStateProvinceCode.Name = "uxStateProvinceCode";
			this.uxStateProvinceCode.Width = 250;
			this.uxStateProvinceCode.MaxLength = 3;
			//this.uxTableLayoutPanel.Controls.Add(this.uxStateProvinceCode);
			this.uxStateProvinceCode.Location = new System.Drawing.Point(160, 26);
			this.Controls.Add(this.uxStateProvinceCode);
			//
			// uxCountryRegionCodeLabel
			//
			this.uxCountryRegionCodeLabel.Name = "uxCountryRegionCodeLabel";
			this.uxCountryRegionCodeLabel.Text = "Country Region Code:";
			this.uxCountryRegionCodeLabel.Location = new System.Drawing.Point(3, 52);
			this.Controls.Add(this.uxCountryRegionCodeLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxCountryRegionCodeLabel);			
			//
			// uxCountryRegionCode
			//
			this.uxCountryRegionCode.Name = "uxCountryRegionCode";
			//this.uxTableLayoutPanel.Controls.Add(this.uxCountryRegionCode);
			this.uxCountryRegionCode.Location = new System.Drawing.Point(160, 52);
			this.Controls.Add(this.uxCountryRegionCode);
			//
			// uxIsOnlyStateProvinceFlagLabel
			//
			this.uxIsOnlyStateProvinceFlagLabel.Name = "uxIsOnlyStateProvinceFlagLabel";
			this.uxIsOnlyStateProvinceFlagLabel.Text = "Is Only State Province Flag:";
			this.uxIsOnlyStateProvinceFlagLabel.Location = new System.Drawing.Point(3, 78);
			this.Controls.Add(this.uxIsOnlyStateProvinceFlagLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxIsOnlyStateProvinceFlagLabel);			
			//
			// uxIsOnlyStateProvinceFlag
			//
			this.uxIsOnlyStateProvinceFlag.Name = "uxIsOnlyStateProvinceFlag";
			//this.uxTableLayoutPanel.Controls.Add(this.uxIsOnlyStateProvinceFlag);
			this.uxIsOnlyStateProvinceFlag.Location = new System.Drawing.Point(160, 78);
			this.Controls.Add(this.uxIsOnlyStateProvinceFlag);
			//
			// uxNameLabel
			//
			this.uxNameLabel.Name = "uxNameLabel";
			this.uxNameLabel.Text = "Name:";
			this.uxNameLabel.Location = new System.Drawing.Point(3, 104);
			this.Controls.Add(this.uxNameLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxNameLabel);			
			//
			// uxName
			//
			this.uxName.Name = "uxName";
			this.uxName.Width = 250;
			this.uxName.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxName);
			this.uxName.Location = new System.Drawing.Point(160, 104);
			this.Controls.Add(this.uxName);
			//
			// uxTerritoryIdLabel
			//
			this.uxTerritoryIdLabel.Name = "uxTerritoryIdLabel";
			this.uxTerritoryIdLabel.Text = "Territory Id:";
			this.uxTerritoryIdLabel.Location = new System.Drawing.Point(3, 130);
			this.Controls.Add(this.uxTerritoryIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxTerritoryIdLabel);			
			//
			// uxTerritoryId
			//
			this.uxTerritoryId.Name = "uxTerritoryId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxTerritoryId);
			this.uxTerritoryId.Location = new System.Drawing.Point(160, 130);
			this.Controls.Add(this.uxTerritoryId);
			//
			// uxRowguidLabel
			//
			this.uxRowguidLabel.Name = "uxRowguidLabel";
			this.uxRowguidLabel.Text = "Rowguid:";
			this.uxRowguidLabel.Location = new System.Drawing.Point(3, 156);
			this.Controls.Add(this.uxRowguidLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxRowguidLabel);			
			//
			// uxRowguid
			//
			this.uxRowguid.Name = "uxRowguid";
            this.uxRowguid.ReadOnly = true;
			//this.uxTableLayoutPanel.Controls.Add(this.uxRowguid);
			this.uxRowguid.Location = new System.Drawing.Point(160, 156);
			this.Controls.Add(this.uxRowguid);
			//
			// uxModifiedDateLabel
			//
			this.uxModifiedDateLabel.Name = "uxModifiedDateLabel";
			this.uxModifiedDateLabel.Text = "Modified Date:";
			this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 182);
			this.Controls.Add(this.uxModifiedDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);			
			//
			// uxModifiedDate
			//
			this.uxModifiedDate.Name = "uxModifiedDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
			this.uxModifiedDate.Location = new System.Drawing.Point(160, 182);
			this.Controls.Add(this.uxModifiedDate);
			//
			// uxCountryRegionCode
			//				
			this.uxCountryRegionCode.DisplayMember = "Name";	
			this.uxCountryRegionCode.ValueMember = "CountryRegionCode";	
			//
			// uxTerritoryId
			//				
			this.uxTerritoryId.DisplayMember = "Name";	
			this.uxTerritoryId.ValueMember = "TerritoryId";	
			// 
			// StateProvinceEditControlBase
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			//this.Controls.Add(this.uxTableLayoutPanel);
			this.AutoScroll = true;
			this.Name = "StateProvinceEditControlBase";
			this.Size = new System.Drawing.Size(478, 311);
			//this.Localizable = true;
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();			
			this.ResumeLayout(false);
			this.PerformLayout();
		}
        /// <summary>
        /// Initializes the component.
        /// </summary>
        public void InitializeComponent()
        {
            this.components      = new System.ComponentModel.Container();
            this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);

            //this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.uxTestTimestampId = new System.Windows.Forms.TextBox();
            uxTestTimestampIdLabel = new System.Windows.Forms.Label();
            this.uxDumbField       = new System.Windows.Forms.CheckBox();
            uxDumbFieldLabel       = new System.Windows.Forms.Label();
            uxVersionLabel         = new System.Windows.Forms.Label();

            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTableLayoutPanel
            //
            //this.uxTableLayoutPanel.AutoSize = true;
            //this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            //this.uxTableLayoutPanel.ColumnCount = 2;
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
            //this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
            //this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
            //this.uxTableLayoutPanel.RowCount = 2;
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
            //this.uxTableLayoutPanel.TabIndex = 0;

            //
            // uxErrorProvider
            //
            this.uxErrorProvider.ContainerControl = this;
            this.uxErrorProvider.DataSource       = this.uxBindingSource;

            //
            // uxTestTimestampIdLabel
            //
            this.uxTestTimestampIdLabel.Name     = "uxTestTimestampIdLabel";
            this.uxTestTimestampIdLabel.Text     = "Test Timestamp Id:";
            this.uxTestTimestampIdLabel.Location = new System.Drawing.Point(3, 0);
            this.Controls.Add(this.uxTestTimestampIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxTestTimestampIdLabel);
            //
            // uxTestTimestampId
            //
            this.uxTestTimestampId.Name     = "uxTestTimestampId";
            this.uxTestTimestampId.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxTestTimestampId);
            this.uxTestTimestampId.Location = new System.Drawing.Point(160, 0);
            this.Controls.Add(this.uxTestTimestampId);
            //
            // uxDumbFieldLabel
            //
            this.uxDumbFieldLabel.Name     = "uxDumbFieldLabel";
            this.uxDumbFieldLabel.Text     = "Dumb Field:";
            this.uxDumbFieldLabel.Location = new System.Drawing.Point(3, 26);
            this.Controls.Add(this.uxDumbFieldLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxDumbFieldLabel);
            //
            // uxDumbField
            //
            this.uxDumbField.Name = "uxDumbField";
            //this.uxTableLayoutPanel.Controls.Add(this.uxDumbField);
            this.uxDumbField.Location = new System.Drawing.Point(160, 26);
            this.Controls.Add(this.uxDumbField);
            //
            // TestTimestampEditControlBase
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            //this.Controls.Add(this.uxTableLayoutPanel);
            this.AutoScroll = true;
            this.Name       = "TestTimestampEditControlBase";
            this.Size       = new System.Drawing.Size(478, 311);
            //this.Localizable = true;
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
        /// <summary>
        /// Initializes the component.
        /// </summary>
        public void InitializeComponent()
        {
            this.components      = new System.ComponentModel.Container();
            this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);

            //this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.uxBillOfMaterialsId = new System.Windows.Forms.TextBox();
            uxBillOfMaterialsIdLabel = new System.Windows.Forms.Label();
            this.uxProductAssemblyId = new System.Windows.Forms.ComboBox();
            uxProductAssemblyIdLabel = new System.Windows.Forms.Label();
            this.uxComponentId       = new System.Windows.Forms.ComboBox();
            uxComponentIdLabel       = new System.Windows.Forms.Label();
            this.uxStartDate         = new System.Windows.Forms.DateTimePicker();
            uxStartDateLabel         = new System.Windows.Forms.Label();
            this.uxEndDate           = new System.Windows.Forms.DateTimePicker();
            uxEndDateLabel           = new System.Windows.Forms.Label();
            this.uxUnitMeasureCode   = new System.Windows.Forms.ComboBox();
            uxUnitMeasureCodeLabel   = new System.Windows.Forms.Label();
            this.uxBomLevel          = new System.Windows.Forms.TextBox();
            uxBomLevelLabel          = new System.Windows.Forms.Label();
            this.uxPerAssemblyQty    = new System.Windows.Forms.TextBox();
            uxPerAssemblyQtyLabel    = new System.Windows.Forms.Label();
            this.uxModifiedDate      = new System.Windows.Forms.DateTimePicker();
            uxModifiedDateLabel      = new System.Windows.Forms.Label();

            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTableLayoutPanel
            //
            //this.uxTableLayoutPanel.AutoSize = true;
            //this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            //this.uxTableLayoutPanel.ColumnCount = 2;
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
            //this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
            //this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
            //this.uxTableLayoutPanel.RowCount = 2;
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
            //this.uxTableLayoutPanel.TabIndex = 0;

            //
            // uxErrorProvider
            //
            this.uxErrorProvider.ContainerControl = this;
            this.uxErrorProvider.DataSource       = this.uxBindingSource;

            //
            // uxBillOfMaterialsIdLabel
            //
            this.uxBillOfMaterialsIdLabel.Name     = "uxBillOfMaterialsIdLabel";
            this.uxBillOfMaterialsIdLabel.Text     = "Bill Of Materials Id:";
            this.uxBillOfMaterialsIdLabel.Location = new System.Drawing.Point(3, 0);
            this.Controls.Add(this.uxBillOfMaterialsIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxBillOfMaterialsIdLabel);
            //
            // uxBillOfMaterialsId
            //
            this.uxBillOfMaterialsId.Name     = "uxBillOfMaterialsId";
            this.uxBillOfMaterialsId.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxBillOfMaterialsId);
            this.uxBillOfMaterialsId.Location = new System.Drawing.Point(160, 0);
            this.Controls.Add(this.uxBillOfMaterialsId);
            //
            // uxProductAssemblyIdLabel
            //
            this.uxProductAssemblyIdLabel.Name     = "uxProductAssemblyIdLabel";
            this.uxProductAssemblyIdLabel.Text     = "Product Assembly Id:";
            this.uxProductAssemblyIdLabel.Location = new System.Drawing.Point(3, 26);
            this.Controls.Add(this.uxProductAssemblyIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxProductAssemblyIdLabel);
            //
            // uxProductAssemblyId
            //
            this.uxProductAssemblyId.Name = "uxProductAssemblyId";
            //this.uxTableLayoutPanel.Controls.Add(this.uxProductAssemblyId);
            this.uxProductAssemblyId.Location = new System.Drawing.Point(160, 26);
            this.Controls.Add(this.uxProductAssemblyId);
            //
            // uxComponentIdLabel
            //
            this.uxComponentIdLabel.Name     = "uxComponentIdLabel";
            this.uxComponentIdLabel.Text     = "Component Id:";
            this.uxComponentIdLabel.Location = new System.Drawing.Point(3, 52);
            this.Controls.Add(this.uxComponentIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxComponentIdLabel);
            //
            // uxComponentId
            //
            this.uxComponentId.Name = "uxComponentId";
            //this.uxTableLayoutPanel.Controls.Add(this.uxComponentId);
            this.uxComponentId.Location = new System.Drawing.Point(160, 52);
            this.Controls.Add(this.uxComponentId);
            //
            // uxStartDateLabel
            //
            this.uxStartDateLabel.Name     = "uxStartDateLabel";
            this.uxStartDateLabel.Text     = "Start Date:";
            this.uxStartDateLabel.Location = new System.Drawing.Point(3, 78);
            this.Controls.Add(this.uxStartDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxStartDateLabel);
            //
            // uxStartDate
            //
            this.uxStartDate.Name = "uxStartDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxStartDate);
            this.uxStartDate.Location = new System.Drawing.Point(160, 78);
            this.Controls.Add(this.uxStartDate);
            //
            // uxEndDateLabel
            //
            this.uxEndDateLabel.Name     = "uxEndDateLabel";
            this.uxEndDateLabel.Text     = "End Date:";
            this.uxEndDateLabel.Location = new System.Drawing.Point(3, 104);
            this.Controls.Add(this.uxEndDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxEndDateLabel);
            //
            // uxEndDate
            //
            this.uxEndDate.Name = "uxEndDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxEndDate);
            this.uxEndDate.Location = new System.Drawing.Point(160, 104);
            this.Controls.Add(this.uxEndDate);
            //
            // uxUnitMeasureCodeLabel
            //
            this.uxUnitMeasureCodeLabel.Name     = "uxUnitMeasureCodeLabel";
            this.uxUnitMeasureCodeLabel.Text     = "Unit Measure Code:";
            this.uxUnitMeasureCodeLabel.Location = new System.Drawing.Point(3, 130);
            this.Controls.Add(this.uxUnitMeasureCodeLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxUnitMeasureCodeLabel);
            //
            // uxUnitMeasureCode
            //
            this.uxUnitMeasureCode.Name = "uxUnitMeasureCode";
            //this.uxTableLayoutPanel.Controls.Add(this.uxUnitMeasureCode);
            this.uxUnitMeasureCode.Location = new System.Drawing.Point(160, 130);
            this.Controls.Add(this.uxUnitMeasureCode);
            //
            // uxBomLevelLabel
            //
            this.uxBomLevelLabel.Name     = "uxBomLevelLabel";
            this.uxBomLevelLabel.Text     = "Bom Level:";
            this.uxBomLevelLabel.Location = new System.Drawing.Point(3, 156);
            this.Controls.Add(this.uxBomLevelLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxBomLevelLabel);
            //
            // uxBomLevel
            //
            this.uxBomLevel.Name = "uxBomLevel";
            //this.uxTableLayoutPanel.Controls.Add(this.uxBomLevel);
            this.uxBomLevel.Location = new System.Drawing.Point(160, 156);
            this.Controls.Add(this.uxBomLevel);
            //
            // uxPerAssemblyQtyLabel
            //
            this.uxPerAssemblyQtyLabel.Name     = "uxPerAssemblyQtyLabel";
            this.uxPerAssemblyQtyLabel.Text     = "Per Assembly Qty:";
            this.uxPerAssemblyQtyLabel.Location = new System.Drawing.Point(3, 182);
            this.Controls.Add(this.uxPerAssemblyQtyLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxPerAssemblyQtyLabel);
            //
            // uxPerAssemblyQty
            //
            this.uxPerAssemblyQty.Name = "uxPerAssemblyQty";
            //this.uxTableLayoutPanel.Controls.Add(this.uxPerAssemblyQty);
            this.uxPerAssemblyQty.Location = new System.Drawing.Point(160, 182);
            this.Controls.Add(this.uxPerAssemblyQty);
            //
            // uxModifiedDateLabel
            //
            this.uxModifiedDateLabel.Name     = "uxModifiedDateLabel";
            this.uxModifiedDateLabel.Text     = "Modified Date:";
            this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 208);
            this.Controls.Add(this.uxModifiedDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);
            //
            // uxModifiedDate
            //
            this.uxModifiedDate.Name = "uxModifiedDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
            this.uxModifiedDate.Location = new System.Drawing.Point(160, 208);
            this.Controls.Add(this.uxModifiedDate);
            //
            // uxComponentId
            //
            this.uxComponentId.DisplayMember = "Name";
            this.uxComponentId.ValueMember   = "ProductId";
            //
            // uxProductAssemblyId
            //
            this.uxProductAssemblyId.DisplayMember = "Name";
            this.uxProductAssemblyId.ValueMember   = "ProductId";
            //
            // uxUnitMeasureCode
            //
            this.uxUnitMeasureCode.DisplayMember = "Name";
            this.uxUnitMeasureCode.ValueMember   = "UnitMeasureCode";
            //
            // BillOfMaterialsEditControlBase
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            //this.Controls.Add(this.uxTableLayoutPanel);
            this.AutoScroll = true;
            this.Name       = "BillOfMaterialsEditControlBase";
            this.Size       = new System.Drawing.Size(478, 311);
            //this.Localizable = true;
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
		/// <summary>
		/// Initializes the component.
		/// </summary>
		public void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);
			
			//this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			this.uxTransactionId = new System.Windows.Forms.TextBox();
			uxTransactionIdLabel = new System.Windows.Forms.Label();
			this.uxProductId = new System.Windows.Forms.TextBox();
			uxProductIdLabel = new System.Windows.Forms.Label();
			this.uxReferenceOrderId = new System.Windows.Forms.TextBox();
			uxReferenceOrderIdLabel = new System.Windows.Forms.Label();
			this.uxReferenceOrderLineId = new System.Windows.Forms.TextBox();
			uxReferenceOrderLineIdLabel = new System.Windows.Forms.Label();
			this.uxTransactionDate = new System.Windows.Forms.DateTimePicker();
			uxTransactionDateLabel = new System.Windows.Forms.Label();
			this.uxTransactionType = new System.Windows.Forms.TextBox();
			uxTransactionTypeLabel = new System.Windows.Forms.Label();
			this.uxQuantity = new System.Windows.Forms.TextBox();
			uxQuantityLabel = new System.Windows.Forms.Label();
			this.uxActualCost = new System.Windows.Forms.TextBox();
			uxActualCostLabel = new System.Windows.Forms.Label();
			this.uxModifiedDate = new System.Windows.Forms.DateTimePicker();
			uxModifiedDateLabel = new System.Windows.Forms.Label();
			
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
			this.SuspendLayout();
			
			// 
			// uxTableLayoutPanel
			// 
			//this.uxTableLayoutPanel.AutoSize = true;
			//this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			//this.uxTableLayoutPanel.ColumnCount = 2;
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
			//this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
			//this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
			//this.uxTableLayoutPanel.RowCount = 2;
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
			//this.uxTableLayoutPanel.TabIndex = 0;
			
			//
			// uxErrorProvider
			//
			this.uxErrorProvider.ContainerControl = this;
			this.uxErrorProvider.DataSource = this.uxBindingSource;
			
			//
			// uxTransactionIdLabel
			//
			this.uxTransactionIdLabel.Name = "uxTransactionIdLabel";
			this.uxTransactionIdLabel.Text = "Transaction Id:";
			this.uxTransactionIdLabel.Location = new System.Drawing.Point(3, 0);
			this.Controls.Add(this.uxTransactionIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxTransactionIdLabel);			
			//
			// uxTransactionId
			//
			this.uxTransactionId.Name = "uxTransactionId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxTransactionId);
			this.uxTransactionId.Location = new System.Drawing.Point(160, 0);
			this.Controls.Add(this.uxTransactionId);
			//
			// uxProductIdLabel
			//
			this.uxProductIdLabel.Name = "uxProductIdLabel";
			this.uxProductIdLabel.Text = "Product Id:";
			this.uxProductIdLabel.Location = new System.Drawing.Point(3, 26);
			this.Controls.Add(this.uxProductIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxProductIdLabel);			
			//
			// uxProductId
			//
			this.uxProductId.Name = "uxProductId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxProductId);
			this.uxProductId.Location = new System.Drawing.Point(160, 26);
			this.Controls.Add(this.uxProductId);
			//
			// uxReferenceOrderIdLabel
			//
			this.uxReferenceOrderIdLabel.Name = "uxReferenceOrderIdLabel";
			this.uxReferenceOrderIdLabel.Text = "Reference Order Id:";
			this.uxReferenceOrderIdLabel.Location = new System.Drawing.Point(3, 52);
			this.Controls.Add(this.uxReferenceOrderIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxReferenceOrderIdLabel);			
			//
			// uxReferenceOrderId
			//
			this.uxReferenceOrderId.Name = "uxReferenceOrderId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxReferenceOrderId);
			this.uxReferenceOrderId.Location = new System.Drawing.Point(160, 52);
			this.Controls.Add(this.uxReferenceOrderId);
			//
			// uxReferenceOrderLineIdLabel
			//
			this.uxReferenceOrderLineIdLabel.Name = "uxReferenceOrderLineIdLabel";
			this.uxReferenceOrderLineIdLabel.Text = "Reference Order Line Id:";
			this.uxReferenceOrderLineIdLabel.Location = new System.Drawing.Point(3, 78);
			this.Controls.Add(this.uxReferenceOrderLineIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxReferenceOrderLineIdLabel);			
			//
			// uxReferenceOrderLineId
			//
			this.uxReferenceOrderLineId.Name = "uxReferenceOrderLineId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxReferenceOrderLineId);
			this.uxReferenceOrderLineId.Location = new System.Drawing.Point(160, 78);
			this.Controls.Add(this.uxReferenceOrderLineId);
			//
			// uxTransactionDateLabel
			//
			this.uxTransactionDateLabel.Name = "uxTransactionDateLabel";
			this.uxTransactionDateLabel.Text = "Transaction Date:";
			this.uxTransactionDateLabel.Location = new System.Drawing.Point(3, 104);
			this.Controls.Add(this.uxTransactionDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxTransactionDateLabel);			
			//
			// uxTransactionDate
			//
			this.uxTransactionDate.Name = "uxTransactionDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxTransactionDate);
			this.uxTransactionDate.Location = new System.Drawing.Point(160, 104);
			this.Controls.Add(this.uxTransactionDate);
			//
			// uxTransactionTypeLabel
			//
			this.uxTransactionTypeLabel.Name = "uxTransactionTypeLabel";
			this.uxTransactionTypeLabel.Text = "Transaction Type:";
			this.uxTransactionTypeLabel.Location = new System.Drawing.Point(3, 130);
			this.Controls.Add(this.uxTransactionTypeLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxTransactionTypeLabel);			
			//
			// uxTransactionType
			//
			this.uxTransactionType.Name = "uxTransactionType";
			this.uxTransactionType.Width = 250;
			this.uxTransactionType.MaxLength = 1;
			//this.uxTableLayoutPanel.Controls.Add(this.uxTransactionType);
			this.uxTransactionType.Location = new System.Drawing.Point(160, 130);
			this.Controls.Add(this.uxTransactionType);
			//
			// uxQuantityLabel
			//
			this.uxQuantityLabel.Name = "uxQuantityLabel";
			this.uxQuantityLabel.Text = "Quantity:";
			this.uxQuantityLabel.Location = new System.Drawing.Point(3, 156);
			this.Controls.Add(this.uxQuantityLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxQuantityLabel);			
			//
			// uxQuantity
			//
			this.uxQuantity.Name = "uxQuantity";
			//this.uxTableLayoutPanel.Controls.Add(this.uxQuantity);
			this.uxQuantity.Location = new System.Drawing.Point(160, 156);
			this.Controls.Add(this.uxQuantity);
			//
			// uxActualCostLabel
			//
			this.uxActualCostLabel.Name = "uxActualCostLabel";
			this.uxActualCostLabel.Text = "Actual Cost:";
			this.uxActualCostLabel.Location = new System.Drawing.Point(3, 182);
			this.Controls.Add(this.uxActualCostLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxActualCostLabel);			
			//
			// uxActualCost
			//
			this.uxActualCost.Name = "uxActualCost";
			//this.uxTableLayoutPanel.Controls.Add(this.uxActualCost);
			this.uxActualCost.Location = new System.Drawing.Point(160, 182);
			this.Controls.Add(this.uxActualCost);
			//
			// uxModifiedDateLabel
			//
			this.uxModifiedDateLabel.Name = "uxModifiedDateLabel";
			this.uxModifiedDateLabel.Text = "Modified Date:";
			this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 208);
			this.Controls.Add(this.uxModifiedDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);			
			//
			// uxModifiedDate
			//
			this.uxModifiedDate.Name = "uxModifiedDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
			this.uxModifiedDate.Location = new System.Drawing.Point(160, 208);
			this.Controls.Add(this.uxModifiedDate);
			// 
			// TransactionHistoryArchiveEditControlBase
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			//this.Controls.Add(this.uxTableLayoutPanel);
			this.AutoScroll = true;
			this.Name = "TransactionHistoryArchiveEditControlBase";
			this.Size = new System.Drawing.Size(478, 311);
			//this.Localizable = true;
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();			
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(generating));
     this.l_generating = new System.Windows.Forms.Label();
     this.progressBar1 = new System.Windows.Forms.ProgressBar();
     this.timer1       = new System.Windows.Forms.Timer(this.components);
     this.label1       = new System.Windows.Forms.Label();
     this.Error        = new System.Windows.Forms.ErrorProvider(this.components);
     this.b_no         = new System.Windows.Forms.Button();
     this.b_yes        = new System.Windows.Forms.Button();
     this.untilclose   = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.Error)).BeginInit();
     this.SuspendLayout();
     //
     // l_generating
     //
     this.l_generating.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.l_generating.Location = new System.Drawing.Point(12, 13);
     this.l_generating.Name     = "l_generating";
     this.l_generating.Size     = new System.Drawing.Size(562, 106);
     this.l_generating.TabIndex = 0;
     this.l_generating.Text     = "label1";
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(12, 91);
     this.progressBar1.Maximum  = 170;
     this.progressBar1.Name     = "progressBar1";
     this.progressBar1.Size     = new System.Drawing.Size(655, 23);
     this.progressBar1.TabIndex = 1;
     this.progressBar1.Value    = 10;
     this.progressBar1.Visible  = false;
     //
     // timer1
     //
     this.timer1.Interval = 800;
     this.timer1.Tick    += new System.EventHandler(this.Timer1Tick);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 13);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(428, 23);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Files needed for Countdown timer have not yet been generated. Generate now?";
     //
     // Error
     //
     this.Error.ContainerControl = this;
     this.Error.Icon             = ((System.Drawing.Icon)(resources.GetObject("Error.Icon")));
     //
     // b_no
     //
     this.b_no.Location = new System.Drawing.Point(399, 8);
     this.b_no.Name     = "b_no";
     this.b_no.Size     = new System.Drawing.Size(75, 23);
     this.b_no.TabIndex = 5;
     this.b_no.Text     = "No";
     this.b_no.UseVisualStyleBackColor = true;
     this.b_no.Click += new System.EventHandler(this.B_noClick);
     //
     // b_yes
     //
     this.b_yes.Location = new System.Drawing.Point(480, 8);
     this.b_yes.Name     = "b_yes";
     this.b_yes.Size     = new System.Drawing.Size(75, 23);
     this.b_yes.TabIndex = 4;
     this.b_yes.Text     = "Yes";
     this.b_yes.UseVisualStyleBackColor = true;
     this.b_yes.Click += new System.EventHandler(this.Button1Click);
     //
     // untilclose
     //
     this.untilclose.Interval = 30000;
     this.untilclose.Tick    += new System.EventHandler(this.untilclose_Tick);
     //
     // generating
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(679, 126);
     this.Controls.Add(this.b_no);
     this.Controls.Add(this.progressBar1);
     this.Controls.Add(this.b_yes);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.l_generating);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name        = "generating";
     this.Text        = "Generating";
     this.TopMost     = true;
     ((System.ComponentModel.ISupportInitialize)(this.Error)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Initializes the component.
        /// </summary>
        public void InitializeComponent()
        {
            this.components      = new System.ComponentModel.Container();
            this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);

            //this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.uxProductModelId = new System.Windows.Forms.ComboBox();
            uxProductModelIdLabel = new System.Windows.Forms.Label();
            this.uxIllustrationId = new System.Windows.Forms.ComboBox();
            uxIllustrationIdLabel = new System.Windows.Forms.Label();
            this.uxModifiedDate   = new System.Windows.Forms.DateTimePicker();
            uxModifiedDateLabel   = new System.Windows.Forms.Label();

            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTableLayoutPanel
            //
            //this.uxTableLayoutPanel.AutoSize = true;
            //this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            //this.uxTableLayoutPanel.ColumnCount = 2;
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
            //this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
            //this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
            //this.uxTableLayoutPanel.RowCount = 2;
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
            //this.uxTableLayoutPanel.TabIndex = 0;

            //
            // uxErrorProvider
            //
            this.uxErrorProvider.ContainerControl = this;
            this.uxErrorProvider.DataSource       = this.uxBindingSource;

            //
            // uxProductModelIdLabel
            //
            this.uxProductModelIdLabel.Name     = "uxProductModelIdLabel";
            this.uxProductModelIdLabel.Text     = "Product Model Id:";
            this.uxProductModelIdLabel.Location = new System.Drawing.Point(3, 0);
            this.Controls.Add(this.uxProductModelIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxProductModelIdLabel);
            //
            // uxProductModelId
            //
            this.uxProductModelId.Name = "uxProductModelId";
            //this.uxTableLayoutPanel.Controls.Add(this.uxProductModelId);
            this.uxProductModelId.Location = new System.Drawing.Point(160, 0);
            this.Controls.Add(this.uxProductModelId);
            //
            // uxIllustrationIdLabel
            //
            this.uxIllustrationIdLabel.Name     = "uxIllustrationIdLabel";
            this.uxIllustrationIdLabel.Text     = "Illustration Id:";
            this.uxIllustrationIdLabel.Location = new System.Drawing.Point(3, 26);
            this.Controls.Add(this.uxIllustrationIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxIllustrationIdLabel);
            //
            // uxIllustrationId
            //
            this.uxIllustrationId.Name = "uxIllustrationId";
            //this.uxTableLayoutPanel.Controls.Add(this.uxIllustrationId);
            this.uxIllustrationId.Location = new System.Drawing.Point(160, 26);
            this.Controls.Add(this.uxIllustrationId);
            //
            // uxModifiedDateLabel
            //
            this.uxModifiedDateLabel.Name     = "uxModifiedDateLabel";
            this.uxModifiedDateLabel.Text     = "Modified Date:";
            this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 52);
            this.Controls.Add(this.uxModifiedDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);
            //
            // uxModifiedDate
            //
            this.uxModifiedDate.Name = "uxModifiedDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
            this.uxModifiedDate.Location = new System.Drawing.Point(160, 52);
            this.Controls.Add(this.uxModifiedDate);
            //
            // uxIllustrationId
            //
            this.uxIllustrationId.DisplayMember = "Diagram";
            this.uxIllustrationId.ValueMember   = "IllustrationId";
            //
            // uxProductModelId
            //
            this.uxProductModelId.DisplayMember = "Name";
            this.uxProductModelId.ValueMember   = "ProductModelId";
            //
            // ProductModelIllustrationEditControlBase
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            //this.Controls.Add(this.uxTableLayoutPanel);
            this.AutoScroll = true;
            this.Name       = "ProductModelIllustrationEditControlBase";
            this.Size       = new System.Drawing.Size(478, 311);
            //this.Localizable = true;
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Exemple #42
0
		/// <summary>
		/// Initializes the component.
		/// </summary>
		public void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);
			
			//this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			this.uxSystemInformationId = new System.Windows.Forms.TextBox();
			uxSystemInformationIdLabel = new System.Windows.Forms.Label();
			this.uxDatabaseVersion = new System.Windows.Forms.TextBox();
			uxDatabaseVersionLabel = new System.Windows.Forms.Label();
			this.uxVersionDate = new System.Windows.Forms.DateTimePicker();
			uxVersionDateLabel = new System.Windows.Forms.Label();
			this.uxModifiedDate = new System.Windows.Forms.DateTimePicker();
			uxModifiedDateLabel = new System.Windows.Forms.Label();
			
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
			this.SuspendLayout();
			
			// 
			// uxTableLayoutPanel
			// 
			//this.uxTableLayoutPanel.AutoSize = true;
			//this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			//this.uxTableLayoutPanel.ColumnCount = 2;
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
			//this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
			//this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
			//this.uxTableLayoutPanel.RowCount = 2;
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
			//this.uxTableLayoutPanel.TabIndex = 0;
			
			//
			// uxErrorProvider
			//
			this.uxErrorProvider.ContainerControl = this;
			this.uxErrorProvider.DataSource = this.uxBindingSource;
			
			//
			// uxSystemInformationIdLabel
			//
			this.uxSystemInformationIdLabel.Name = "uxSystemInformationIdLabel";
			this.uxSystemInformationIdLabel.Text = "System Information Id:";
			this.uxSystemInformationIdLabel.Location = new System.Drawing.Point(3, 0);
			this.Controls.Add(this.uxSystemInformationIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSystemInformationIdLabel);			
			//
			// uxSystemInformationId
			//
			this.uxSystemInformationId.Name = "uxSystemInformationId";
            this.uxSystemInformationId.ReadOnly = true;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSystemInformationId);
			this.uxSystemInformationId.Location = new System.Drawing.Point(160, 0);
			this.Controls.Add(this.uxSystemInformationId);
			//
			// uxDatabaseVersionLabel
			//
			this.uxDatabaseVersionLabel.Name = "uxDatabaseVersionLabel";
			this.uxDatabaseVersionLabel.Text = "Database Version:";
			this.uxDatabaseVersionLabel.Location = new System.Drawing.Point(3, 26);
			this.Controls.Add(this.uxDatabaseVersionLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxDatabaseVersionLabel);			
			//
			// uxDatabaseVersion
			//
			this.uxDatabaseVersion.Name = "uxDatabaseVersion";
			this.uxDatabaseVersion.Width = 250;
			this.uxDatabaseVersion.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxDatabaseVersion);
			this.uxDatabaseVersion.Location = new System.Drawing.Point(160, 26);
			this.Controls.Add(this.uxDatabaseVersion);
			//
			// uxVersionDateLabel
			//
			this.uxVersionDateLabel.Name = "uxVersionDateLabel";
			this.uxVersionDateLabel.Text = "Version Date:";
			this.uxVersionDateLabel.Location = new System.Drawing.Point(3, 52);
			this.Controls.Add(this.uxVersionDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxVersionDateLabel);			
			//
			// uxVersionDate
			//
			this.uxVersionDate.Name = "uxVersionDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxVersionDate);
			this.uxVersionDate.Location = new System.Drawing.Point(160, 52);
			this.Controls.Add(this.uxVersionDate);
			//
			// uxModifiedDateLabel
			//
			this.uxModifiedDateLabel.Name = "uxModifiedDateLabel";
			this.uxModifiedDateLabel.Text = "Modified Date:";
			this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 78);
			this.Controls.Add(this.uxModifiedDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);			
			//
			// uxModifiedDate
			//
			this.uxModifiedDate.Name = "uxModifiedDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
			this.uxModifiedDate.Location = new System.Drawing.Point(160, 78);
			this.Controls.Add(this.uxModifiedDate);
			// 
			// AwBuildVersionEditControlBase
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			//this.Controls.Add(this.uxTableLayoutPanel);
			this.AutoScroll = true;
			this.Name = "AwBuildVersionEditControlBase";
			this.Size = new System.Drawing.Size(478, 311);
			//this.Localizable = true;
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();			
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.name1Field = new System.Windows.Forms.TextBox();
     this.name2Field = new System.Windows.Forms.TextBox();
     this.emailField = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.pass2Field = new System.Windows.Forms.TextBox();
     this.pass1Field = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.usernameField = new System.Windows.Forms.TextBox();
     this.button1 = new System.Windows.Forms.Button();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.tel1Field = new System.Windows.Forms.TextBox();
     this.tel2Field = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorProvider2 = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorProvider3 = new System.Windows.Forms.ErrorProvider(this.components);
     this.button2 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider3)).BeginInit();
     this.SuspendLayout();
     //
     // name1Field
     //
     this.name1Field.Location = new System.Drawing.Point(165, 63);
     this.name1Field.Name = "name1Field";
     this.name1Field.Size = new System.Drawing.Size(167, 20);
     this.name1Field.TabIndex = 0;
     //
     // name2Field
     //
     this.name2Field.Location = new System.Drawing.Point(165, 96);
     this.name2Field.Name = "name2Field";
     this.name2Field.Size = new System.Drawing.Size(167, 20);
     this.name2Field.TabIndex = 1;
     //
     // emailField
     //
     this.emailField.Location = new System.Drawing.Point(165, 128);
     this.emailField.Name = "emailField";
     this.emailField.Size = new System.Drawing.Size(167, 20);
     this.emailField.TabIndex = 2;
     this.emailField.Validating += new System.ComponentModel.CancelEventHandler(this.EmailField_Validating);
     this.emailField.Validated += new System.EventHandler(this.EmailField_Validated);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label1.Location = new System.Drawing.Point(11, 63);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(73, 16);
     this.label1.TabIndex = 3;
     this.label1.Text = "First name:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label2.Location = new System.Drawing.Point(12, 96);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(73, 16);
     this.label2.TabIndex = 4;
     this.label2.Text = "Last name:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label3.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label3.Location = new System.Drawing.Point(12, 131);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(107, 16);
     this.label3.TabIndex = 5;
     this.label3.Text = "E-mail address*:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label4.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label4.Location = new System.Drawing.Point(12, 207);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(76, 16);
     this.label4.TabIndex = 6;
     this.label4.Text = "Password*:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label5.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label5.Location = new System.Drawing.Point(12, 241);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(123, 16);
     this.label5.TabIndex = 7;
     this.label5.Text = "Confirm password*:";
     //
     // pass2Field
     //
     this.pass2Field.Location = new System.Drawing.Point(165, 238);
     this.pass2Field.Name = "pass2Field";
     this.pass2Field.Size = new System.Drawing.Size(167, 20);
     this.pass2Field.TabIndex = 8;
     this.pass2Field.UseSystemPasswordChar = true;
     this.pass2Field.TextChanged += new System.EventHandler(this.Pass2Field_TextChanged);
     this.pass2Field.Validating += new System.ComponentModel.CancelEventHandler(this.Pass2Field_Validating);
     this.pass2Field.Validated += new System.EventHandler(this.Pass2Field_Validated);
     //
     // pass1Field
     //
     this.pass1Field.Location = new System.Drawing.Point(165, 204);
     this.pass1Field.Name = "pass1Field";
     this.pass1Field.Size = new System.Drawing.Size(167, 20);
     this.pass1Field.TabIndex = 9;
     this.pass1Field.UseSystemPasswordChar = true;
     this.pass1Field.Validating += new System.ComponentModel.CancelEventHandler(this.Pass1Field_Validating);
     this.pass1Field.Validated += new System.EventHandler(this.Pass1Field_Validated);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label6.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label6.Location = new System.Drawing.Point(12, 278);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(79, 16);
     this.label6.TabIndex = 10;
     this.label6.Text = "Username*:";
     //
     // usernameField
     //
     this.usernameField.Location = new System.Drawing.Point(165, 278);
     this.usernameField.Name = "usernameField";
     this.usernameField.Size = new System.Drawing.Size(167, 20);
     this.usernameField.TabIndex = 11;
     //
     // button1
     //
     this.button1.DialogResult = System.Windows.Forms.DialogResult.Yes;
     this.button1.Location = new System.Drawing.Point(111, 424);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 12;
     this.button1.Text = "Register";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(12, 485);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(409, 13);
     this.label7.TabIndex = 13;
     this.label7.Text = "By clicking Register you confirm that you accept our Terms of Use and Private Pol" +
     "icy.";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label8.Location = new System.Drawing.Point(82, 22);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(275, 17);
     this.label8.TabIndex = 14;
     this.label8.Text = "Filds marked with a star (*) are mandatory.";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label9.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label9.Location = new System.Drawing.Point(12, 172);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(50, 16);
     this.label9.TabIndex = 15;
     this.label9.Text = "Phone:";
     //
     // tel1Field
     //
     this.tel1Field.Location = new System.Drawing.Point(165, 169);
     this.tel1Field.MaxLength = 3;
     this.tel1Field.Name = "tel1Field";
     this.tel1Field.Size = new System.Drawing.Size(38, 20);
     this.tel1Field.TabIndex = 16;
     //
     // tel2Field
     //
     this.tel2Field.Location = new System.Drawing.Point(235, 169);
     this.tel2Field.MaxLength = 7;
     this.tel2Field.Name = "tel2Field";
     this.tel2Field.Size = new System.Drawing.Size(97, 20);
     this.tel2Field.TabIndex = 17;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label10.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label10.Location = new System.Drawing.Point(125, 172);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(29, 16);
     this.label10.TabIndex = 18;
     this.label10.Text = "+38";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.label16.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label16.Location = new System.Drawing.Point(12, 330);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(93, 16);
     this.label16.TabIndex = 27;
     this.label16.Text = "Enter captcha:";
     //
     // errorProvider1
     //
     this.errorProvider1.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider1.ContainerControl = this;
     //
     // errorProvider2
     //
     this.errorProvider2.ContainerControl = this;
     //
     // errorProvider3
     //
     this.errorProvider3.ContainerControl = this;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(235, 424);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 29;
     this.button2.Text = "Close";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.Button2Click);
     //
     // RegistrationView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.Controls.Add(this.button2);
     this.Controls.Add(this.label16);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.tel2Field);
     this.Controls.Add(this.tel1Field);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.usernameField);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.pass1Field);
     this.Controls.Add(this.pass2Field);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.emailField);
     this.Controls.Add(this.name2Field);
     this.Controls.Add(this.name1Field);
     this.ForeColor = System.Drawing.SystemColors.ControlText;
     this.MaximumSize = new System.Drawing.Size(442, 527);
     this.MinimumSize = new System.Drawing.Size(442, 527);
     this.Name = "RegistrationView";
     this.Size = new System.Drawing.Size(442, 527);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider3)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #44
0
        /// <summary>
        /// Initializes the component.
        /// </summary>
        public void InitializeComponent()
        {
            this.components      = new System.ComponentModel.Container();
            this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);

            //this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.uxSpecialOfferId = new System.Windows.Forms.TextBox();
            uxSpecialOfferIdLabel = new System.Windows.Forms.Label();
            this.uxDescription    = new System.Windows.Forms.TextBox();
            uxDescriptionLabel    = new System.Windows.Forms.Label();
            this.uxDiscountPct    = new System.Windows.Forms.TextBox();
            uxDiscountPctLabel    = new System.Windows.Forms.Label();
            this.uxType           = new System.Windows.Forms.TextBox();
            uxTypeLabel           = new System.Windows.Forms.Label();
            this.uxCategory       = new System.Windows.Forms.TextBox();
            uxCategoryLabel       = new System.Windows.Forms.Label();
            this.uxStartDate      = new System.Windows.Forms.DateTimePicker();
            uxStartDateLabel      = new System.Windows.Forms.Label();
            this.uxEndDate        = new System.Windows.Forms.DateTimePicker();
            uxEndDateLabel        = new System.Windows.Forms.Label();
            this.uxMinQty         = new System.Windows.Forms.TextBox();
            uxMinQtyLabel         = new System.Windows.Forms.Label();
            this.uxMaxQty         = new System.Windows.Forms.TextBox();
            uxMaxQtyLabel         = new System.Windows.Forms.Label();
            this.uxRowguid        = new System.Windows.Forms.TextBox();
            uxRowguidLabel        = new System.Windows.Forms.Label();
            this.uxModifiedDate   = new System.Windows.Forms.DateTimePicker();
            uxModifiedDateLabel   = new System.Windows.Forms.Label();

            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTableLayoutPanel
            //
            //this.uxTableLayoutPanel.AutoSize = true;
            //this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            //this.uxTableLayoutPanel.ColumnCount = 2;
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
            //this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
            //this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
            //this.uxTableLayoutPanel.RowCount = 2;
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
            //this.uxTableLayoutPanel.TabIndex = 0;

            //
            // uxErrorProvider
            //
            this.uxErrorProvider.ContainerControl = this;
            this.uxErrorProvider.DataSource       = this.uxBindingSource;

            //
            // uxSpecialOfferIdLabel
            //
            this.uxSpecialOfferIdLabel.Name     = "uxSpecialOfferIdLabel";
            this.uxSpecialOfferIdLabel.Text     = "Special Offer Id:";
            this.uxSpecialOfferIdLabel.Location = new System.Drawing.Point(3, 0);
            this.Controls.Add(this.uxSpecialOfferIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxSpecialOfferIdLabel);
            //
            // uxSpecialOfferId
            //
            this.uxSpecialOfferId.Name     = "uxSpecialOfferId";
            this.uxSpecialOfferId.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxSpecialOfferId);
            this.uxSpecialOfferId.Location = new System.Drawing.Point(160, 0);
            this.Controls.Add(this.uxSpecialOfferId);
            //
            // uxDescriptionLabel
            //
            this.uxDescriptionLabel.Name     = "uxDescriptionLabel";
            this.uxDescriptionLabel.Text     = "Description:";
            this.uxDescriptionLabel.Location = new System.Drawing.Point(3, 26);
            this.Controls.Add(this.uxDescriptionLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxDescriptionLabel);
            //
            // uxDescription
            //
            this.uxDescription.Name      = "uxDescription";
            this.uxDescription.Width     = 250;
            this.uxDescription.MaxLength = 255;
            //this.uxTableLayoutPanel.Controls.Add(this.uxDescription);
            this.uxDescription.Location = new System.Drawing.Point(160, 26);
            this.Controls.Add(this.uxDescription);
            //
            // uxDiscountPctLabel
            //
            this.uxDiscountPctLabel.Name     = "uxDiscountPctLabel";
            this.uxDiscountPctLabel.Text     = "Discount Pct:";
            this.uxDiscountPctLabel.Location = new System.Drawing.Point(3, 52);
            this.Controls.Add(this.uxDiscountPctLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxDiscountPctLabel);
            //
            // uxDiscountPct
            //
            this.uxDiscountPct.Name = "uxDiscountPct";
            //this.uxTableLayoutPanel.Controls.Add(this.uxDiscountPct);
            this.uxDiscountPct.Location = new System.Drawing.Point(160, 52);
            this.Controls.Add(this.uxDiscountPct);
            //
            // uxTypeLabel
            //
            this.uxTypeLabel.Name     = "uxTypeLabel";
            this.uxTypeLabel.Text     = "Type:";
            this.uxTypeLabel.Location = new System.Drawing.Point(3, 78);
            this.Controls.Add(this.uxTypeLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxTypeLabel);
            //
            // uxType
            //
            this.uxType.Name      = "uxType";
            this.uxType.Width     = 250;
            this.uxType.MaxLength = 50;
            //this.uxTableLayoutPanel.Controls.Add(this.uxType);
            this.uxType.Location = new System.Drawing.Point(160, 78);
            this.Controls.Add(this.uxType);
            //
            // uxCategoryLabel
            //
            this.uxCategoryLabel.Name     = "uxCategoryLabel";
            this.uxCategoryLabel.Text     = "Category:";
            this.uxCategoryLabel.Location = new System.Drawing.Point(3, 104);
            this.Controls.Add(this.uxCategoryLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxCategoryLabel);
            //
            // uxCategory
            //
            this.uxCategory.Name      = "uxCategory";
            this.uxCategory.Width     = 250;
            this.uxCategory.MaxLength = 50;
            //this.uxTableLayoutPanel.Controls.Add(this.uxCategory);
            this.uxCategory.Location = new System.Drawing.Point(160, 104);
            this.Controls.Add(this.uxCategory);
            //
            // uxStartDateLabel
            //
            this.uxStartDateLabel.Name     = "uxStartDateLabel";
            this.uxStartDateLabel.Text     = "Start Date:";
            this.uxStartDateLabel.Location = new System.Drawing.Point(3, 130);
            this.Controls.Add(this.uxStartDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxStartDateLabel);
            //
            // uxStartDate
            //
            this.uxStartDate.Name = "uxStartDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxStartDate);
            this.uxStartDate.Location = new System.Drawing.Point(160, 130);
            this.Controls.Add(this.uxStartDate);
            //
            // uxEndDateLabel
            //
            this.uxEndDateLabel.Name     = "uxEndDateLabel";
            this.uxEndDateLabel.Text     = "End Date:";
            this.uxEndDateLabel.Location = new System.Drawing.Point(3, 156);
            this.Controls.Add(this.uxEndDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxEndDateLabel);
            //
            // uxEndDate
            //
            this.uxEndDate.Name = "uxEndDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxEndDate);
            this.uxEndDate.Location = new System.Drawing.Point(160, 156);
            this.Controls.Add(this.uxEndDate);
            //
            // uxMinQtyLabel
            //
            this.uxMinQtyLabel.Name     = "uxMinQtyLabel";
            this.uxMinQtyLabel.Text     = "Min Qty:";
            this.uxMinQtyLabel.Location = new System.Drawing.Point(3, 182);
            this.Controls.Add(this.uxMinQtyLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxMinQtyLabel);
            //
            // uxMinQty
            //
            this.uxMinQty.Name = "uxMinQty";
            //this.uxTableLayoutPanel.Controls.Add(this.uxMinQty);
            this.uxMinQty.Location = new System.Drawing.Point(160, 182);
            this.Controls.Add(this.uxMinQty);
            //
            // uxMaxQtyLabel
            //
            this.uxMaxQtyLabel.Name     = "uxMaxQtyLabel";
            this.uxMaxQtyLabel.Text     = "Max Qty:";
            this.uxMaxQtyLabel.Location = new System.Drawing.Point(3, 208);
            this.Controls.Add(this.uxMaxQtyLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxMaxQtyLabel);
            //
            // uxMaxQty
            //
            this.uxMaxQty.Name = "uxMaxQty";
            //this.uxTableLayoutPanel.Controls.Add(this.uxMaxQty);
            this.uxMaxQty.Location = new System.Drawing.Point(160, 208);
            this.Controls.Add(this.uxMaxQty);
            //
            // uxRowguidLabel
            //
            this.uxRowguidLabel.Name     = "uxRowguidLabel";
            this.uxRowguidLabel.Text     = "Rowguid:";
            this.uxRowguidLabel.Location = new System.Drawing.Point(3, 234);
            this.Controls.Add(this.uxRowguidLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxRowguidLabel);
            //
            // uxRowguid
            //
            this.uxRowguid.Name     = "uxRowguid";
            this.uxRowguid.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxRowguid);
            this.uxRowguid.Location = new System.Drawing.Point(160, 234);
            this.Controls.Add(this.uxRowguid);
            //
            // uxModifiedDateLabel
            //
            this.uxModifiedDateLabel.Name     = "uxModifiedDateLabel";
            this.uxModifiedDateLabel.Text     = "Modified Date:";
            this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 260);
            this.Controls.Add(this.uxModifiedDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);
            //
            // uxModifiedDate
            //
            this.uxModifiedDate.Name = "uxModifiedDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
            this.uxModifiedDate.Location = new System.Drawing.Point(160, 260);
            this.Controls.Add(this.uxModifiedDate);
            //
            // SpecialOfferEditControlBase
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            //this.Controls.Add(this.uxTableLayoutPanel);
            this.AutoScroll = true;
            this.Name       = "SpecialOfferEditControlBase";
            this.Size       = new System.Drawing.Size(478, 311);
            //this.Localizable = true;
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(nodarbibu_ievade));
            this.l_idmacsp = new System.Windows.Forms.Label();
            this.cb_idmacsp = new System.Windows.Forms.ComboBox();
            this.cb_nod_veids = new System.Windows.Forms.ComboBox();
            this.l_nod_veids = new System.Windows.Forms.Label();
            this.dtp_dat_no = new System.Windows.Forms.DateTimePicker();
            this.l_dat_no = new System.Windows.Forms.Label();
            this.dtp_dat_lidz = new System.Windows.Forms.DateTimePicker();
            this.l_dat_lidz = new System.Windows.Forms.Label();
            this.cb_ned_diena = new System.Windows.Forms.ComboBox();
            this.l_ned_diena = new System.Windows.Forms.Label();
            this.cb_laiks = new System.Windows.Forms.ComboBox();
            this.l_laiks = new System.Windows.Forms.Label();
            this.b_pievienot = new System.Windows.Forms.Button();
            this.l_idkkods = new System.Windows.Forms.Label();
            this.cb_idkkods = new System.Windows.Forms.ComboBox();
            this.ep_kluda = new System.Windows.Forms.ErrorProvider(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.ep_kluda)).BeginInit();
            this.SuspendLayout();
            // 
            // l_idmacsp
            // 
            this.l_idmacsp.Location = new System.Drawing.Point(12, 37);
            this.l_idmacsp.Name = "l_idmacsp";
            this.l_idmacsp.Size = new System.Drawing.Size(104, 23);
            this.l_idmacsp.TabIndex = 2;
            this.l_idmacsp.Text = "Mācībspēks:";
            this.l_idmacsp.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // cb_idmacsp
            // 
            this.cb_idmacsp.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cb_idmacsp.FormattingEnabled = true;
            this.cb_idmacsp.Location = new System.Drawing.Point(122, 39);
            this.cb_idmacsp.Name = "cb_idmacsp";
            this.cb_idmacsp.Size = new System.Drawing.Size(250, 21);
            this.cb_idmacsp.TabIndex = 3;
            // 
            // cb_nod_veids
            // 
            this.cb_nod_veids.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cb_nod_veids.FormattingEnabled = true;
            this.cb_nod_veids.Location = new System.Drawing.Point(122, 66);
            this.cb_nod_veids.Name = "cb_nod_veids";
            this.cb_nod_veids.Size = new System.Drawing.Size(250, 21);
            this.cb_nod_veids.TabIndex = 5;
            // 
            // l_nod_veids
            // 
            this.l_nod_veids.Location = new System.Drawing.Point(12, 64);
            this.l_nod_veids.Name = "l_nod_veids";
            this.l_nod_veids.Size = new System.Drawing.Size(104, 23);
            this.l_nod_veids.TabIndex = 4;
            this.l_nod_veids.Text = "Nodarbības veids:";
            this.l_nod_veids.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // dtp_dat_no
            // 
            this.dtp_dat_no.Location = new System.Drawing.Point(122, 93);
            this.dtp_dat_no.MaxDate = new System.DateTime(2020, 1, 1, 0, 0, 0, 0);
            this.dtp_dat_no.MinDate = new System.DateTime(2015, 1, 1, 0, 0, 0, 0);
            this.dtp_dat_no.Name = "dtp_dat_no";
            this.dtp_dat_no.Size = new System.Drawing.Size(250, 20);
            this.dtp_dat_no.TabIndex = 7;
            this.dtp_dat_no.Value = new System.DateTime(2015, 5, 1, 0, 0, 0, 0);
            // 
            // l_dat_no
            // 
            this.l_dat_no.Location = new System.Drawing.Point(12, 94);
            this.l_dat_no.Name = "l_dat_no";
            this.l_dat_no.Size = new System.Drawing.Size(104, 23);
            this.l_dat_no.TabIndex = 6;
            this.l_dat_no.Text = "Datums no:";
            this.l_dat_no.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // dtp_dat_lidz
            // 
            this.dtp_dat_lidz.Location = new System.Drawing.Point(122, 119);
            this.dtp_dat_lidz.MaxDate = new System.DateTime(2020, 1, 1, 0, 0, 0, 0);
            this.dtp_dat_lidz.MinDate = new System.DateTime(2015, 1, 1, 0, 0, 0, 0);
            this.dtp_dat_lidz.Name = "dtp_dat_lidz";
            this.dtp_dat_lidz.Size = new System.Drawing.Size(250, 20);
            this.dtp_dat_lidz.TabIndex = 9;
            this.dtp_dat_lidz.Value = new System.DateTime(2015, 5, 1, 0, 0, 0, 0);
            // 
            // l_dat_lidz
            // 
            this.l_dat_lidz.Location = new System.Drawing.Point(12, 120);
            this.l_dat_lidz.Name = "l_dat_lidz";
            this.l_dat_lidz.Size = new System.Drawing.Size(104, 23);
            this.l_dat_lidz.TabIndex = 8;
            this.l_dat_lidz.Text = "Datums līdz:";
            this.l_dat_lidz.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // cb_ned_diena
            // 
            this.cb_ned_diena.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cb_ned_diena.FormattingEnabled = true;
            this.cb_ned_diena.Location = new System.Drawing.Point(122, 145);
            this.cb_ned_diena.Name = "cb_ned_diena";
            this.cb_ned_diena.Size = new System.Drawing.Size(250, 21);
            this.cb_ned_diena.TabIndex = 11;
            // 
            // l_ned_diena
            // 
            this.l_ned_diena.Location = new System.Drawing.Point(12, 143);
            this.l_ned_diena.Name = "l_ned_diena";
            this.l_ned_diena.Size = new System.Drawing.Size(104, 23);
            this.l_ned_diena.TabIndex = 10;
            this.l_ned_diena.Text = "Nedēļas diena:";
            this.l_ned_diena.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // cb_laiks
            // 
            this.cb_laiks.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cb_laiks.FormattingEnabled = true;
            this.cb_laiks.Location = new System.Drawing.Point(122, 172);
            this.cb_laiks.Name = "cb_laiks";
            this.cb_laiks.Size = new System.Drawing.Size(250, 21);
            this.cb_laiks.TabIndex = 13;
            // 
            // l_laiks
            // 
            this.l_laiks.Location = new System.Drawing.Point(12, 170);
            this.l_laiks.Name = "l_laiks";
            this.l_laiks.Size = new System.Drawing.Size(104, 23);
            this.l_laiks.TabIndex = 12;
            this.l_laiks.Text = "Laiks:";
            this.l_laiks.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // b_pievienot
            // 
            this.b_pievienot.Location = new System.Drawing.Point(12, 199);
            this.b_pievienot.Name = "b_pievienot";
            this.b_pievienot.Size = new System.Drawing.Size(360, 23);
            this.b_pievienot.TabIndex = 14;
            this.b_pievienot.Text = "&Pievienot nodarbības datus";
            this.b_pievienot.UseVisualStyleBackColor = true;
            this.b_pievienot.Click += new System.EventHandler(this.B_pievienotClick);
            // 
            // l_idkkods
            // 
            this.l_idkkods.Location = new System.Drawing.Point(12, 10);
            this.l_idkkods.Name = "l_idkkods";
            this.l_idkkods.Size = new System.Drawing.Size(104, 23);
            this.l_idkkods.TabIndex = 0;
            this.l_idkkods.Text = "Studiju kurss:";
            this.l_idkkods.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // cb_idkkods
            // 
            this.cb_idkkods.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cb_idkkods.FormattingEnabled = true;
            this.cb_idkkods.Location = new System.Drawing.Point(122, 12);
            this.cb_idkkods.Name = "cb_idkkods";
            this.cb_idkkods.Size = new System.Drawing.Size(250, 21);
            this.cb_idkkods.TabIndex = 1;
            // 
            // ep_kluda
            // 
            this.ep_kluda.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
            this.ep_kluda.ContainerControl = this;
            this.ep_kluda.Icon = ((System.Drawing.Icon)(resources.GetObject("ep_kluda.Icon")));
            // 
            // nodarbibu_ievade
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(389, 227);
            this.Controls.Add(this.cb_idkkods);
            this.Controls.Add(this.l_idkkods);
            this.Controls.Add(this.b_pievienot);
            this.Controls.Add(this.l_laiks);
            this.Controls.Add(this.cb_laiks);
            this.Controls.Add(this.l_ned_diena);
            this.Controls.Add(this.cb_ned_diena);
            this.Controls.Add(this.l_dat_lidz);
            this.Controls.Add(this.dtp_dat_lidz);
            this.Controls.Add(this.l_dat_no);
            this.Controls.Add(this.dtp_dat_no);
            this.Controls.Add(this.l_nod_veids);
            this.Controls.Add(this.cb_nod_veids);
            this.Controls.Add(this.cb_idmacsp);
            this.Controls.Add(this.l_idmacsp);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimumSize = new System.Drawing.Size(405, 265);
            this.Name = "nodarbibu_ievade";
            this.ShowIcon = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Pievienot nodarbību";
            ((System.ComponentModel.ISupportInitialize)(this.ep_kluda)).EndInit();
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.lblCurrentLine = new System.Windows.Forms.Label();
     this.txtCurrentLine = new System.Windows.Forms.TextBox();
     this.err = new System.Windows.Forms.ErrorProvider(this.components);
     this.txtMaxLine = new System.Windows.Forms.TextBox();
     this.lblMaxLine = new System.Windows.Forms.Label();
     this.txtGotoLine = new System.Windows.Forms.TextBox();
     this.lblGotoLine = new System.Windows.Forms.Label();
     this.btnOK = new System.Windows.Forms.Button();
     this.btnCancel = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.err)).BeginInit();
     this.SuspendLayout();
     //
     // lblCurrentLine
     //
     this.lblCurrentLine.AutoSize = true;
     this.lblCurrentLine.Location = new System.Drawing.Point(9, 13);
     this.lblCurrentLine.Name = "lblCurrentLine";
     this.lblCurrentLine.Size = new System.Drawing.Size(102, 13);
     this.lblCurrentLine.TabIndex = 0;
     this.lblCurrentLine.Text = "&Current line number";
     //
     // txtCurrentLine
     //
     this.txtCurrentLine.Location = new System.Drawing.Point(132, 8);
     this.txtCurrentLine.Name = "txtCurrentLine";
     this.txtCurrentLine.ReadOnly = true;
     this.txtCurrentLine.Size = new System.Drawing.Size(63, 21);
     this.txtCurrentLine.TabIndex = 1;
     //
     // err
     //
     this.err.ContainerControl = this;
     //
     // txtMaxLine
     //
     this.txtMaxLine.Location = new System.Drawing.Point(132, 33);
     this.txtMaxLine.Name = "txtMaxLine";
     this.txtMaxLine.ReadOnly = true;
     this.txtMaxLine.Size = new System.Drawing.Size(63, 21);
     this.txtMaxLine.TabIndex = 3;
     //
     // lblMaxLine
     //
     this.lblMaxLine.AutoSize = true;
     this.lblMaxLine.Location = new System.Drawing.Point(9, 37);
     this.lblMaxLine.Name = "lblMaxLine";
     this.lblMaxLine.Size = new System.Drawing.Size(117, 13);
     this.lblMaxLine.TabIndex = 2;
     this.lblMaxLine.Text = "&Maxmimum line number";
     //
     // txtGotoLine
     //
     this.txtGotoLine.Location = new System.Drawing.Point(132, 58);
     this.txtGotoLine.Name = "txtGotoLine";
     this.txtGotoLine.Size = new System.Drawing.Size(63, 21);
     this.txtGotoLine.TabIndex = 5;
     //
     // lblGotoLine
     //
     this.lblGotoLine.AutoSize = true;
     this.lblGotoLine.Location = new System.Drawing.Point(9, 61);
     this.lblGotoLine.Name = "lblGotoLine";
     this.lblGotoLine.Size = new System.Drawing.Size(91, 13);
     this.lblGotoLine.TabIndex = 4;
     this.lblGotoLine.Text = "&Go to line number";
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(39, 85);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex = 6;
     this.btnOK.Text = "OK";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(120, 85);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 7;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     //
     // GoToDialog
     //
     this.AcceptButton = this.btnOK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(204, 113);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.txtGotoLine);
     this.Controls.Add(this.lblGotoLine);
     this.Controls.Add(this.txtMaxLine);
     this.Controls.Add(this.lblMaxLine);
     this.Controls.Add(this.txtCurrentLine);
     this.Controls.Add(this.lblCurrentLine);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "GoToDialog";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Go To Line";
     this.Load += new System.EventHandler(this.GoToDialog_Load);
     ((System.ComponentModel.ISupportInitialize)(this.err)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.editNameTextBox = new System.Windows.Forms.TextBox();
     this.editCountryTextBox = new System.Windows.Forms.TextBox();
     this.editYearTextBox = new System.Windows.Forms.TextBox();
     this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
     this.saveButton = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(13, 13);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(35, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Name";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(13, 54);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(43, 13);
     this.label2.TabIndex = 1;
     this.label2.Text = "Country";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(13, 105);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(29, 13);
     this.label3.TabIndex = 2;
     this.label3.Text = "Year";
     //
     // editNameTextBox
     //
     this.editNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.editNameTextBox.Location = new System.Drawing.Point(73, 13);
     this.editNameTextBox.Name = "editNameTextBox";
     this.editNameTextBox.Size = new System.Drawing.Size(160, 20);
     this.editNameTextBox.TabIndex = 3;
     this.editNameTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.OnEditNameTextBoxValidating);
     this.editNameTextBox.Validated += new System.EventHandler(this.OnEditNameTextBoxValidated);
     //
     // editCountryTextBox
     //
     this.editCountryTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.editCountryTextBox.Location = new System.Drawing.Point(73, 54);
     this.editCountryTextBox.Name = "editCountryTextBox";
     this.editCountryTextBox.Size = new System.Drawing.Size(160, 20);
     this.editCountryTextBox.TabIndex = 4;
     this.editCountryTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.OnEditCountryTextBoxValidating);
     this.editCountryTextBox.Validated += new System.EventHandler(this.OnEditCountryTextBoxValidated);
     //
     // editYearTextBox
     //
     this.editYearTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.editYearTextBox.Location = new System.Drawing.Point(73, 102);
     this.editYearTextBox.Name = "editYearTextBox";
     this.editYearTextBox.Size = new System.Drawing.Size(160, 20);
     this.editYearTextBox.TabIndex = 5;
     this.editYearTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.OnEditYearTextBoxValidating);
     this.editYearTextBox.Validated += new System.EventHandler(this.OnEditYearTextBoxValidated);
     //
     // errorProvider
     //
     this.errorProvider.ContainerControl = this;
     //
     // saveButton
     //
     this.saveButton.Location = new System.Drawing.Point(102, 226);
     this.saveButton.Name = "saveButton";
     this.saveButton.Size = new System.Drawing.Size(75, 23);
     this.saveButton.TabIndex = 6;
     this.saveButton.Text = "Save";
     this.saveButton.UseVisualStyleBackColor = true;
     this.saveButton.Click += new System.EventHandler(this.OnSaveButtonClicked);
     //
     // EditForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(284, 261);
     this.Controls.Add(this.saveButton);
     this.Controls.Add(this.editYearTextBox);
     this.Controls.Add(this.editCountryTextBox);
     this.Controls.Add(this.editNameTextBox);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Name = "EditForm";
     this.Text = "EditForm";
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Initializes a new instance of the <see cref="CountryRegionCurrencyDataGridViewBase"/> class.
        /// </summary>
        public CountryRegionCurrencyDataGridViewBase()
        {
            this.components = new System.ComponentModel.Container();

            this.uxCountryRegionCurrencyDataGridView   = new System.Windows.Forms.DataGridView();
            this.uxCountryRegionCurrencyBindingSource  = new System.Windows.Forms.BindingSource(this.components);
            this.uxCountryRegionCurrencyErrorProvider  = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxCountryRegionCodeDataGridViewColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.uxCurrencyCodeDataGridViewColumn      = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.uxModifiedDateDataGridViewColumn      = new System.Windows.Forms.DataGridViewTextBoxColumn();
            //this.uxCountryRegionCodeBindingSource = new CountryRegionBindingSource(this.components);
            //((System.ComponentModel.ISupportInitialize)(this.uxCountryRegionCodeBindingSource)).BeginInit();
            //this.uxCurrencyCodeBindingSource = new CurrencyBindingSource(this.components);
            //((System.ComponentModel.ISupportInitialize)(this.uxCurrencyCodeBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxCountryRegionCurrencyDataGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxCountryRegionCurrencyBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxCountryRegionCurrencyErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxCountryRegionCurrencyErrorProvider
            //
            this.uxCountryRegionCurrencyErrorProvider.ContainerControl = this;
            this.uxCountryRegionCurrencyErrorProvider.DataSource       = this.uxCountryRegionCurrencyBindingSource;
            //
            // uxCountryRegionCurrencyDataGridView
            //
            this.uxCountryRegionCurrencyDataGridView.AutoGenerateColumns         = false;
            this.uxCountryRegionCurrencyDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.uxCountryRegionCurrencyDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
                this.uxCountryRegionCodeDataGridViewColumn,
                this.uxCurrencyCodeDataGridViewColumn,
                this.uxModifiedDateDataGridViewColumn
            });
            this.uxCountryRegionCurrencyDataGridView.Dock                      = System.Windows.Forms.DockStyle.Fill;
            this.uxCountryRegionCurrencyDataGridView.Location                  = new System.Drawing.Point(0, 0);
            this.uxCountryRegionCurrencyDataGridView.Name                      = "uxCountryRegionCurrencyDataGridView";
            this.uxCountryRegionCurrencyDataGridView.Size                      = new System.Drawing.Size(470, 300);
            this.uxCountryRegionCurrencyDataGridView.TabIndex                  = 0;
            this.uxCountryRegionCurrencyDataGridView.BackgroundColor           = System.Drawing.Color.WhiteSmoke;
            this.uxCountryRegionCurrencyDataGridView.EnableHeadersVisualStyles = false;
            this.uxCountryRegionCurrencyDataGridView.DataError                += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnCountryRegionCurrencyDataGridViewDataError);
            this.uxCountryRegionCurrencyDataGridView.CellValueNeeded          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnCountryRegionCurrencyDataGridViewCellValueNeeded);
            this.uxCountryRegionCurrencyDataGridView.CellValuePushed          += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnCountryRegionCurrencyDataGridViewCellValuePushed);

            //
            // uxCountryRegionCodeDataGridViewColumn
            //
            this.uxCountryRegionCodeDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxCountryRegionCodeDataGridViewColumn.DataPropertyName = "CountryRegionCode";
            this.uxCountryRegionCodeDataGridViewColumn.HeaderText       = "CountryRegionCode";
            this.uxCountryRegionCodeDataGridViewColumn.Name             = "uxCountryRegionCodeDataGridViewColumn";
            this.uxCountryRegionCodeDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxCountryRegionCodeDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxCountryRegionCodeDataGridViewColumn.ReadOnly         = false;
            //
            // uxCurrencyCodeDataGridViewColumn
            //
            this.uxCurrencyCodeDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxCurrencyCodeDataGridViewColumn.DataPropertyName = "CurrencyCode";
            this.uxCurrencyCodeDataGridViewColumn.HeaderText       = "CurrencyCode";
            this.uxCurrencyCodeDataGridViewColumn.Name             = "uxCurrencyCodeDataGridViewColumn";
            this.uxCurrencyCodeDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxCurrencyCodeDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxCurrencyCodeDataGridViewColumn.ReadOnly         = false;
            //
            // uxModifiedDateDataGridViewColumn
            //
            this.uxModifiedDateDataGridViewColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
            this.uxModifiedDateDataGridViewColumn.DataPropertyName = "ModifiedDate";
            this.uxModifiedDateDataGridViewColumn.HeaderText       = "ModifiedDate";
            this.uxModifiedDateDataGridViewColumn.Name             = "uxModifiedDateDataGridViewColumn";
            this.uxModifiedDateDataGridViewColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
            this.uxModifiedDateDataGridViewColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.uxModifiedDateDataGridViewColumn.ReadOnly         = false;
            //
            // uxCountryRegionCodeDataGridViewColumn
            //
            this.uxCountryRegionCodeDataGridViewColumn.DisplayMember = "Name";
            this.uxCountryRegionCodeDataGridViewColumn.ValueMember   = "CountryRegionCode";
            this.uxCountryRegionCodeDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
            //uxCountryRegionCodeDataGridViewColumn.DataSource = uxCountryRegionCodeBindingSource;

            //
            // uxCurrencyCodeDataGridViewColumn
            //
            this.uxCurrencyCodeDataGridViewColumn.DisplayMember = "Name";
            this.uxCurrencyCodeDataGridViewColumn.ValueMember   = "CurrencyCode";
            this.uxCurrencyCodeDataGridViewColumn.DisplayStyleForCurrentCellOnly = true;
            //uxCurrencyCodeDataGridViewColumn.DataSource = uxCurrencyCodeBindingSource;


            // this
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.uxCountryRegionCurrencyDataGridView);
            this.Name = "CountryRegionCurrencyDataGridView";
            this.Size = new System.Drawing.Size(470, 300);
            //((System.ComponentModel.ISupportInitialize)(this.uxCountryRegionCodeBindingSource)).EndInit();
            //((System.ComponentModel.ISupportInitialize)(this.uxCurrencyCodeBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxCountryRegionCurrencyErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxCountryRegionCurrencyDataGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxCountryRegionCurrencyBindingSource)).EndInit();
            this.ResumeLayout(false);
        }
Exemple #49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components                  = new System.ComponentModel.Container();
     this.buttonOk                    = new System.Windows.Forms.Button();
     this.buttonCancel                = new System.Windows.Forms.Button();
     this.folderBrowserDialog1        = new System.Windows.Forms.FolderBrowserDialog();
     this.fontDialog1                 = new System.Windows.Forms.FontDialog();
     this.errorProvider1              = new System.Windows.Forms.ErrorProvider(this.components);
     this.buttonDefault               = new System.Windows.Forms.Button();
     this.checkBoxConfirmVersionCheck = new System.Windows.Forms.CheckBox();
     this.checkBoxConfirmClose        = new System.Windows.Forms.CheckBox();
     this.checkBoxLockRatio           = new System.Windows.Forms.CheckBox();
     this.textBoxHeight               = new System.Windows.Forms.TextBox();
     this.textBoxWidth                = new System.Windows.Forms.TextBox();
     this.labelOutputSize             = new System.Windows.Forms.Label();
     this.textBoxFont                 = new System.Windows.Forms.TextBox();
     this.buttonFont                  = new System.Windows.Forms.Button();
     this.textBoxOutputDirectory      = new System.Windows.Forms.TextBox();
     this.textBoxInputDirectory       = new System.Windows.Forms.TextBox();
     this.buttonOutputDirectory       = new System.Windows.Forms.Button();
     this.labelOutputDirectory        = new System.Windows.Forms.Label();
     this.buttonInputDirectory        = new System.Windows.Forms.Button();
     this.labelInputDirectory         = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // buttonOk
     //
     this.buttonOk.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonOk.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.buttonOk.Location                = new System.Drawing.Point(12, 173);
     this.buttonOk.Name                    = "buttonOk";
     this.buttonOk.Size                    = new System.Drawing.Size(75, 23);
     this.buttonOk.TabIndex                = 14;
     this.buttonOk.Text                    = "buttonOk";
     this.buttonOk.UseVisualStyleBackColor = true;
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Location                = new System.Drawing.Point(243, 173);
     this.buttonCancel.Name                    = "buttonCancel";
     this.buttonCancel.Size                    = new System.Drawing.Size(75, 23);
     this.buttonCancel.TabIndex                = 16;
     this.buttonCancel.Text                    = "buttonCancel";
     this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // buttonDefault
     //
     this.buttonDefault.Anchor   = System.Windows.Forms.AnchorStyles.Bottom;
     this.buttonDefault.Location = new System.Drawing.Point(128, 173);
     this.buttonDefault.Name     = "buttonDefault";
     this.buttonDefault.Size     = new System.Drawing.Size(75, 23);
     this.buttonDefault.TabIndex = 15;
     this.buttonDefault.Text     = "buttonDefault";
     this.buttonDefault.UseVisualStyleBackColor = true;
     this.buttonDefault.Click += new System.EventHandler(this.ButtonDefault_Click);
     //
     // checkBoxConfirmVersionCheck
     //
     this.checkBoxConfirmVersionCheck.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.checkBoxConfirmVersionCheck.AutoSize = true;
     this.checkBoxConfirmVersionCheck.Location = new System.Drawing.Point(147, 145);
     this.checkBoxConfirmVersionCheck.Name     = "checkBoxConfirmVersionCheck";
     this.checkBoxConfirmVersionCheck.Size     = new System.Drawing.Size(175, 17);
     this.checkBoxConfirmVersionCheck.TabIndex = 13;
     this.checkBoxConfirmVersionCheck.Text     = "checkBoxConfirmVersionCheck";
     this.checkBoxConfirmVersionCheck.UseVisualStyleBackColor = true;
     //
     // checkBoxConfirmClose
     //
     this.checkBoxConfirmClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.checkBoxConfirmClose.AutoSize = true;
     this.checkBoxConfirmClose.Location = new System.Drawing.Point(12, 145);
     this.checkBoxConfirmClose.Name     = "checkBoxConfirmClose";
     this.checkBoxConfirmClose.Size     = new System.Drawing.Size(135, 17);
     this.checkBoxConfirmClose.TabIndex = 12;
     this.checkBoxConfirmClose.Text     = "checkBoxConfirmClose";
     this.checkBoxConfirmClose.UseVisualStyleBackColor = true;
     //
     // checkBoxLockRatio
     //
     this.checkBoxLockRatio.Appearance = System.Windows.Forms.Appearance.Button;
     this.checkBoxLockRatio.Location   = new System.Drawing.Point(144, 73);
     this.checkBoxLockRatio.Name       = "checkBoxLockRatio";
     this.checkBoxLockRatio.Size       = new System.Drawing.Size(24, 24);
     this.checkBoxLockRatio.TabIndex   = 8;
     this.checkBoxLockRatio.Text       = "X";
     this.checkBoxLockRatio.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     this.checkBoxLockRatio.UseVisualStyleBackColor = true;
     this.checkBoxLockRatio.CheckedChanged         += new System.EventHandler(this.CheckBoxLockRatio_CheckedChanged);
     //
     // textBoxHeight
     //
     this.textBoxHeight.Location  = new System.Drawing.Point(174, 75);
     this.textBoxHeight.MaxLength = 4;
     this.textBoxHeight.Name      = "textBoxHeight";
     this.textBoxHeight.Size      = new System.Drawing.Size(36, 20);
     this.textBoxHeight.TabIndex  = 9;
     this.textBoxHeight.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.textBoxHeight.Leave    += new System.EventHandler(this.TextBoxHeight_Leave);
     //
     // textBoxWidth
     //
     this.textBoxWidth.Location  = new System.Drawing.Point(102, 75);
     this.textBoxWidth.MaxLength = 4;
     this.textBoxWidth.Name      = "textBoxWidth";
     this.textBoxWidth.Size      = new System.Drawing.Size(36, 20);
     this.textBoxWidth.TabIndex  = 7;
     this.textBoxWidth.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.textBoxWidth.Leave    += new System.EventHandler(this.TextBoxWidth_Leave);
     //
     // labelOutputSize
     //
     this.labelOutputSize.AutoSize = true;
     this.labelOutputSize.Location = new System.Drawing.Point(12, 78);
     this.labelOutputSize.Name     = "labelOutputSize";
     this.labelOutputSize.Size     = new System.Drawing.Size(81, 13);
     this.labelOutputSize.TabIndex = 6;
     this.labelOutputSize.Text     = "labelOutputSize";
     //
     // textBoxFont
     //
     this.textBoxFont.Location = new System.Drawing.Point(102, 111);
     this.textBoxFont.Name     = "textBoxFont";
     this.textBoxFont.ReadOnly = true;
     this.textBoxFont.Size     = new System.Drawing.Size(216, 20);
     this.textBoxFont.TabIndex = 11;
     //
     // buttonFont
     //
     this.buttonFont.Location = new System.Drawing.Point(12, 109);
     this.buttonFont.Name     = "buttonFont";
     this.buttonFont.Size     = new System.Drawing.Size(75, 23);
     this.buttonFont.TabIndex = 10;
     this.buttonFont.Text     = "buttonFont";
     this.buttonFont.UseVisualStyleBackColor = true;
     this.buttonFont.Click += new System.EventHandler(this.ButtonFont_Click);
     //
     // textBoxOutputDirectory
     //
     this.textBoxOutputDirectory.Location = new System.Drawing.Point(102, 40);
     this.textBoxOutputDirectory.Name     = "textBoxOutputDirectory";
     this.textBoxOutputDirectory.Size     = new System.Drawing.Size(180, 20);
     this.textBoxOutputDirectory.TabIndex = 4;
     //
     // textBoxInputDirectory
     //
     this.textBoxInputDirectory.Location = new System.Drawing.Point(102, 14);
     this.textBoxInputDirectory.Name     = "textBoxInputDirectory";
     this.textBoxInputDirectory.Size     = new System.Drawing.Size(180, 20);
     this.textBoxInputDirectory.TabIndex = 1;
     //
     // buttonOutputDirectory
     //
     this.buttonOutputDirectory.Image    = global::AscGenDotNet.Properties.Resources.folder;
     this.buttonOutputDirectory.Location = new System.Drawing.Point(288, 38);
     this.buttonOutputDirectory.Name     = "buttonOutputDirectory";
     this.buttonOutputDirectory.Size     = new System.Drawing.Size(30, 23);
     this.buttonOutputDirectory.TabIndex = 5;
     this.buttonOutputDirectory.UseVisualStyleBackColor = true;
     this.buttonOutputDirectory.Click += new System.EventHandler(this.ButtonOutputDirectory_Click);
     //
     // labelOutputDirectory
     //
     this.labelOutputDirectory.AutoSize = true;
     this.labelOutputDirectory.Location = new System.Drawing.Point(12, 43);
     this.labelOutputDirectory.Name     = "labelOutputDirectory";
     this.labelOutputDirectory.Size     = new System.Drawing.Size(103, 13);
     this.labelOutputDirectory.TabIndex = 3;
     this.labelOutputDirectory.Text     = "labelOutputDirectory";
     //
     // buttonInputDirectory
     //
     this.buttonInputDirectory.Image    = global::AscGenDotNet.Properties.Resources.folder;
     this.buttonInputDirectory.Location = new System.Drawing.Point(288, 12);
     this.buttonInputDirectory.Name     = "buttonInputDirectory";
     this.buttonInputDirectory.Size     = new System.Drawing.Size(30, 23);
     this.buttonInputDirectory.TabIndex = 2;
     this.buttonInputDirectory.UseVisualStyleBackColor = true;
     this.buttonInputDirectory.Click += new System.EventHandler(this.ButtonInputDirectory_Click);
     //
     // labelInputDirectory
     //
     this.labelInputDirectory.AutoSize = true;
     this.labelInputDirectory.Location = new System.Drawing.Point(12, 17);
     this.labelInputDirectory.Name     = "labelInputDirectory";
     this.labelInputDirectory.Size     = new System.Drawing.Size(95, 13);
     this.labelInputDirectory.TabIndex = 0;
     this.labelInputDirectory.Text     = "labelInputDirectory";
     //
     // FormEditSettings
     //
     this.AcceptButton        = this.buttonOk;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.CancelButton        = this.buttonCancel;
     this.ClientSize          = new System.Drawing.Size(330, 208);
     this.Controls.Add(this.checkBoxConfirmVersionCheck);
     this.Controls.Add(this.checkBoxConfirmClose);
     this.Controls.Add(this.checkBoxLockRatio);
     this.Controls.Add(this.textBoxHeight);
     this.Controls.Add(this.textBoxWidth);
     this.Controls.Add(this.labelOutputSize);
     this.Controls.Add(this.textBoxFont);
     this.Controls.Add(this.buttonFont);
     this.Controls.Add(this.textBoxOutputDirectory);
     this.Controls.Add(this.textBoxInputDirectory);
     this.Controls.Add(this.buttonOutputDirectory);
     this.Controls.Add(this.labelOutputDirectory);
     this.Controls.Add(this.buttonInputDirectory);
     this.Controls.Add(this.labelInputDirectory);
     this.Controls.Add(this.buttonDefault);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.buttonOk);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormEditSettings";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "FormEditSettings";
     this.Load           += new System.EventHandler(this.FormEditSettings_Load);
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		/// <summary>
		/// Initializes the component.
		/// </summary>
		public void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);
			
			//this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			this.uxStudentId = new System.Windows.Forms.TextBox();
			uxStudentIdLabel = new System.Windows.Forms.Label();
			this.uxEpassId = new System.Windows.Forms.TextBox();
			uxEpassIdLabel = new System.Windows.Forms.Label();
			this.uxStudentUpn = new System.Windows.Forms.TextBox();
			uxStudentUpnLabel = new System.Windows.Forms.Label();
			this.uxSsabsaId = new System.Windows.Forms.TextBox();
			uxSsabsaIdLabel = new System.Windows.Forms.Label();
			this.uxSurname = new System.Windows.Forms.TextBox();
			uxSurnameLabel = new System.Windows.Forms.Label();
			this.uxFirstName = new System.Windows.Forms.TextBox();
			uxFirstNameLabel = new System.Windows.Forms.Label();
			this.uxOtherNames = new System.Windows.Forms.TextBox();
			uxOtherNamesLabel = new System.Windows.Forms.Label();
			this.uxKnownName = new System.Windows.Forms.TextBox();
			uxKnownNameLabel = new System.Windows.Forms.Label();
			this.uxLegalName = new System.Windows.Forms.TextBox();
			uxLegalNameLabel = new System.Windows.Forms.Label();
			this.uxDob = new System.Windows.Forms.DateTimePicker();
			uxDobLabel = new System.Windows.Forms.Label();
			this.uxGender = new System.Windows.Forms.TextBox();
			uxGenderLabel = new System.Windows.Forms.Label();
			this.uxIndigeneousStatus = new System.Windows.Forms.TextBox();
			uxIndigeneousStatusLabel = new System.Windows.Forms.Label();
			this.uxLbote = new System.Windows.Forms.TextBox();
			uxLboteLabel = new System.Windows.Forms.Label();
			this.uxEslPhase = new System.Windows.Forms.TextBox();
			uxEslPhaseLabel = new System.Windows.Forms.Label();
			this.uxTribalGroup = new System.Windows.Forms.TextBox();
			uxTribalGroupLabel = new System.Windows.Forms.Label();
			this.uxSlpCreatedFlag = new System.Windows.Forms.TextBox();
			uxSlpCreatedFlagLabel = new System.Windows.Forms.Label();
			this.uxAddressLine1 = new System.Windows.Forms.TextBox();
			uxAddressLine1Label = new System.Windows.Forms.Label();
			this.uxAddressLine2 = new System.Windows.Forms.TextBox();
			uxAddressLine2Label = new System.Windows.Forms.Label();
			this.uxAddressLine3 = new System.Windows.Forms.TextBox();
			uxAddressLine3Label = new System.Windows.Forms.Label();
			this.uxAddressLine4 = new System.Windows.Forms.TextBox();
			uxAddressLine4Label = new System.Windows.Forms.Label();
			this.uxSuburb = new System.Windows.Forms.TextBox();
			uxSuburbLabel = new System.Windows.Forms.Label();
			this.uxPostcode = new System.Windows.Forms.TextBox();
			uxPostcodeLabel = new System.Windows.Forms.Label();
			this.uxPhone1 = new System.Windows.Forms.TextBox();
			uxPhone1Label = new System.Windows.Forms.Label();
			this.uxPhone2 = new System.Windows.Forms.TextBox();
			uxPhone2Label = new System.Windows.Forms.Label();
			this.uxSourceSystem = new System.Windows.Forms.TextBox();
			uxSourceSystemLabel = new System.Windows.Forms.Label();
			this.uxPhoneticMatchId = new System.Windows.Forms.TextBox();
			uxPhoneticMatchIdLabel = new System.Windows.Forms.Label();
			
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
			this.SuspendLayout();
			
			// 
			// uxTableLayoutPanel
			// 
			//this.uxTableLayoutPanel.AutoSize = true;
			//this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			//this.uxTableLayoutPanel.ColumnCount = 2;
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
			//this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
			//this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
			//this.uxTableLayoutPanel.RowCount = 2;
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
			//this.uxTableLayoutPanel.TabIndex = 0;
			
			//
			// uxErrorProvider
			//
			this.uxErrorProvider.ContainerControl = this;
			this.uxErrorProvider.DataSource = this.uxBindingSource;
			
			//
			// uxStudentIdLabel
			//
			this.uxStudentIdLabel.Name = "uxStudentIdLabel";
			this.uxStudentIdLabel.Text = "Student Id:";
			this.uxStudentIdLabel.Location = new System.Drawing.Point(3, 0);
			this.Controls.Add(this.uxStudentIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxStudentIdLabel);			
			//
			// uxStudentId
			//
			this.uxStudentId.Name = "uxStudentId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxStudentId);
			this.uxStudentId.Location = new System.Drawing.Point(160, 0);
			this.Controls.Add(this.uxStudentId);
			//
			// uxEpassIdLabel
			//
			this.uxEpassIdLabel.Name = "uxEpassIdLabel";
			this.uxEpassIdLabel.Text = "Epass Id:";
			this.uxEpassIdLabel.Location = new System.Drawing.Point(3, 26);
			this.Controls.Add(this.uxEpassIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxEpassIdLabel);			
			//
			// uxEpassId
			//
			this.uxEpassId.Name = "uxEpassId";
			this.uxEpassId.Width = 250;
			this.uxEpassId.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxEpassId);
			this.uxEpassId.Location = new System.Drawing.Point(160, 26);
			this.Controls.Add(this.uxEpassId);
			//
			// uxStudentUpnLabel
			//
			this.uxStudentUpnLabel.Name = "uxStudentUpnLabel";
			this.uxStudentUpnLabel.Text = "Student Upn:";
			this.uxStudentUpnLabel.Location = new System.Drawing.Point(3, 52);
			this.Controls.Add(this.uxStudentUpnLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxStudentUpnLabel);			
			//
			// uxStudentUpn
			//
			this.uxStudentUpn.Name = "uxStudentUpn";
			this.uxStudentUpn.Width = 250;
			this.uxStudentUpn.MaxLength = 13;
			//this.uxTableLayoutPanel.Controls.Add(this.uxStudentUpn);
			this.uxStudentUpn.Location = new System.Drawing.Point(160, 52);
			this.Controls.Add(this.uxStudentUpn);
			//
			// uxSsabsaIdLabel
			//
			this.uxSsabsaIdLabel.Name = "uxSsabsaIdLabel";
			this.uxSsabsaIdLabel.Text = "Ssabsa Id:";
			this.uxSsabsaIdLabel.Location = new System.Drawing.Point(3, 78);
			this.Controls.Add(this.uxSsabsaIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSsabsaIdLabel);			
			//
			// uxSsabsaId
			//
			this.uxSsabsaId.Name = "uxSsabsaId";
			this.uxSsabsaId.Width = 250;
			this.uxSsabsaId.MaxLength = 100;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSsabsaId);
			this.uxSsabsaId.Location = new System.Drawing.Point(160, 78);
			this.Controls.Add(this.uxSsabsaId);
			//
			// uxSurnameLabel
			//
			this.uxSurnameLabel.Name = "uxSurnameLabel";
			this.uxSurnameLabel.Text = "Surname:";
			this.uxSurnameLabel.Location = new System.Drawing.Point(3, 104);
			this.Controls.Add(this.uxSurnameLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSurnameLabel);			
			//
			// uxSurname
			//
			this.uxSurname.Name = "uxSurname";
			this.uxSurname.Width = 250;
			this.uxSurname.MaxLength = 30;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSurname);
			this.uxSurname.Location = new System.Drawing.Point(160, 104);
			this.Controls.Add(this.uxSurname);
			//
			// uxFirstNameLabel
			//
			this.uxFirstNameLabel.Name = "uxFirstNameLabel";
			this.uxFirstNameLabel.Text = "First Name:";
			this.uxFirstNameLabel.Location = new System.Drawing.Point(3, 130);
			this.Controls.Add(this.uxFirstNameLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxFirstNameLabel);			
			//
			// uxFirstName
			//
			this.uxFirstName.Name = "uxFirstName";
			this.uxFirstName.Width = 250;
			this.uxFirstName.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxFirstName);
			this.uxFirstName.Location = new System.Drawing.Point(160, 130);
			this.Controls.Add(this.uxFirstName);
			//
			// uxOtherNamesLabel
			//
			this.uxOtherNamesLabel.Name = "uxOtherNamesLabel";
			this.uxOtherNamesLabel.Text = "Other Names:";
			this.uxOtherNamesLabel.Location = new System.Drawing.Point(3, 156);
			this.Controls.Add(this.uxOtherNamesLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxOtherNamesLabel);			
			//
			// uxOtherNames
			//
			this.uxOtherNames.Name = "uxOtherNames";
			this.uxOtherNames.Width = 250;
			this.uxOtherNames.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxOtherNames);
			this.uxOtherNames.Location = new System.Drawing.Point(160, 156);
			this.Controls.Add(this.uxOtherNames);
			//
			// uxKnownNameLabel
			//
			this.uxKnownNameLabel.Name = "uxKnownNameLabel";
			this.uxKnownNameLabel.Text = "Known Name:";
			this.uxKnownNameLabel.Location = new System.Drawing.Point(3, 182);
			this.Controls.Add(this.uxKnownNameLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxKnownNameLabel);			
			//
			// uxKnownName
			//
			this.uxKnownName.Name = "uxKnownName";
			this.uxKnownName.Width = 250;
			this.uxKnownName.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxKnownName);
			this.uxKnownName.Location = new System.Drawing.Point(160, 182);
			this.Controls.Add(this.uxKnownName);
			//
			// uxLegalNameLabel
			//
			this.uxLegalNameLabel.Name = "uxLegalNameLabel";
			this.uxLegalNameLabel.Text = "Legal Name:";
			this.uxLegalNameLabel.Location = new System.Drawing.Point(3, 208);
			this.Controls.Add(this.uxLegalNameLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxLegalNameLabel);			
			//
			// uxLegalName
			//
			this.uxLegalName.Name = "uxLegalName";
			this.uxLegalName.Width = 250;
			this.uxLegalName.MaxLength = 30;
			//this.uxTableLayoutPanel.Controls.Add(this.uxLegalName);
			this.uxLegalName.Location = new System.Drawing.Point(160, 208);
			this.Controls.Add(this.uxLegalName);
			//
			// uxDobLabel
			//
			this.uxDobLabel.Name = "uxDobLabel";
			this.uxDobLabel.Text = "Dob:";
			this.uxDobLabel.Location = new System.Drawing.Point(3, 234);
			this.Controls.Add(this.uxDobLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxDobLabel);			
			//
			// uxDob
			//
			this.uxDob.Name = "uxDob";
			//this.uxTableLayoutPanel.Controls.Add(this.uxDob);
			this.uxDob.Location = new System.Drawing.Point(160, 234);
			this.Controls.Add(this.uxDob);
			//
			// uxGenderLabel
			//
			this.uxGenderLabel.Name = "uxGenderLabel";
			this.uxGenderLabel.Text = "Gender:";
			this.uxGenderLabel.Location = new System.Drawing.Point(3, 260);
			this.Controls.Add(this.uxGenderLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxGenderLabel);			
			//
			// uxGender
			//
			this.uxGender.Name = "uxGender";
			this.uxGender.Width = 250;
			this.uxGender.MaxLength = 6;
			//this.uxTableLayoutPanel.Controls.Add(this.uxGender);
			this.uxGender.Location = new System.Drawing.Point(160, 260);
			this.Controls.Add(this.uxGender);
			//
			// uxIndigeneousStatusLabel
			//
			this.uxIndigeneousStatusLabel.Name = "uxIndigeneousStatusLabel";
			this.uxIndigeneousStatusLabel.Text = "Indigeneous Status:";
			this.uxIndigeneousStatusLabel.Location = new System.Drawing.Point(3, 286);
			this.Controls.Add(this.uxIndigeneousStatusLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxIndigeneousStatusLabel);			
			//
			// uxIndigeneousStatus
			//
			this.uxIndigeneousStatus.Name = "uxIndigeneousStatus";
			this.uxIndigeneousStatus.Width = 250;
			this.uxIndigeneousStatus.MaxLength = 40;
			//this.uxTableLayoutPanel.Controls.Add(this.uxIndigeneousStatus);
			this.uxIndigeneousStatus.Location = new System.Drawing.Point(160, 286);
			this.Controls.Add(this.uxIndigeneousStatus);
			//
			// uxLboteLabel
			//
			this.uxLboteLabel.Name = "uxLboteLabel";
			this.uxLboteLabel.Text = "Lbote:";
			this.uxLboteLabel.Location = new System.Drawing.Point(3, 312);
			this.Controls.Add(this.uxLboteLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxLboteLabel);			
			//
			// uxLbote
			//
			this.uxLbote.Name = "uxLbote";
			this.uxLbote.Width = 250;
			this.uxLbote.MaxLength = 3;
			//this.uxTableLayoutPanel.Controls.Add(this.uxLbote);
			this.uxLbote.Location = new System.Drawing.Point(160, 312);
			this.Controls.Add(this.uxLbote);
			//
			// uxEslPhaseLabel
			//
			this.uxEslPhaseLabel.Name = "uxEslPhaseLabel";
			this.uxEslPhaseLabel.Text = "Esl Phase:";
			this.uxEslPhaseLabel.Location = new System.Drawing.Point(3, 338);
			this.Controls.Add(this.uxEslPhaseLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxEslPhaseLabel);			
			//
			// uxEslPhase
			//
			this.uxEslPhase.Name = "uxEslPhase";
			this.uxEslPhase.Width = 250;
			this.uxEslPhase.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxEslPhase);
			this.uxEslPhase.Location = new System.Drawing.Point(160, 338);
			this.Controls.Add(this.uxEslPhase);
			//
			// uxTribalGroupLabel
			//
			this.uxTribalGroupLabel.Name = "uxTribalGroupLabel";
			this.uxTribalGroupLabel.Text = "Tribal Group:";
			this.uxTribalGroupLabel.Location = new System.Drawing.Point(3, 364);
			this.Controls.Add(this.uxTribalGroupLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxTribalGroupLabel);			
			//
			// uxTribalGroup
			//
			this.uxTribalGroup.Name = "uxTribalGroup";
			this.uxTribalGroup.Width = 250;
			this.uxTribalGroup.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxTribalGroup);
			this.uxTribalGroup.Location = new System.Drawing.Point(160, 364);
			this.Controls.Add(this.uxTribalGroup);
			//
			// uxSlpCreatedFlagLabel
			//
			this.uxSlpCreatedFlagLabel.Name = "uxSlpCreatedFlagLabel";
			this.uxSlpCreatedFlagLabel.Text = "Slp Created Flag:";
			this.uxSlpCreatedFlagLabel.Location = new System.Drawing.Point(3, 390);
			this.Controls.Add(this.uxSlpCreatedFlagLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSlpCreatedFlagLabel);			
			//
			// uxSlpCreatedFlag
			//
			this.uxSlpCreatedFlag.Name = "uxSlpCreatedFlag";
			this.uxSlpCreatedFlag.Width = 250;
			this.uxSlpCreatedFlag.MaxLength = 3;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSlpCreatedFlag);
			this.uxSlpCreatedFlag.Location = new System.Drawing.Point(160, 390);
			this.Controls.Add(this.uxSlpCreatedFlag);
			//
			// uxAddressLine1Label
			//
			this.uxAddressLine1Label.Name = "uxAddressLine1Label";
			this.uxAddressLine1Label.Text = "Address Line1:";
			this.uxAddressLine1Label.Location = new System.Drawing.Point(3, 416);
			this.Controls.Add(this.uxAddressLine1Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine1Label);			
			//
			// uxAddressLine1
			//
			this.uxAddressLine1.Name = "uxAddressLine1";
			this.uxAddressLine1.Width = 250;
			this.uxAddressLine1.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine1);
			this.uxAddressLine1.Location = new System.Drawing.Point(160, 416);
			this.Controls.Add(this.uxAddressLine1);
			//
			// uxAddressLine2Label
			//
			this.uxAddressLine2Label.Name = "uxAddressLine2Label";
			this.uxAddressLine2Label.Text = "Address Line2:";
			this.uxAddressLine2Label.Location = new System.Drawing.Point(3, 442);
			this.Controls.Add(this.uxAddressLine2Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine2Label);			
			//
			// uxAddressLine2
			//
			this.uxAddressLine2.Name = "uxAddressLine2";
			this.uxAddressLine2.Width = 250;
			this.uxAddressLine2.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine2);
			this.uxAddressLine2.Location = new System.Drawing.Point(160, 442);
			this.Controls.Add(this.uxAddressLine2);
			//
			// uxAddressLine3Label
			//
			this.uxAddressLine3Label.Name = "uxAddressLine3Label";
			this.uxAddressLine3Label.Text = "Address Line3:";
			this.uxAddressLine3Label.Location = new System.Drawing.Point(3, 468);
			this.Controls.Add(this.uxAddressLine3Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine3Label);			
			//
			// uxAddressLine3
			//
			this.uxAddressLine3.Name = "uxAddressLine3";
			this.uxAddressLine3.Width = 250;
			this.uxAddressLine3.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine3);
			this.uxAddressLine3.Location = new System.Drawing.Point(160, 468);
			this.Controls.Add(this.uxAddressLine3);
			//
			// uxAddressLine4Label
			//
			this.uxAddressLine4Label.Name = "uxAddressLine4Label";
			this.uxAddressLine4Label.Text = "Address Line4:";
			this.uxAddressLine4Label.Location = new System.Drawing.Point(3, 494);
			this.Controls.Add(this.uxAddressLine4Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine4Label);			
			//
			// uxAddressLine4
			//
			this.uxAddressLine4.Name = "uxAddressLine4";
			this.uxAddressLine4.Width = 250;
			this.uxAddressLine4.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxAddressLine4);
			this.uxAddressLine4.Location = new System.Drawing.Point(160, 494);
			this.Controls.Add(this.uxAddressLine4);
			//
			// uxSuburbLabel
			//
			this.uxSuburbLabel.Name = "uxSuburbLabel";
			this.uxSuburbLabel.Text = "Suburb:";
			this.uxSuburbLabel.Location = new System.Drawing.Point(3, 520);
			this.Controls.Add(this.uxSuburbLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSuburbLabel);			
			//
			// uxSuburb
			//
			this.uxSuburb.Name = "uxSuburb";
			this.uxSuburb.Width = 250;
			this.uxSuburb.MaxLength = 50;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSuburb);
			this.uxSuburb.Location = new System.Drawing.Point(160, 520);
			this.Controls.Add(this.uxSuburb);
			//
			// uxPostcodeLabel
			//
			this.uxPostcodeLabel.Name = "uxPostcodeLabel";
			this.uxPostcodeLabel.Text = "Postcode:";
			this.uxPostcodeLabel.Location = new System.Drawing.Point(3, 546);
			this.Controls.Add(this.uxPostcodeLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxPostcodeLabel);			
			//
			// uxPostcode
			//
			this.uxPostcode.Name = "uxPostcode";
			this.uxPostcode.Width = 250;
			this.uxPostcode.MaxLength = 4;
			//this.uxTableLayoutPanel.Controls.Add(this.uxPostcode);
			this.uxPostcode.Location = new System.Drawing.Point(160, 546);
			this.Controls.Add(this.uxPostcode);
			//
			// uxPhone1Label
			//
			this.uxPhone1Label.Name = "uxPhone1Label";
			this.uxPhone1Label.Text = "Phone1:";
			this.uxPhone1Label.Location = new System.Drawing.Point(3, 572);
			this.Controls.Add(this.uxPhone1Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhone1Label);			
			//
			// uxPhone1
			//
			this.uxPhone1.Name = "uxPhone1";
			this.uxPhone1.Width = 250;
			this.uxPhone1.MaxLength = 10;
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhone1);
			this.uxPhone1.Location = new System.Drawing.Point(160, 572);
			this.Controls.Add(this.uxPhone1);
			//
			// uxPhone2Label
			//
			this.uxPhone2Label.Name = "uxPhone2Label";
			this.uxPhone2Label.Text = "Phone2:";
			this.uxPhone2Label.Location = new System.Drawing.Point(3, 598);
			this.Controls.Add(this.uxPhone2Label);
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhone2Label);			
			//
			// uxPhone2
			//
			this.uxPhone2.Name = "uxPhone2";
			this.uxPhone2.Width = 250;
			this.uxPhone2.MaxLength = 10;
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhone2);
			this.uxPhone2.Location = new System.Drawing.Point(160, 598);
			this.Controls.Add(this.uxPhone2);
			//
			// uxSourceSystemLabel
			//
			this.uxSourceSystemLabel.Name = "uxSourceSystemLabel";
			this.uxSourceSystemLabel.Text = "Source System:";
			this.uxSourceSystemLabel.Location = new System.Drawing.Point(3, 624);
			this.Controls.Add(this.uxSourceSystemLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxSourceSystemLabel);			
			//
			// uxSourceSystem
			//
			this.uxSourceSystem.Name = "uxSourceSystem";
			this.uxSourceSystem.Width = 250;
			this.uxSourceSystem.MaxLength = 25;
			//this.uxTableLayoutPanel.Controls.Add(this.uxSourceSystem);
			this.uxSourceSystem.Location = new System.Drawing.Point(160, 624);
			this.Controls.Add(this.uxSourceSystem);
			//
			// uxPhoneticMatchIdLabel
			//
			this.uxPhoneticMatchIdLabel.Name = "uxPhoneticMatchIdLabel";
			this.uxPhoneticMatchIdLabel.Text = "Phonetic Match Id:";
			this.uxPhoneticMatchIdLabel.Location = new System.Drawing.Point(3, 650);
			this.Controls.Add(this.uxPhoneticMatchIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhoneticMatchIdLabel);			
			//
			// uxPhoneticMatchId
			//
			this.uxPhoneticMatchId.Name = "uxPhoneticMatchId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxPhoneticMatchId);
			this.uxPhoneticMatchId.Location = new System.Drawing.Point(160, 650);
			this.Controls.Add(this.uxPhoneticMatchId);
			// 
			// StudentMasterIndexEditControlBase
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			//this.Controls.Add(this.uxTableLayoutPanel);
			this.AutoScroll = true;
			this.Name = "StudentMasterIndexEditControlBase";
			this.Size = new System.Drawing.Size(478, 311);
			//this.Localizable = true;
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();			
			this.ResumeLayout(false);
			this.PerformLayout();
		}
		/// <summary>
		/// Initializes a new instance of the <see cref="CurrencyDataGridViewBase"/> class.
		/// </summary>
		public CurrencyDataGridViewBase()
		{			
			this.components = new System.ComponentModel.Container();			
			
			this.uxCurrencyDataGridView = new System.Windows.Forms.DataGridView();
			this.uxCurrencyBindingSource = new System.Windows.Forms.BindingSource(this.components);
			this.uxCurrencyErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxCurrencyCodeDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxNameDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.uxModifiedDateDataGridViewColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
			((System.ComponentModel.ISupportInitialize)(this.uxCurrencyDataGridView)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxCurrencyBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxCurrencyErrorProvider)).BeginInit();
			this.SuspendLayout();
						
			// 
			// uxCurrencyErrorProvider
			// 
			this.uxCurrencyErrorProvider.ContainerControl = this;
			this.uxCurrencyErrorProvider.DataSource = this.uxCurrencyBindingSource;						
			// 
			// uxCurrencyDataGridView
			// 
			this.uxCurrencyDataGridView.AutoGenerateColumns = false;
			this.uxCurrencyDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
			this.uxCurrencyDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
		this.uxCurrencyCodeDataGridViewColumn,
		this.uxNameDataGridViewColumn,
		this.uxModifiedDateDataGridViewColumn			});
			this.uxCurrencyDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
			this.uxCurrencyDataGridView.Location = new System.Drawing.Point(0, 0);
			this.uxCurrencyDataGridView.Name = "uxCurrencyDataGridView";
			this.uxCurrencyDataGridView.Size = new System.Drawing.Size(470, 300);
			this.uxCurrencyDataGridView.TabIndex = 0;	
			this.uxCurrencyDataGridView.BackgroundColor = System.Drawing.Color.WhiteSmoke;
			this.uxCurrencyDataGridView.EnableHeadersVisualStyles = false;
			this.uxCurrencyDataGridView.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.OnCurrencyDataGridViewDataError);
			this.uxCurrencyDataGridView.CellValueNeeded += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnCurrencyDataGridViewCellValueNeeded);
			this.uxCurrencyDataGridView.CellValuePushed += new System.Windows.Forms.DataGridViewCellValueEventHandler(this.OnCurrencyDataGridViewCellValuePushed);
			
			//
			// uxCurrencyCodeDataGridViewColumn
			//
			this.uxCurrencyCodeDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxCurrencyCodeDataGridViewColumn.DataPropertyName = "CurrencyCode";
			this.uxCurrencyCodeDataGridViewColumn.HeaderText = "CurrencyCode";
			this.uxCurrencyCodeDataGridViewColumn.Name = "uxCurrencyCodeDataGridViewColumn";
			this.uxCurrencyCodeDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxCurrencyCodeDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxCurrencyCodeDataGridViewColumn.ReadOnly = false;		
			//
			// uxNameDataGridViewColumn
			//
			this.uxNameDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxNameDataGridViewColumn.DataPropertyName = "Name";
			this.uxNameDataGridViewColumn.HeaderText = "Name";
			this.uxNameDataGridViewColumn.Name = "uxNameDataGridViewColumn";
			this.uxNameDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxNameDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxNameDataGridViewColumn.ReadOnly = false;		
			//
			// uxModifiedDateDataGridViewColumn
			//
			this.uxModifiedDateDataGridViewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
			this.uxModifiedDateDataGridViewColumn.DataPropertyName = "ModifiedDate";
			this.uxModifiedDateDataGridViewColumn.HeaderText = "ModifiedDate";
			this.uxModifiedDateDataGridViewColumn.Name = "uxModifiedDateDataGridViewColumn";
			this.uxModifiedDateDataGridViewColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
			this.uxModifiedDateDataGridViewColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
			this.uxModifiedDateDataGridViewColumn.ReadOnly = false;		
			
			// this
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.uxCurrencyDataGridView);
			this.Name = "CurrencyDataGridView";
			this.Size = new System.Drawing.Size(470, 300);
			((System.ComponentModel.ISupportInitialize)(this.uxCurrencyErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxCurrencyDataGridView)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxCurrencyBindingSource)).EndInit();
			this.ResumeLayout(false);
		}
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.dataGridView1 = new VSExtentionPlus.DataGridViewWithUndo();
     this.ColumnName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CodeName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel1 = new System.Windows.Forms.Panel();
     this.button2 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.panel2 = new System.Windows.Forms.Panel();
     this.textBox_ClassName = new VSExtentionPlus.TextBoxWithUndo();
     this.label1 = new System.Windows.Forms.Label();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.AllowUserToResizeRows = false;
     this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ColumnName,
     this.CodeName});
     this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView1.EnableUndo = false;
     this.dataGridView1.Location = new System.Drawing.Point(0, 40);
     this.dataGridView1.MultiSelect = false;
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.NameInUndoDescription = null;
     this.dataGridView1.RowTemplate.Height = 23;
     this.dataGridView1.Size = new System.Drawing.Size(450, 388);
     this.dataGridView1.TabIndex = 0;
     //
     // ColumnName
     //
     this.ColumnName.HeaderText = "列名称";
     this.ColumnName.Name = "ColumnName";
     this.ColumnName.ReadOnly = true;
     //
     // CodeName
     //
     this.CodeName.HeaderText = "代码属性名称";
     this.CodeName.Name = "CodeName";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.button2);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Enabled = false;
     this.panel1.Location = new System.Drawing.Point(0, 344);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(0, 0);
     this.panel1.TabIndex = 1;
     this.panel1.Visible = false;
     //
     // button2
     //
     this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button2.Enabled = false;
     this.button2.Location = new System.Drawing.Point(-272, -68);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(235, 23);
     this.button2.TabIndex = 1;
     this.button2.Text = "当前选择项使用汉语拼音做为代码属性名";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Visible = false;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button1
     //
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Enabled = false;
     this.button1.Location = new System.Drawing.Point(-371, -39);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(334, 23);
     this.button1.TabIndex = 0;
     this.button1.Text = "所有项使用汉语拼音做为代码属性名(仅作用于空代码名)";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Visible = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.textBox_ClassName);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(450, 40);
     this.panel2.TabIndex = 4;
     //
     // textBox_ClassName
     //
     this.textBox_ClassName.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox_ClassName.EnableUndo = false;
     this.textBox_ClassName.Location = new System.Drawing.Point(63, 10);
     this.textBox_ClassName.Name = "textBox_ClassName";
     this.textBox_ClassName.NameInUndoDescription = null;
     this.textBox_ClassName.Size = new System.Drawing.Size(355, 21);
     this.textBox_ClassName.TabIndex = 1;
     this.textBox_ClassName.Validating += new System.ComponentModel.CancelEventHandler(this.textBox_ClassName_Validating);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(16, 13);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(41, 12);
     this.label1.TabIndex = 0;
     this.label1.Text = "类名称";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // UISheet
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name = "UISheet";
     this.Size = new System.Drawing.Size(450, 428);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
		/// <summary>
		/// Initializes the component.
		/// </summary>
		public void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);
			
			//this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			this.uxProductId = new System.Windows.Forms.ComboBox();
			uxProductIdLabel = new System.Windows.Forms.Label();
			this.uxVendorId = new System.Windows.Forms.ComboBox();
			uxVendorIdLabel = new System.Windows.Forms.Label();
			this.uxAverageLeadTime = new System.Windows.Forms.TextBox();
			uxAverageLeadTimeLabel = new System.Windows.Forms.Label();
			this.uxStandardPrice = new System.Windows.Forms.TextBox();
			uxStandardPriceLabel = new System.Windows.Forms.Label();
			this.uxLastReceiptCost = new System.Windows.Forms.TextBox();
			uxLastReceiptCostLabel = new System.Windows.Forms.Label();
			this.uxLastReceiptDate = new System.Windows.Forms.DateTimePicker();
			uxLastReceiptDateLabel = new System.Windows.Forms.Label();
			this.uxMinOrderQty = new System.Windows.Forms.TextBox();
			uxMinOrderQtyLabel = new System.Windows.Forms.Label();
			this.uxMaxOrderQty = new System.Windows.Forms.TextBox();
			uxMaxOrderQtyLabel = new System.Windows.Forms.Label();
			this.uxOnOrderQty = new System.Windows.Forms.TextBox();
			uxOnOrderQtyLabel = new System.Windows.Forms.Label();
			this.uxUnitMeasureCode = new System.Windows.Forms.ComboBox();
			uxUnitMeasureCodeLabel = new System.Windows.Forms.Label();
			this.uxModifiedDate = new System.Windows.Forms.DateTimePicker();
			uxModifiedDateLabel = new System.Windows.Forms.Label();
			
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
			this.SuspendLayout();
			
			// 
			// uxTableLayoutPanel
			// 
			//this.uxTableLayoutPanel.AutoSize = true;
			//this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			//this.uxTableLayoutPanel.ColumnCount = 2;
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
			//this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
			//this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
			//this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
			//this.uxTableLayoutPanel.RowCount = 2;
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
			//this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
			//this.uxTableLayoutPanel.TabIndex = 0;
			
			//
			// uxErrorProvider
			//
			this.uxErrorProvider.ContainerControl = this;
			this.uxErrorProvider.DataSource = this.uxBindingSource;
			
			//
			// uxProductIdLabel
			//
			this.uxProductIdLabel.Name = "uxProductIdLabel";
			this.uxProductIdLabel.Text = "Product Id:";
			this.uxProductIdLabel.Location = new System.Drawing.Point(3, 0);
			this.Controls.Add(this.uxProductIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxProductIdLabel);			
			//
			// uxProductId
			//
			this.uxProductId.Name = "uxProductId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxProductId);
			this.uxProductId.Location = new System.Drawing.Point(160, 0);
			this.Controls.Add(this.uxProductId);
			//
			// uxVendorIdLabel
			//
			this.uxVendorIdLabel.Name = "uxVendorIdLabel";
			this.uxVendorIdLabel.Text = "Vendor Id:";
			this.uxVendorIdLabel.Location = new System.Drawing.Point(3, 26);
			this.Controls.Add(this.uxVendorIdLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxVendorIdLabel);			
			//
			// uxVendorId
			//
			this.uxVendorId.Name = "uxVendorId";
			//this.uxTableLayoutPanel.Controls.Add(this.uxVendorId);
			this.uxVendorId.Location = new System.Drawing.Point(160, 26);
			this.Controls.Add(this.uxVendorId);
			//
			// uxAverageLeadTimeLabel
			//
			this.uxAverageLeadTimeLabel.Name = "uxAverageLeadTimeLabel";
			this.uxAverageLeadTimeLabel.Text = "Average Lead Time:";
			this.uxAverageLeadTimeLabel.Location = new System.Drawing.Point(3, 52);
			this.Controls.Add(this.uxAverageLeadTimeLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxAverageLeadTimeLabel);			
			//
			// uxAverageLeadTime
			//
			this.uxAverageLeadTime.Name = "uxAverageLeadTime";
			//this.uxTableLayoutPanel.Controls.Add(this.uxAverageLeadTime);
			this.uxAverageLeadTime.Location = new System.Drawing.Point(160, 52);
			this.Controls.Add(this.uxAverageLeadTime);
			//
			// uxStandardPriceLabel
			//
			this.uxStandardPriceLabel.Name = "uxStandardPriceLabel";
			this.uxStandardPriceLabel.Text = "Standard Price:";
			this.uxStandardPriceLabel.Location = new System.Drawing.Point(3, 78);
			this.Controls.Add(this.uxStandardPriceLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxStandardPriceLabel);			
			//
			// uxStandardPrice
			//
			this.uxStandardPrice.Name = "uxStandardPrice";
			//this.uxTableLayoutPanel.Controls.Add(this.uxStandardPrice);
			this.uxStandardPrice.Location = new System.Drawing.Point(160, 78);
			this.Controls.Add(this.uxStandardPrice);
			//
			// uxLastReceiptCostLabel
			//
			this.uxLastReceiptCostLabel.Name = "uxLastReceiptCostLabel";
			this.uxLastReceiptCostLabel.Text = "Last Receipt Cost:";
			this.uxLastReceiptCostLabel.Location = new System.Drawing.Point(3, 104);
			this.Controls.Add(this.uxLastReceiptCostLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxLastReceiptCostLabel);			
			//
			// uxLastReceiptCost
			//
			this.uxLastReceiptCost.Name = "uxLastReceiptCost";
			//this.uxTableLayoutPanel.Controls.Add(this.uxLastReceiptCost);
			this.uxLastReceiptCost.Location = new System.Drawing.Point(160, 104);
			this.Controls.Add(this.uxLastReceiptCost);
			//
			// uxLastReceiptDateLabel
			//
			this.uxLastReceiptDateLabel.Name = "uxLastReceiptDateLabel";
			this.uxLastReceiptDateLabel.Text = "Last Receipt Date:";
			this.uxLastReceiptDateLabel.Location = new System.Drawing.Point(3, 130);
			this.Controls.Add(this.uxLastReceiptDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxLastReceiptDateLabel);			
			//
			// uxLastReceiptDate
			//
			this.uxLastReceiptDate.Name = "uxLastReceiptDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxLastReceiptDate);
			this.uxLastReceiptDate.Location = new System.Drawing.Point(160, 130);
			this.Controls.Add(this.uxLastReceiptDate);
			//
			// uxMinOrderQtyLabel
			//
			this.uxMinOrderQtyLabel.Name = "uxMinOrderQtyLabel";
			this.uxMinOrderQtyLabel.Text = "Min Order Qty:";
			this.uxMinOrderQtyLabel.Location = new System.Drawing.Point(3, 156);
			this.Controls.Add(this.uxMinOrderQtyLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxMinOrderQtyLabel);			
			//
			// uxMinOrderQty
			//
			this.uxMinOrderQty.Name = "uxMinOrderQty";
			//this.uxTableLayoutPanel.Controls.Add(this.uxMinOrderQty);
			this.uxMinOrderQty.Location = new System.Drawing.Point(160, 156);
			this.Controls.Add(this.uxMinOrderQty);
			//
			// uxMaxOrderQtyLabel
			//
			this.uxMaxOrderQtyLabel.Name = "uxMaxOrderQtyLabel";
			this.uxMaxOrderQtyLabel.Text = "Max Order Qty:";
			this.uxMaxOrderQtyLabel.Location = new System.Drawing.Point(3, 182);
			this.Controls.Add(this.uxMaxOrderQtyLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxMaxOrderQtyLabel);			
			//
			// uxMaxOrderQty
			//
			this.uxMaxOrderQty.Name = "uxMaxOrderQty";
			//this.uxTableLayoutPanel.Controls.Add(this.uxMaxOrderQty);
			this.uxMaxOrderQty.Location = new System.Drawing.Point(160, 182);
			this.Controls.Add(this.uxMaxOrderQty);
			//
			// uxOnOrderQtyLabel
			//
			this.uxOnOrderQtyLabel.Name = "uxOnOrderQtyLabel";
			this.uxOnOrderQtyLabel.Text = "On Order Qty:";
			this.uxOnOrderQtyLabel.Location = new System.Drawing.Point(3, 208);
			this.Controls.Add(this.uxOnOrderQtyLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxOnOrderQtyLabel);			
			//
			// uxOnOrderQty
			//
			this.uxOnOrderQty.Name = "uxOnOrderQty";
			//this.uxTableLayoutPanel.Controls.Add(this.uxOnOrderQty);
			this.uxOnOrderQty.Location = new System.Drawing.Point(160, 208);
			this.Controls.Add(this.uxOnOrderQty);
			//
			// uxUnitMeasureCodeLabel
			//
			this.uxUnitMeasureCodeLabel.Name = "uxUnitMeasureCodeLabel";
			this.uxUnitMeasureCodeLabel.Text = "Unit Measure Code:";
			this.uxUnitMeasureCodeLabel.Location = new System.Drawing.Point(3, 234);
			this.Controls.Add(this.uxUnitMeasureCodeLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxUnitMeasureCodeLabel);			
			//
			// uxUnitMeasureCode
			//
			this.uxUnitMeasureCode.Name = "uxUnitMeasureCode";
			//this.uxTableLayoutPanel.Controls.Add(this.uxUnitMeasureCode);
			this.uxUnitMeasureCode.Location = new System.Drawing.Point(160, 234);
			this.Controls.Add(this.uxUnitMeasureCode);
			//
			// uxModifiedDateLabel
			//
			this.uxModifiedDateLabel.Name = "uxModifiedDateLabel";
			this.uxModifiedDateLabel.Text = "Modified Date:";
			this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 260);
			this.Controls.Add(this.uxModifiedDateLabel);
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);			
			//
			// uxModifiedDate
			//
			this.uxModifiedDate.Name = "uxModifiedDate";
			//this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
			this.uxModifiedDate.Location = new System.Drawing.Point(160, 260);
			this.Controls.Add(this.uxModifiedDate);
			//
			// uxProductId
			//				
			this.uxProductId.DisplayMember = "Name";	
			this.uxProductId.ValueMember = "ProductId";	
			//
			// uxUnitMeasureCode
			//				
			this.uxUnitMeasureCode.DisplayMember = "Name";	
			this.uxUnitMeasureCode.ValueMember = "UnitMeasureCode";	
			//
			// uxVendorId
			//				
			this.uxVendorId.DisplayMember = "AccountNumber";	
			this.uxVendorId.ValueMember = "VendorId";	
			// 
			// ProductVendorEditControlBase
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			//this.Controls.Add(this.uxTableLayoutPanel);
			this.AutoScroll = true;
			this.Name = "ProductVendorEditControlBase";
			this.Size = new System.Drawing.Size(478, 311);
			//this.Localizable = true;
			((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();			
			this.ResumeLayout(false);
			this.PerformLayout();
		}
        /// <summary>
        /// Initializes the component.
        /// </summary>
        public void InitializeComponent()
        {
            this.components      = new System.ComponentModel.Container();
            this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);

            //this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.uxPurchaseOrderId = new System.Windows.Forms.TextBox();
            uxPurchaseOrderIdLabel = new System.Windows.Forms.Label();
            this.uxRevisionNumber  = new System.Windows.Forms.TextBox();
            uxRevisionNumberLabel  = new System.Windows.Forms.Label();
            this.uxStatus          = new System.Windows.Forms.TextBox();
            uxStatusLabel          = new System.Windows.Forms.Label();
            this.uxEmployeeId      = new System.Windows.Forms.ComboBox();
            uxEmployeeIdLabel      = new System.Windows.Forms.Label();
            this.uxVendorId        = new System.Windows.Forms.ComboBox();
            uxVendorIdLabel        = new System.Windows.Forms.Label();
            this.uxShipMethodId    = new System.Windows.Forms.ComboBox();
            uxShipMethodIdLabel    = new System.Windows.Forms.Label();
            this.uxOrderDate       = new System.Windows.Forms.DateTimePicker();
            uxOrderDateLabel       = new System.Windows.Forms.Label();
            this.uxShipDate        = new System.Windows.Forms.DateTimePicker();
            uxShipDateLabel        = new System.Windows.Forms.Label();
            this.uxSubTotal        = new System.Windows.Forms.TextBox();
            uxSubTotalLabel        = new System.Windows.Forms.Label();
            this.uxTaxAmt          = new System.Windows.Forms.TextBox();
            uxTaxAmtLabel          = new System.Windows.Forms.Label();
            this.uxFreight         = new System.Windows.Forms.TextBox();
            uxFreightLabel         = new System.Windows.Forms.Label();
            this.uxTotalDue        = new System.Windows.Forms.TextBox();
            uxTotalDueLabel        = new System.Windows.Forms.Label();
            this.uxModifiedDate    = new System.Windows.Forms.DateTimePicker();
            uxModifiedDateLabel    = new System.Windows.Forms.Label();

            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTableLayoutPanel
            //
            //this.uxTableLayoutPanel.AutoSize = true;
            //this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            //this.uxTableLayoutPanel.ColumnCount = 2;
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
            //this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
            //this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
            //this.uxTableLayoutPanel.RowCount = 2;
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
            //this.uxTableLayoutPanel.TabIndex = 0;

            //
            // uxErrorProvider
            //
            this.uxErrorProvider.ContainerControl = this;
            this.uxErrorProvider.DataSource       = this.uxBindingSource;

            //
            // uxPurchaseOrderIdLabel
            //
            this.uxPurchaseOrderIdLabel.Name     = "uxPurchaseOrderIdLabel";
            this.uxPurchaseOrderIdLabel.Text     = "Purchase Order Id:";
            this.uxPurchaseOrderIdLabel.Location = new System.Drawing.Point(3, 0);
            this.Controls.Add(this.uxPurchaseOrderIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxPurchaseOrderIdLabel);
            //
            // uxPurchaseOrderId
            //
            this.uxPurchaseOrderId.Name     = "uxPurchaseOrderId";
            this.uxPurchaseOrderId.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxPurchaseOrderId);
            this.uxPurchaseOrderId.Location = new System.Drawing.Point(160, 0);
            this.Controls.Add(this.uxPurchaseOrderId);
            //
            // uxRevisionNumberLabel
            //
            this.uxRevisionNumberLabel.Name     = "uxRevisionNumberLabel";
            this.uxRevisionNumberLabel.Text     = "Revision Number:";
            this.uxRevisionNumberLabel.Location = new System.Drawing.Point(3, 26);
            this.Controls.Add(this.uxRevisionNumberLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxRevisionNumberLabel);
            //
            // uxRevisionNumber
            //
            this.uxRevisionNumber.Name = "uxRevisionNumber";
            //this.uxTableLayoutPanel.Controls.Add(this.uxRevisionNumber);
            this.uxRevisionNumber.Location = new System.Drawing.Point(160, 26);
            this.Controls.Add(this.uxRevisionNumber);
            //
            // uxStatusLabel
            //
            this.uxStatusLabel.Name     = "uxStatusLabel";
            this.uxStatusLabel.Text     = "Status:";
            this.uxStatusLabel.Location = new System.Drawing.Point(3, 52);
            this.Controls.Add(this.uxStatusLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxStatusLabel);
            //
            // uxStatus
            //
            this.uxStatus.Name = "uxStatus";
            //this.uxTableLayoutPanel.Controls.Add(this.uxStatus);
            this.uxStatus.Location = new System.Drawing.Point(160, 52);
            this.Controls.Add(this.uxStatus);
            //
            // uxEmployeeIdLabel
            //
            this.uxEmployeeIdLabel.Name     = "uxEmployeeIdLabel";
            this.uxEmployeeIdLabel.Text     = "Employee Id:";
            this.uxEmployeeIdLabel.Location = new System.Drawing.Point(3, 78);
            this.Controls.Add(this.uxEmployeeIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxEmployeeIdLabel);
            //
            // uxEmployeeId
            //
            this.uxEmployeeId.Name = "uxEmployeeId";
            //this.uxTableLayoutPanel.Controls.Add(this.uxEmployeeId);
            this.uxEmployeeId.Location = new System.Drawing.Point(160, 78);
            this.Controls.Add(this.uxEmployeeId);
            //
            // uxVendorIdLabel
            //
            this.uxVendorIdLabel.Name     = "uxVendorIdLabel";
            this.uxVendorIdLabel.Text     = "Vendor Id:";
            this.uxVendorIdLabel.Location = new System.Drawing.Point(3, 104);
            this.Controls.Add(this.uxVendorIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxVendorIdLabel);
            //
            // uxVendorId
            //
            this.uxVendorId.Name = "uxVendorId";
            //this.uxTableLayoutPanel.Controls.Add(this.uxVendorId);
            this.uxVendorId.Location = new System.Drawing.Point(160, 104);
            this.Controls.Add(this.uxVendorId);
            //
            // uxShipMethodIdLabel
            //
            this.uxShipMethodIdLabel.Name     = "uxShipMethodIdLabel";
            this.uxShipMethodIdLabel.Text     = "Ship Method Id:";
            this.uxShipMethodIdLabel.Location = new System.Drawing.Point(3, 130);
            this.Controls.Add(this.uxShipMethodIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxShipMethodIdLabel);
            //
            // uxShipMethodId
            //
            this.uxShipMethodId.Name = "uxShipMethodId";
            //this.uxTableLayoutPanel.Controls.Add(this.uxShipMethodId);
            this.uxShipMethodId.Location = new System.Drawing.Point(160, 130);
            this.Controls.Add(this.uxShipMethodId);
            //
            // uxOrderDateLabel
            //
            this.uxOrderDateLabel.Name     = "uxOrderDateLabel";
            this.uxOrderDateLabel.Text     = "Order Date:";
            this.uxOrderDateLabel.Location = new System.Drawing.Point(3, 156);
            this.Controls.Add(this.uxOrderDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxOrderDateLabel);
            //
            // uxOrderDate
            //
            this.uxOrderDate.Name = "uxOrderDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxOrderDate);
            this.uxOrderDate.Location = new System.Drawing.Point(160, 156);
            this.Controls.Add(this.uxOrderDate);
            //
            // uxShipDateLabel
            //
            this.uxShipDateLabel.Name     = "uxShipDateLabel";
            this.uxShipDateLabel.Text     = "Ship Date:";
            this.uxShipDateLabel.Location = new System.Drawing.Point(3, 182);
            this.Controls.Add(this.uxShipDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxShipDateLabel);
            //
            // uxShipDate
            //
            this.uxShipDate.Name = "uxShipDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxShipDate);
            this.uxShipDate.Location = new System.Drawing.Point(160, 182);
            this.Controls.Add(this.uxShipDate);
            //
            // uxSubTotalLabel
            //
            this.uxSubTotalLabel.Name     = "uxSubTotalLabel";
            this.uxSubTotalLabel.Text     = "Sub Total:";
            this.uxSubTotalLabel.Location = new System.Drawing.Point(3, 208);
            this.Controls.Add(this.uxSubTotalLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxSubTotalLabel);
            //
            // uxSubTotal
            //
            this.uxSubTotal.Name = "uxSubTotal";
            //this.uxTableLayoutPanel.Controls.Add(this.uxSubTotal);
            this.uxSubTotal.Location = new System.Drawing.Point(160, 208);
            this.Controls.Add(this.uxSubTotal);
            //
            // uxTaxAmtLabel
            //
            this.uxTaxAmtLabel.Name     = "uxTaxAmtLabel";
            this.uxTaxAmtLabel.Text     = "Tax Amt:";
            this.uxTaxAmtLabel.Location = new System.Drawing.Point(3, 234);
            this.Controls.Add(this.uxTaxAmtLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxTaxAmtLabel);
            //
            // uxTaxAmt
            //
            this.uxTaxAmt.Name = "uxTaxAmt";
            //this.uxTableLayoutPanel.Controls.Add(this.uxTaxAmt);
            this.uxTaxAmt.Location = new System.Drawing.Point(160, 234);
            this.Controls.Add(this.uxTaxAmt);
            //
            // uxFreightLabel
            //
            this.uxFreightLabel.Name     = "uxFreightLabel";
            this.uxFreightLabel.Text     = "Freight:";
            this.uxFreightLabel.Location = new System.Drawing.Point(3, 260);
            this.Controls.Add(this.uxFreightLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxFreightLabel);
            //
            // uxFreight
            //
            this.uxFreight.Name = "uxFreight";
            //this.uxTableLayoutPanel.Controls.Add(this.uxFreight);
            this.uxFreight.Location = new System.Drawing.Point(160, 260);
            this.Controls.Add(this.uxFreight);
            //
            // uxTotalDueLabel
            //
            this.uxTotalDueLabel.Name     = "uxTotalDueLabel";
            this.uxTotalDueLabel.Text     = "Total Due:";
            this.uxTotalDueLabel.Location = new System.Drawing.Point(3, 286);
            this.Controls.Add(this.uxTotalDueLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxTotalDueLabel);
            //
            // uxTotalDue
            //
            this.uxTotalDue.Name     = "uxTotalDue";
            this.uxTotalDue.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxTotalDue);
            this.uxTotalDue.Location = new System.Drawing.Point(160, 286);
            this.Controls.Add(this.uxTotalDue);
            //
            // uxModifiedDateLabel
            //
            this.uxModifiedDateLabel.Name     = "uxModifiedDateLabel";
            this.uxModifiedDateLabel.Text     = "Modified Date:";
            this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 312);
            this.Controls.Add(this.uxModifiedDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);
            //
            // uxModifiedDate
            //
            this.uxModifiedDate.Name = "uxModifiedDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
            this.uxModifiedDate.Location = new System.Drawing.Point(160, 312);
            this.Controls.Add(this.uxModifiedDate);
            //
            // uxEmployeeId
            //
            this.uxEmployeeId.DisplayMember = "NationalIdNumber";
            this.uxEmployeeId.ValueMember   = "EmployeeId";
            //
            // uxShipMethodId
            //
            this.uxShipMethodId.DisplayMember = "Name";
            this.uxShipMethodId.ValueMember   = "ShipMethodId";
            //
            // uxVendorId
            //
            this.uxVendorId.DisplayMember = "AccountNumber";
            this.uxVendorId.ValueMember   = "VendorId";
            //
            // PurchaseOrderHeaderEditControlBase
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            //this.Controls.Add(this.uxTableLayoutPanel);
            this.AutoScroll = true;
            this.Name       = "PurchaseOrderHeaderEditControlBase";
            this.Size       = new System.Drawing.Size(478, 311);
            //this.Localizable = true;
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components                = new System.ComponentModel.Container();
     this.button1                   = new System.Windows.Forms.Button();
     this.label1                    = new System.Windows.Forms.Label();
     this.label2                    = new System.Windows.Forms.Label();
     this.openFileDialog1           = new System.Windows.Forms.OpenFileDialog();
     this.button2                   = new System.Windows.Forms.Button();
     this.button3                   = new System.Windows.Forms.Button();
     this.errorProvider1            = new System.Windows.Forms.ErrorProvider(this.components);
     this.label3                    = new System.Windows.Forms.Label();
     this.textBox1                  = new System.Windows.Forms.TextBox();
     this.label4                    = new System.Windows.Forms.Label();
     this.backgroundWorker_buborek  = new System.ComponentModel.BackgroundWorker();
     this.backgroundWorker_rendezes = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(197, 33);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 0;
     this.button1.Text     = "rendez";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // label1
     //
     this.label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label1.Location    = new System.Drawing.Point(140, 83);
     this.label1.Name        = "label1";
     this.label1.Size        = new System.Drawing.Size(173, 169);
     this.label1.TabIndex    = 1;
     //
     // label2
     //
     this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label2.Location    = new System.Drawing.Point(12, 83);
     this.label2.Name        = "label2";
     this.label2.Size        = new System.Drawing.Size(122, 169);
     this.label2.TabIndex    = 2;
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     this.openFileDialog1.FileOk  += new System.ComponentModel.CancelEventHandler(this.OpenFileDialog1FileOk);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(104, 33);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 3;
     this.button2.Text     = "megnyit";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.Button2Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(12, 33);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(75, 23);
     this.button3.TabIndex = 4;
     this.button3.Text     = "generál";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.Button3Click);
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // label3
     //
     this.label3.ForeColor = System.Drawing.Color.Red;
     this.label3.Location  = new System.Drawing.Point(93, 9);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(179, 18);
     this.label3.TabIndex  = 5;
     this.label3.Click    += new System.EventHandler(this.Label3Click);
     //
     // textBox1
     //
     this.textBox1.Location     = new System.Drawing.Point(12, 7);
     this.textBox1.Name         = "textBox1";
     this.textBox1.Size         = new System.Drawing.Size(75, 20);
     this.textBox1.TabIndex     = 6;
     this.textBox1.TextChanged += new System.EventHandler(this.TextBox1TextChanged);
     //
     // label4
     //
     this.label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label4.Location    = new System.Drawing.Point(319, 83);
     this.label4.Name        = "label4";
     this.label4.Size        = new System.Drawing.Size(170, 169);
     this.label4.TabIndex    = 7;
     //
     // backgroundWorker_buborek
     //
     this.backgroundWorker_buborek.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.BackgroundWorker_buborekDoWork);
     this.backgroundWorker_buborek.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.BackgroundWorker_buborekRunWorkerCompleted);
     //
     // backgroundWorker_rendezes
     //
     this.backgroundWorker_rendezes.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.BackgroundWorker_rendezesDoWork);
     this.backgroundWorker_rendezes.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.BackgroundWorker_rendezesRunWorkerCompleted);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(501, 261);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.button3);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.button1);
     this.Name = "MainForm";
     this.Text = "hazi1";
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Initializes the component.
        /// </summary>
        public void InitializeComponent()
        {
            this.components      = new System.ComponentModel.Container();
            this.uxErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.uxBindingSource = new System.Windows.Forms.BindingSource(this.components);

            //this.uxTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.uxCreditCardId = new System.Windows.Forms.TextBox();
            uxCreditCardIdLabel = new System.Windows.Forms.Label();
            this.uxCardType     = new System.Windows.Forms.TextBox();
            uxCardTypeLabel     = new System.Windows.Forms.Label();
            this.uxCardNumber   = new System.Windows.Forms.TextBox();
            uxCardNumberLabel   = new System.Windows.Forms.Label();
            this.uxExpMonth     = new System.Windows.Forms.TextBox();
            uxExpMonthLabel     = new System.Windows.Forms.Label();
            this.uxExpYear      = new System.Windows.Forms.TextBox();
            uxExpYearLabel      = new System.Windows.Forms.Label();
            this.uxModifiedDate = new System.Windows.Forms.DateTimePicker();
            uxModifiedDateLabel = new System.Windows.Forms.Label();

            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).BeginInit();
            this.SuspendLayout();

            //
            // uxTableLayoutPanel
            //
            //this.uxTableLayoutPanel.AutoSize = true;
            //this.uxTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            //this.uxTableLayoutPanel.ColumnCount = 2;
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
            //this.uxTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 250F));
            //this.uxTableLayoutPanel.Location = new System.Drawing.System.Drawing.Point(3, 3);
            //this.uxTableLayoutPanel.Name = "uxTableLayoutPanel";
            //this.uxTableLayoutPanel.RowCount = 2;
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
            //this.uxTableLayoutPanel.Size = new System.Drawing.Size(450, 50);
            //this.uxTableLayoutPanel.TabIndex = 0;

            //
            // uxErrorProvider
            //
            this.uxErrorProvider.ContainerControl = this;
            this.uxErrorProvider.DataSource       = this.uxBindingSource;

            //
            // uxCreditCardIdLabel
            //
            this.uxCreditCardIdLabel.Name     = "uxCreditCardIdLabel";
            this.uxCreditCardIdLabel.Text     = "Credit Card Id:";
            this.uxCreditCardIdLabel.Location = new System.Drawing.Point(3, 0);
            this.Controls.Add(this.uxCreditCardIdLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxCreditCardIdLabel);
            //
            // uxCreditCardId
            //
            this.uxCreditCardId.Name     = "uxCreditCardId";
            this.uxCreditCardId.ReadOnly = true;
            //this.uxTableLayoutPanel.Controls.Add(this.uxCreditCardId);
            this.uxCreditCardId.Location = new System.Drawing.Point(160, 0);
            this.Controls.Add(this.uxCreditCardId);
            //
            // uxCardTypeLabel
            //
            this.uxCardTypeLabel.Name     = "uxCardTypeLabel";
            this.uxCardTypeLabel.Text     = "Card Type:";
            this.uxCardTypeLabel.Location = new System.Drawing.Point(3, 26);
            this.Controls.Add(this.uxCardTypeLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxCardTypeLabel);
            //
            // uxCardType
            //
            this.uxCardType.Name      = "uxCardType";
            this.uxCardType.Width     = 250;
            this.uxCardType.MaxLength = 50;
            //this.uxTableLayoutPanel.Controls.Add(this.uxCardType);
            this.uxCardType.Location = new System.Drawing.Point(160, 26);
            this.Controls.Add(this.uxCardType);
            //
            // uxCardNumberLabel
            //
            this.uxCardNumberLabel.Name     = "uxCardNumberLabel";
            this.uxCardNumberLabel.Text     = "Card Number:";
            this.uxCardNumberLabel.Location = new System.Drawing.Point(3, 52);
            this.Controls.Add(this.uxCardNumberLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxCardNumberLabel);
            //
            // uxCardNumber
            //
            this.uxCardNumber.Name      = "uxCardNumber";
            this.uxCardNumber.Width     = 250;
            this.uxCardNumber.MaxLength = 25;
            //this.uxTableLayoutPanel.Controls.Add(this.uxCardNumber);
            this.uxCardNumber.Location = new System.Drawing.Point(160, 52);
            this.Controls.Add(this.uxCardNumber);
            //
            // uxExpMonthLabel
            //
            this.uxExpMonthLabel.Name     = "uxExpMonthLabel";
            this.uxExpMonthLabel.Text     = "Exp Month:";
            this.uxExpMonthLabel.Location = new System.Drawing.Point(3, 78);
            this.Controls.Add(this.uxExpMonthLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxExpMonthLabel);
            //
            // uxExpMonth
            //
            this.uxExpMonth.Name = "uxExpMonth";
            //this.uxTableLayoutPanel.Controls.Add(this.uxExpMonth);
            this.uxExpMonth.Location = new System.Drawing.Point(160, 78);
            this.Controls.Add(this.uxExpMonth);
            //
            // uxExpYearLabel
            //
            this.uxExpYearLabel.Name     = "uxExpYearLabel";
            this.uxExpYearLabel.Text     = "Exp Year:";
            this.uxExpYearLabel.Location = new System.Drawing.Point(3, 104);
            this.Controls.Add(this.uxExpYearLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxExpYearLabel);
            //
            // uxExpYear
            //
            this.uxExpYear.Name = "uxExpYear";
            //this.uxTableLayoutPanel.Controls.Add(this.uxExpYear);
            this.uxExpYear.Location = new System.Drawing.Point(160, 104);
            this.Controls.Add(this.uxExpYear);
            //
            // uxModifiedDateLabel
            //
            this.uxModifiedDateLabel.Name     = "uxModifiedDateLabel";
            this.uxModifiedDateLabel.Text     = "Modified Date:";
            this.uxModifiedDateLabel.Location = new System.Drawing.Point(3, 130);
            this.Controls.Add(this.uxModifiedDateLabel);
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDateLabel);
            //
            // uxModifiedDate
            //
            this.uxModifiedDate.Name = "uxModifiedDate";
            //this.uxTableLayoutPanel.Controls.Add(this.uxModifiedDate);
            this.uxModifiedDate.Location = new System.Drawing.Point(160, 130);
            this.Controls.Add(this.uxModifiedDate);
            //
            // CreditCardEditControlBase
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            //this.Controls.Add(this.uxTableLayoutPanel);
            this.AutoScroll = true;
            this.Name       = "CreditCardEditControlBase";
            this.Size       = new System.Drawing.Size(478, 311);
            //this.Localizable = true;
            ((System.ComponentModel.ISupportInitialize)(this.uxErrorProvider)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.uxBindingSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_Quanly_Maukiemnghiem));
     Janus.Windows.GridEX.GridEXLayout grdAssignDetail_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel1 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel2 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel3 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel4 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.UI.StatusBar.UIStatusBarPanel uiStatusBarPanel5 = new Janus.Windows.UI.StatusBar.UIStatusBarPanel();
     Janus.Windows.GridEX.GridEXLayout grdList_DesignTimeLayout = new Janus.Windows.GridEX.GridEXLayout();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.cmdThemMoiBN = new System.Windows.Forms.ToolStripButton();
     this.cmdSuaThongTinBN = new System.Windows.Forms.ToolStripButton();
     this.cmdThemLanKham = new System.Windows.Forms.ToolStripButton();
     this.cmdXoaBenhNhan = new System.Windows.Forms.ToolStripButton();
     this.cmdExit = new System.Windows.Forms.ToolStripButton();
     this.grdAssignDetail = new Janus.Windows.GridEX.GridEX();
     this.uiGroupBox3 = new Janus.Windows.EditControls.UIGroupBox();
     this.cmdPrintAssign = new Janus.Windows.EditControls.UIButton();
     this.chkIntach = new System.Windows.Forms.CheckBox();
     this.cboServicePrint = new System.Windows.Forms.ComboBox();
     this.cmdXoaChiDinh = new Janus.Windows.EditControls.UIButton();
     this.cmdSuaChiDinh = new Janus.Windows.EditControls.UIButton();
     this.cmdThemChiDinh = new Janus.Windows.EditControls.UIButton();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuMaDVu = new System.Windows.Forms.ToolStripMenuItem();
     this.uiStatusBar1 = new Janus.Windows.UI.StatusBar.UIStatusBar();
     this.uiGroupBox1 = new Janus.Windows.EditControls.UIGroupBox();
     this.cboObjectType = new Janus.Windows.EditControls.UIComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtPatientCode = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txtPatient_ID = new Janus.Windows.GridEX.EditControls.MaskedEditBox();
     this.Label7 = new System.Windows.Forms.Label();
     this.txtPatientName = new Janus.Windows.GridEX.EditControls.EditBox();
     this.label3 = new System.Windows.Forms.Label();
     this.dtmTo = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.dtmFrom = new Janus.Windows.CalendarCombo.CalendarCombo();
     this.chkByDate = new System.Windows.Forms.CheckBox();
     this.Label1 = new System.Windows.Forms.Label();
     this.cmdTimKiem = new Janus.Windows.EditControls.UIButton();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.panel2 = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.grdList = new Janus.Windows.GridEX.GridEX();
     this.cmdBangiao = new System.Windows.Forms.ToolStripButton();
     this.cmdInKQ = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).BeginInit();
     this.uiGroupBox3.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).BeginInit();
     this.uiGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.BackColor = System.Drawing.SystemColors.Control;
     this.toolStrip1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cmdThemMoiBN,
     this.cmdSuaThongTinBN,
     this.cmdThemLanKham,
     this.cmdXoaBenhNhan,
     this.cmdBangiao,
     this.cmdInKQ,
     this.cmdExit});
     this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1018, 31);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text = "toolStrip1";
     //
     // cmdThemMoiBN
     //
     this.cmdThemMoiBN.BackColor = System.Drawing.SystemColors.Control;
     this.cmdThemMoiBN.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdThemMoiBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemMoiBN.Image")));
     this.cmdThemMoiBN.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdThemMoiBN.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdThemMoiBN.Name = "cmdThemMoiBN";
     this.cmdThemMoiBN.Size = new System.Drawing.Size(136, 28);
     this.cmdThemMoiBN.Text = "Thêm Khách hàng";
     this.cmdThemMoiBN.ToolTipText = "Nhấn vào đây để tiếp đón Bệnh nhân mới";
     //
     // cmdSuaThongTinBN
     //
     this.cmdSuaThongTinBN.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdSuaThongTinBN.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaThongTinBN.Image")));
     this.cmdSuaThongTinBN.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdSuaThongTinBN.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdSuaThongTinBN.Name = "cmdSuaThongTinBN";
     this.cmdSuaThongTinBN.Size = new System.Drawing.Size(127, 28);
     this.cmdSuaThongTinBN.Text = "Sửa Khách hàng";
     this.cmdSuaThongTinBN.ToolTipText = "Nhấn vào nút này để sửa thông tin Bệnh nhân đang chọn trên lưới";
     //
     // cmdThemLanKham
     //
     this.cmdThemLanKham.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdThemLanKham.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemLanKham.Image")));
     this.cmdThemLanKham.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdThemLanKham.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdThemLanKham.Name = "cmdThemLanKham";
     this.cmdThemLanKham.Size = new System.Drawing.Size(112, 28);
     this.cmdThemLanKham.Text = "Thêm đăng ký";
     this.cmdThemLanKham.ToolTipText = "Nhấn nút này để thêm lần khám cho Bệnh nhân đang chọn trên lưới";
     //
     // cmdXoaBenhNhan
     //
     this.cmdXoaBenhNhan.Font = new System.Drawing.Font("Arial", 9F);
     this.cmdXoaBenhNhan.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaBenhNhan.Image")));
     this.cmdXoaBenhNhan.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdXoaBenhNhan.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdXoaBenhNhan.Name = "cmdXoaBenhNhan";
     this.cmdXoaBenhNhan.Size = new System.Drawing.Size(101, 28);
     this.cmdXoaBenhNhan.Text = "Xóa đăng ký";
     this.cmdXoaBenhNhan.ToolTipText = "Nhấn nút này để xóa lần khám của Bệnh nhân đang chọn trên lưới";
     //
     // cmdExit
     //
     this.cmdExit.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdExit.Image = ((System.Drawing.Image)(resources.GetObject("cmdExit.Image")));
     this.cmdExit.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.cmdExit.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdExit.Name = "cmdExit";
     this.cmdExit.Size = new System.Drawing.Size(118, 28);
     this.cmdExit.Text = "Đóng chức năng";
     this.cmdExit.ToolTipText = "Nhấn nút này để thoát khỏi chức năng ";
     //
     // grdAssignDetail
     //
     this.grdAssignDetail.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdAssignDetail.BackColor = System.Drawing.Color.Silver;
     grdAssignDetail_DesignTimeLayout.LayoutString = resources.GetString("grdAssignDetail_DesignTimeLayout.LayoutString");
     this.grdAssignDetail.DesignTimeLayout = grdAssignDetail_DesignTimeLayout;
     this.grdAssignDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdAssignDetail.Font = new System.Drawing.Font("Arial", 9F);
     this.grdAssignDetail.GroupByBoxVisible = false;
     this.grdAssignDetail.GroupTotals = Janus.Windows.GridEX.GroupTotals.Always;
     this.grdAssignDetail.Location = new System.Drawing.Point(0, 0);
     this.grdAssignDetail.Name = "grdAssignDetail";
     this.grdAssignDetail.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdAssignDetail.Size = new System.Drawing.Size(406, 520);
     this.grdAssignDetail.TabIndex = 0;
     this.grdAssignDetail.TabStop = false;
     this.grdAssignDetail.TotalRow = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdAssignDetail.TotalRowFormatStyle.BackColor = System.Drawing.Color.White;
     this.grdAssignDetail.TotalRowPosition = Janus.Windows.GridEX.TotalRowPosition.BottomFixed;
     this.grdAssignDetail.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // uiGroupBox3
     //
     this.uiGroupBox3.Controls.Add(this.cmdPrintAssign);
     this.uiGroupBox3.Controls.Add(this.chkIntach);
     this.uiGroupBox3.Controls.Add(this.cboServicePrint);
     this.uiGroupBox3.Controls.Add(this.cmdXoaChiDinh);
     this.uiGroupBox3.Controls.Add(this.cmdSuaChiDinh);
     this.uiGroupBox3.Controls.Add(this.cmdThemChiDinh);
     this.uiGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.uiGroupBox3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox3.Location = new System.Drawing.Point(0, 520);
     this.uiGroupBox3.Name = "uiGroupBox3";
     this.uiGroupBox3.Size = new System.Drawing.Size(406, 91);
     this.uiGroupBox3.TabIndex = 0;
     //
     // cmdPrintAssign
     //
     this.cmdPrintAssign.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdPrintAssign.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdPrintAssign.Image = ((System.Drawing.Image)(resources.GetObject("cmdPrintAssign.Image")));
     this.cmdPrintAssign.ImageSize = new System.Drawing.Size(24, 24);
     this.cmdPrintAssign.Location = new System.Drawing.Point(322, 57);
     this.cmdPrintAssign.Name = "cmdPrintAssign";
     this.cmdPrintAssign.Size = new System.Drawing.Size(85, 28);
     this.cmdPrintAssign.TabIndex = 706;
     this.cmdPrintAssign.Text = "In";
     this.toolTip1.SetToolTip(this.cmdPrintAssign, "Nhấn vào đây để in phiếu CLS(Phím tắt Ctrl+P)");
     //
     // chkIntach
     //
     this.chkIntach.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkIntach.AutoSize = true;
     this.chkIntach.Location = new System.Drawing.Point(6, 15);
     this.chkIntach.Name = "chkIntach";
     this.chkIntach.Size = new System.Drawing.Size(69, 19);
     this.chkIntach.TabIndex = 705;
     this.chkIntach.Text = "In tách?";
     this.chkIntach.UseVisualStyleBackColor = true;
     //
     // cboServicePrint
     //
     this.cboServicePrint.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cboServicePrint.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboServicePrint.FormattingEnabled = true;
     this.cboServicePrint.Location = new System.Drawing.Point(82, 11);
     this.cboServicePrint.Name = "cboServicePrint";
     this.cboServicePrint.Size = new System.Drawing.Size(318, 23);
     this.cboServicePrint.TabIndex = 704;
     //
     // cmdXoaChiDinh
     //
     this.cmdXoaChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdXoaChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdXoaChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdXoaChiDinh.Image")));
     this.cmdXoaChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdXoaChiDinh.Location = new System.Drawing.Point(232, 57);
     this.cmdXoaChiDinh.Name = "cmdXoaChiDinh";
     this.cmdXoaChiDinh.Size = new System.Drawing.Size(85, 29);
     this.cmdXoaChiDinh.TabIndex = 702;
     this.cmdXoaChiDinh.TabStop = false;
     this.cmdXoaChiDinh.Text = "Xóa";
     //
     // cmdSuaChiDinh
     //
     this.cmdSuaChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSuaChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdSuaChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdSuaChiDinh.Image")));
     this.cmdSuaChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdSuaChiDinh.Location = new System.Drawing.Point(141, 57);
     this.cmdSuaChiDinh.Name = "cmdSuaChiDinh";
     this.cmdSuaChiDinh.Size = new System.Drawing.Size(85, 29);
     this.cmdSuaChiDinh.TabIndex = 701;
     this.cmdSuaChiDinh.TabStop = false;
     this.cmdSuaChiDinh.Text = "Sửa";
     //
     // cmdThemChiDinh
     //
     this.cmdThemChiDinh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdThemChiDinh.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdThemChiDinh.Image = ((System.Drawing.Image)(resources.GetObject("cmdThemChiDinh.Image")));
     this.cmdThemChiDinh.ImageSize = new System.Drawing.Size(18, 18);
     this.cmdThemChiDinh.Location = new System.Drawing.Point(50, 56);
     this.cmdThemChiDinh.Name = "cmdThemChiDinh";
     this.cmdThemChiDinh.Size = new System.Drawing.Size(85, 29);
     this.cmdThemChiDinh.TabIndex = 700;
     this.cmdThemChiDinh.TabStop = false;
     this.cmdThemChiDinh.Text = "Thêm";
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuMaDVu});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(280, 26);
     //
     // mnuMaDVu
     //
     this.mnuMaDVu.CheckOnClick = true;
     this.mnuMaDVu.Name = "mnuMaDVu";
     this.mnuMaDVu.Size = new System.Drawing.Size(279, 22);
     this.mnuMaDVu.Text = "Đăng ký dịch vụ KCB bằng cách gõ mã";
     //
     // uiStatusBar1
     //
     this.uiStatusBar1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiStatusBar1.Location = new System.Drawing.Point(0, 713);
     this.uiStatusBar1.Name = "uiStatusBar1";
     uiStatusBarPanel1.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel1.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel1.Key = "";
     uiStatusBarPanel1.ProgressBarValue = 0;
     uiStatusBarPanel1.Text = "Ctrl+N: Thêm mới";
     uiStatusBarPanel1.Width = 113;
     uiStatusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel2.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel2.Key = "";
     uiStatusBarPanel2.ProgressBarValue = 0;
     uiStatusBarPanel2.Text = "Ctrl+U: Cập nhật";
     uiStatusBarPanel2.Width = 106;
     uiStatusBarPanel3.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel3.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel3.Key = "";
     uiStatusBarPanel3.ProgressBarValue = 0;
     uiStatusBarPanel3.Text = "Ctrl+D: Xóa";
     uiStatusBarPanel3.Width = 77;
     uiStatusBarPanel4.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel4.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel4.Key = "";
     uiStatusBarPanel4.ProgressBarValue = 0;
     uiStatusBarPanel4.Text = "Ctrl+K: Thêm khám";
     uiStatusBarPanel4.Width = 121;
     uiStatusBarPanel5.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
     uiStatusBarPanel5.BorderColor = System.Drawing.Color.Empty;
     uiStatusBarPanel5.Key = "";
     uiStatusBarPanel5.ProgressBarValue = 0;
     uiStatusBarPanel5.Text = "Esc: Thoát Form";
     uiStatusBarPanel5.Width = 105;
     this.uiStatusBar1.Panels.AddRange(new Janus.Windows.UI.StatusBar.UIStatusBarPanel[] {
     uiStatusBarPanel1,
     uiStatusBarPanel2,
     uiStatusBarPanel3,
     uiStatusBarPanel4,
     uiStatusBarPanel5});
     this.uiStatusBar1.Size = new System.Drawing.Size(1018, 27);
     this.uiStatusBar1.TabIndex = 7;
     this.uiStatusBar1.TabStop = false;
     this.uiStatusBar1.VisualStyle = Janus.Windows.UI.VisualStyle.OfficeXP;
     //
     // uiGroupBox1
     //
     this.uiGroupBox1.Controls.Add(this.cboObjectType);
     this.uiGroupBox1.Controls.Add(this.label4);
     this.uiGroupBox1.Controls.Add(this.txtPatientCode);
     this.uiGroupBox1.Controls.Add(this.label2);
     this.uiGroupBox1.Controls.Add(this.txtPatient_ID);
     this.uiGroupBox1.Controls.Add(this.Label7);
     this.uiGroupBox1.Controls.Add(this.txtPatientName);
     this.uiGroupBox1.Controls.Add(this.label3);
     this.uiGroupBox1.Controls.Add(this.dtmTo);
     this.uiGroupBox1.Controls.Add(this.dtmFrom);
     this.uiGroupBox1.Controls.Add(this.chkByDate);
     this.uiGroupBox1.Controls.Add(this.Label1);
     this.uiGroupBox1.Controls.Add(this.cmdTimKiem);
     this.uiGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.uiGroupBox1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.uiGroupBox1.Location = new System.Drawing.Point(0, 31);
     this.uiGroupBox1.Name = "uiGroupBox1";
     this.uiGroupBox1.Size = new System.Drawing.Size(1018, 71);
     this.uiGroupBox1.TabIndex = 1;
     //
     // cboObjectType
     //
     this.cboObjectType.Location = new System.Drawing.Point(551, 43);
     this.cboObjectType.Name = "cboObjectType";
     this.cboObjectType.Size = new System.Drawing.Size(301, 21);
     this.cboObjectType.TabIndex = 5;
     this.cboObjectType.TabStop = false;
     this.cboObjectType.Text = "Đối tượng";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(631, 18);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(68, 15);
     this.label4.TabIndex = 518;
     this.label4.Text = "Mã đăng ký";
     //
     // txtPatientCode
     //
     this.txtPatientCode.BackColor = System.Drawing.Color.White;
     this.txtPatientCode.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatientCode.Location = new System.Drawing.Point(714, 14);
     this.txtPatientCode.Name = "txtPatientCode";
     this.txtPatientCode.Size = new System.Drawing.Size(138, 21);
     this.txtPatientCode.TabIndex = 3;
     this.txtPatientCode.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(457, 18);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(88, 15);
     this.label2.TabIndex = 516;
     this.label2.Text = "ID Khách hàng";
     //
     // txtPatient_ID
     //
     this.txtPatient_ID.BackColor = System.Drawing.Color.White;
     this.txtPatient_ID.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatient_ID.Location = new System.Drawing.Point(551, 14);
     this.txtPatient_ID.Name = "txtPatient_ID";
     this.txtPatient_ID.Numeric = true;
     this.txtPatient_ID.Size = new System.Drawing.Size(76, 21);
     this.txtPatient_ID.TabIndex = 2;
     this.txtPatient_ID.TextAlignment = Janus.Windows.GridEX.TextAlignment.Center;
     //
     // Label7
     //
     this.Label7.AutoSize = true;
     this.Label7.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label7.Location = new System.Drawing.Point(457, 48);
     this.Label7.Name = "Label7";
     this.Label7.Size = new System.Drawing.Size(62, 15);
     this.Label7.TabIndex = 514;
     this.Label7.Text = "Đối tượng";
     //
     // txtPatientName
     //
     this.txtPatientName.BackColor = System.Drawing.Color.White;
     this.txtPatientName.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPatientName.Location = new System.Drawing.Point(137, 42);
     this.txtPatientName.Name = "txtPatientName";
     this.txtPatientName.Size = new System.Drawing.Size(313, 23);
     this.txtPatientName.TabIndex = 4;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Location = new System.Drawing.Point(23, 45);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(103, 15);
     this.label3.TabIndex = 511;
     this.label3.Text = "Tên Khách hàng :";
     //
     // dtmTo
     //
     this.dtmTo.CustomFormat = "dd/MM/yyyy";
     this.dtmTo.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtmTo.DropDownCalendar.Name = "";
     this.dtmTo.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Standard;
     this.dtmTo.Location = new System.Drawing.Point(320, 15);
     this.dtmTo.MinDate = new System.DateTime(1900, 2, 1, 0, 0, 0, 0);
     this.dtmTo.Name = "dtmTo";
     this.dtmTo.ShowUpDown = true;
     this.dtmTo.Size = new System.Drawing.Size(130, 21);
     this.dtmTo.TabIndex = 1;
     this.dtmTo.Value = new System.DateTime(2011, 10, 20, 0, 0, 0, 0);
     //
     // dtmFrom
     //
     this.dtmFrom.CustomFormat = "dd/MM/yyyy";
     this.dtmFrom.DateFormat = Janus.Windows.CalendarCombo.DateFormat.Custom;
     //
     //
     //
     this.dtmFrom.DropDownCalendar.Name = "";
     this.dtmFrom.DropDownCalendar.VisualStyle = Janus.Windows.CalendarCombo.VisualStyle.Standard;
     this.dtmFrom.Location = new System.Drawing.Point(137, 15);
     this.dtmFrom.MinDate = new System.DateTime(1900, 2, 1, 0, 0, 0, 0);
     this.dtmFrom.Name = "dtmFrom";
     this.dtmFrom.ShowUpDown = true;
     this.dtmFrom.Size = new System.Drawing.Size(117, 21);
     this.dtmFrom.TabIndex = 0;
     this.dtmFrom.Value = new System.DateTime(2011, 10, 20, 0, 0, 0, 0);
     //
     // chkByDate
     //
     this.chkByDate.AutoSize = true;
     this.chkByDate.Checked = true;
     this.chkByDate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkByDate.Location = new System.Drawing.Point(15, 15);
     this.chkByDate.Name = "chkByDate";
     this.chkByDate.Size = new System.Drawing.Size(116, 19);
     this.chkByDate.TabIndex = 241;
     this.chkByDate.Text = "Ngày nhận mẫu:";
     this.chkByDate.UseVisualStyleBackColor = true;
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.ForeColor = System.Drawing.Color.Black;
     this.Label1.Location = new System.Drawing.Point(260, 20);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(59, 15);
     this.Label1.TabIndex = 240;
     this.Label1.Text = "Đến ngày";
     //
     // cmdTimKiem
     //
     this.cmdTimKiem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdTimKiem.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdTimKiem.Image = ((System.Drawing.Image)(resources.GetObject("cmdTimKiem.Image")));
     this.cmdTimKiem.ImageSize = new System.Drawing.Size(32, 32);
     this.cmdTimKiem.Location = new System.Drawing.Point(875, 14);
     this.cmdTimKiem.Name = "cmdTimKiem";
     this.cmdTimKiem.Size = new System.Drawing.Size(131, 51);
     this.cmdTimKiem.TabIndex = 6;
     this.cmdTimKiem.Text = "Tìm kiếm (F3)";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // toolTip1
     //
     this.toolTip1.IsBalloon = true;
     this.toolTip1.ToolTipTitle = "Trợ giúp nhanh:";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.grdAssignDetail);
     this.panel2.Controls.Add(this.uiGroupBox3);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel2.Location = new System.Drawing.Point(612, 102);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(406, 611);
     this.panel2.TabIndex = 548;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.grdList);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 102);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(612, 611);
     this.panel1.TabIndex = 549;
     //
     // grdList
     //
     this.grdList.AllowEdit = Janus.Windows.GridEX.InheritableBoolean.False;
     this.grdList.BackColor = System.Drawing.Color.Silver;
     this.grdList.BuiltInTextsData = "<LocalizableData ID=\"LocalizableStrings\" Collection=\"true\"><FilterRowInfoText>Lọc" +
     " thông tin bệnh nhân</FilterRowInfoText></LocalizableData>";
     grdList_DesignTimeLayout.LayoutString = resources.GetString("grdList_DesignTimeLayout.LayoutString");
     this.grdList.DesignTimeLayout = grdList_DesignTimeLayout;
     this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdList.DynamicFiltering = true;
     this.grdList.FilterMode = Janus.Windows.GridEX.FilterMode.Automatic;
     this.grdList.FocusCellDisplayMode = Janus.Windows.GridEX.FocusCellDisplayMode.UseSelectedFormatStyle;
     this.grdList.FocusCellFormatStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.grdList.FocusCellFormatStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.grdList.FocusCellFormatStyle.FontBold = Janus.Windows.GridEX.TriState.True;
     this.grdList.Font = new System.Drawing.Font("Arial", 9F);
     this.grdList.FrozenColumns = 4;
     this.grdList.GroupByBoxVisible = false;
     this.grdList.HideSelection = Janus.Windows.GridEX.HideSelection.Highlight;
     this.grdList.Location = new System.Drawing.Point(0, 0);
     this.grdList.Name = "grdList";
     this.grdList.RecordNavigator = true;
     this.grdList.RowHeaders = Janus.Windows.GridEX.InheritableBoolean.True;
     this.grdList.SelectedFormatStyle.BackColor = System.Drawing.Color.SteelBlue;
     this.grdList.Size = new System.Drawing.Size(612, 611);
     this.grdList.TabIndex = 0;
     this.grdList.TabStop = false;
     this.grdList.VisualStyle = Janus.Windows.GridEX.VisualStyle.VS2005;
     //
     // cmdBangiao
     //
     this.cmdBangiao.Image = ((System.Drawing.Image)(resources.GetObject("cmdBangiao.Image")));
     this.cmdBangiao.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdBangiao.Name = "cmdBangiao";
     this.cmdBangiao.Size = new System.Drawing.Size(104, 28);
     this.cmdBangiao.Text = "Bàn giao mẫu";
     //
     // cmdInKQ
     //
     this.cmdInKQ.Image = ((System.Drawing.Image)(resources.GetObject("cmdInKQ.Image")));
     this.cmdInKQ.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cmdInKQ.Name = "cmdInKQ";
     this.cmdInKQ.Size = new System.Drawing.Size(80, 28);
     this.cmdInKQ.Text = "In kết quả";
     //
     // frm_Quanly_Maukiemnghiem
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(1018, 740);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.uiStatusBar1);
     this.Controls.Add(this.uiGroupBox1);
     this.Controls.Add(this.toolStrip1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frm_Quanly_Maukiemnghiem";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Quản lý thông tin mẫu kiểm nghiệm";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdAssignDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox3)).EndInit();
     this.uiGroupBox3.ResumeLayout(false);
     this.uiGroupBox3.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.uiGroupBox1)).EndInit();
     this.uiGroupBox1.ResumeLayout(false);
     this.uiGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPermisos));
     this.kryptonHeader1 = new ComponentFactory.Krypton.Toolkit.KryptonHeader();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.dgvUsuarios = new ComponentFactory.Krypton.Toolkit.KryptonDataGridView();
     this.usuarioBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.usuarioBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.kryptonPanel1 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.gbxInformacion = new System.Windows.Forms.GroupBox();
     this.chkEsPrincipal = new ComponentFactory.Krypton.Toolkit.KryptonCheckBox();
     this.kryptonLabel2 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel1 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.dtpFechaRegistro = new ComponentFactory.Krypton.Toolkit.KryptonDateTimePicker();
     this.cmbEmpleados = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.txtPassword = new ExactTarget.Windows.Controles.CustomKryptonTextBox();
     this.txtUsername = new ExactTarget.Windows.Controles.CustomKryptonTextBox();
     this.label6 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.label3 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.label2 = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.TsMenu = new System.Windows.Forms.ToolStrip();
     this.TsbNuevo = new System.Windows.Forms.ToolStripButton();
     this.TsbEditar = new System.Windows.Forms.ToolStripButton();
     this.TsbEliminar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.TsbGuardar = new System.Windows.Forms.ToolStripButton();
     this.TsbCancelar = new System.Windows.Forms.ToolStripButton();
     this.perUsuario = new ExactTarget.Windows.Controles.PermisosFormulario();
     this.errValidator = new System.Windows.Forms.ErrorProvider(this.components);
     this.usuarioIDDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usernameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.passwordDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.esPrincipalDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.fechaRegistroDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.personalDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.permisosBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.personalBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvUsuarios)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingNavigator)).BeginInit();
     this.usuarioBindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.gbxInformacion.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEmpleados)).BeginInit();
     this.TsMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errValidator)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.permisosBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.personalBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonHeader1
     //
     this.kryptonHeader1.Dock = System.Windows.Forms.DockStyle.Top;
     this.kryptonHeader1.Location = new System.Drawing.Point(0, 0);
     this.kryptonHeader1.Name = "kryptonHeader1";
     this.kryptonHeader1.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonHeader1.Size = new System.Drawing.Size(753, 31);
     this.kryptonHeader1.TabIndex = 0;
     this.kryptonHeader1.Text = "Permisos de Usuario";
     this.kryptonHeader1.Values.Description = "";
     this.kryptonHeader1.Values.Heading = "Permisos de Usuario";
     this.kryptonHeader1.Values.Image = null;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 31);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.perUsuario);
     this.splitContainer1.Size = new System.Drawing.Size(753, 480);
     this.splitContainer1.SplitterDistance = 236;
     this.splitContainer1.TabIndex = 1;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(0, 0);
     this.splitContainer2.Name = "splitContainer2";
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.AutoScroll = true;
     this.splitContainer2.Panel1.Controls.Add(this.dgvUsuarios);
     this.splitContainer2.Panel1.Controls.Add(this.usuarioBindingNavigator);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.kryptonPanel1);
     this.splitContainer2.Panel2.Controls.Add(this.TsMenu);
     this.splitContainer2.Size = new System.Drawing.Size(753, 236);
     this.splitContainer2.SplitterDistance = 274;
     this.splitContainer2.TabIndex = 0;
     //
     // dgvUsuarios
     //
     this.dgvUsuarios.AllowUserToAddRows = false;
     this.dgvUsuarios.AllowUserToDeleteRows = false;
     this.dgvUsuarios.AutoGenerateColumns = false;
     this.dgvUsuarios.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.usuarioIDDataGridViewTextBoxColumn,
     this.usernameDataGridViewTextBoxColumn,
     this.passwordDataGridViewTextBoxColumn,
     this.esPrincipalDataGridViewCheckBoxColumn,
     this.fechaRegistroDataGridViewTextBoxColumn,
     this.personalDataGridViewTextBoxColumn});
     this.dgvUsuarios.DataSource = this.usuarioBindingSource;
     this.dgvUsuarios.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvUsuarios.GridStyles.Style = ComponentFactory.Krypton.Toolkit.DataGridViewStyle.Sheet;
     this.dgvUsuarios.GridStyles.StyleBackground = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.GridBackgroundSheet;
     this.dgvUsuarios.GridStyles.StyleColumn = ComponentFactory.Krypton.Toolkit.GridStyle.Sheet;
     this.dgvUsuarios.GridStyles.StyleDataCells = ComponentFactory.Krypton.Toolkit.GridStyle.Sheet;
     this.dgvUsuarios.GridStyles.StyleRow = ComponentFactory.Krypton.Toolkit.GridStyle.Sheet;
     this.dgvUsuarios.Location = new System.Drawing.Point(0, 25);
     this.dgvUsuarios.Name = "dgvUsuarios";
     this.dgvUsuarios.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.dgvUsuarios.ReadOnly = true;
     this.dgvUsuarios.RowHeadersWidth = 10;
     this.dgvUsuarios.Size = new System.Drawing.Size(274, 211);
     this.dgvUsuarios.StateCommon.BackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.GridBackgroundSheet;
     this.dgvUsuarios.TabIndex = 0;
     this.dgvUsuarios.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvUsuarios_CellEnter);
     //
     // usuarioBindingSource
     //
     this.usuarioBindingSource.DataSource = typeof(ExactTarget.Business.Entities.Usuario);
     //
     // usuarioBindingNavigator
     //
     this.usuarioBindingNavigator.AddNewItem = null;
     this.usuarioBindingNavigator.BindingSource = this.usuarioBindingSource;
     this.usuarioBindingNavigator.CountItem = this.bindingNavigatorCountItem;
     this.usuarioBindingNavigator.DeleteItem = null;
     this.usuarioBindingNavigator.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.usuarioBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem});
     this.usuarioBindingNavigator.Location = new System.Drawing.Point(0, 0);
     this.usuarioBindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.usuarioBindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.usuarioBindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.usuarioBindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.usuarioBindingNavigator.Name = "usuarioBindingNavigator";
     this.usuarioBindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
     this.usuarioBindingNavigator.Size = new System.Drawing.Size(274, 25);
     this.usuarioBindingNavigator.TabIndex = 2;
     this.usuarioBindingNavigator.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.gbxInformacion);
     this.kryptonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 25);
     this.kryptonPanel1.Name = "kryptonPanel1";
     this.kryptonPanel1.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonPanel1.PanelBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.PanelClient;
     this.kryptonPanel1.Size = new System.Drawing.Size(475, 211);
     this.kryptonPanel1.TabIndex = 3;
     //
     // gbxInformacion
     //
     this.gbxInformacion.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gbxInformacion.BackColor = System.Drawing.Color.Transparent;
     this.gbxInformacion.Controls.Add(this.chkEsPrincipal);
     this.gbxInformacion.Controls.Add(this.kryptonLabel2);
     this.gbxInformacion.Controls.Add(this.kryptonLabel1);
     this.gbxInformacion.Controls.Add(this.dtpFechaRegistro);
     this.gbxInformacion.Controls.Add(this.cmbEmpleados);
     this.gbxInformacion.Controls.Add(this.txtPassword);
     this.gbxInformacion.Controls.Add(this.txtUsername);
     this.gbxInformacion.Controls.Add(this.label6);
     this.gbxInformacion.Controls.Add(this.label3);
     this.gbxInformacion.Controls.Add(this.label2);
     this.gbxInformacion.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbxInformacion.ForeColor = System.Drawing.Color.Navy;
     this.gbxInformacion.Location = new System.Drawing.Point(14, 14);
     this.gbxInformacion.Name = "gbxInformacion";
     this.gbxInformacion.Size = new System.Drawing.Size(449, 183);
     this.gbxInformacion.TabIndex = 2;
     this.gbxInformacion.TabStop = false;
     this.gbxInformacion.Text = "Datos Usuario";
     //
     // chkEsPrincipal
     //
     this.chkEsPrincipal.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.chkEsPrincipal.Location = new System.Drawing.Point(117, 137);
     this.chkEsPrincipal.Name = "chkEsPrincipal";
     this.chkEsPrincipal.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.chkEsPrincipal.Size = new System.Drawing.Size(19, 13);
     this.chkEsPrincipal.TabIndex = 31;
     this.chkEsPrincipal.Values.ExtraText = "";
     this.chkEsPrincipal.Values.Image = null;
     this.chkEsPrincipal.Values.Text = "";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.kryptonLabel2.Location = new System.Drawing.Point(19, 135);
     this.kryptonLabel2.Name = "kryptonLabel2";
     this.kryptonLabel2.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonLabel2.Size = new System.Drawing.Size(91, 20);
     this.kryptonLabel2.TabIndex = 30;
     this.kryptonLabel2.Text = "Administrador:";
     this.kryptonLabel2.Values.ExtraText = "";
     this.kryptonLabel2.Values.Image = null;
     this.kryptonLabel2.Values.Text = "Administrador:";
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.kryptonLabel1.Location = new System.Drawing.Point(19, 109);
     this.kryptonLabel1.Name = "kryptonLabel1";
     this.kryptonLabel1.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.kryptonLabel1.Size = new System.Drawing.Size(93, 20);
     this.kryptonLabel1.TabIndex = 29;
     this.kryptonLabel1.Text = "Fecha Registro:";
     this.kryptonLabel1.Values.ExtraText = "";
     this.kryptonLabel1.Values.Image = null;
     this.kryptonLabel1.Values.Text = "Fecha Registro:";
     //
     // dtpFechaRegistro
     //
     this.dtpFechaRegistro.CalendarDayOfWeekStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.CalendarDay;
     this.dtpFechaRegistro.CalendarDayStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.CalendarDay;
     this.dtpFechaRegistro.CalendarHeaderStyle = ComponentFactory.Krypton.Toolkit.HeaderStyle.Calendar;
     this.dtpFechaRegistro.CalendarTodayDate = new System.DateTime(2010, 4, 28, 0, 0, 0, 0);
     this.dtpFechaRegistro.DropButtonStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.InputControl;
     this.dtpFechaRegistro.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this.dtpFechaRegistro.Location = new System.Drawing.Point(115, 106);
     this.dtpFechaRegistro.Name = "dtpFechaRegistro";
     this.dtpFechaRegistro.Size = new System.Drawing.Size(204, 21);
     this.dtpFechaRegistro.TabIndex = 28;
     this.dtpFechaRegistro.UpDownButtonStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.InputControl;
     //
     // cmbEmpleados
     //
     this.cmbEmpleados.DataSource = this.personalBindingSource;
     this.cmbEmpleados.DisplayMember = "nombreCompleto";
     this.cmbEmpleados.DropBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlClient;
     this.cmbEmpleados.DropButtonStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.InputControl;
     this.cmbEmpleados.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbEmpleados.DropDownWidth = 258;
     this.cmbEmpleados.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this.cmbEmpleados.ItemStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.ListItem;
     this.cmbEmpleados.Location = new System.Drawing.Point(115, 25);
     this.cmbEmpleados.Name = "cmbEmpleados";
     this.cmbEmpleados.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.cmbEmpleados.Size = new System.Drawing.Size(301, 21);
     this.cmbEmpleados.TabIndex = 27;
     this.cmbEmpleados.ValueMember = "personalID";
     //
     // txtPassword
     //
     this.txtPassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPassword.BackColorEnter = System.Drawing.SystemColors.Window;
     this.txtPassword.BackColorLeave = System.Drawing.SystemColors.Window;
     this.txtPassword.DataType = ExactTarget.Windows.Controles.DataType.Alfanumerico;
     this.txtPassword.ForeColorEnter = System.Drawing.SystemColors.WindowText;
     this.txtPassword.ForeColorLeave = System.Drawing.SystemColors.WindowText;
     this.txtPassword.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this.txtPassword.IsMayusculas = false;
     this.txtPassword.Location = new System.Drawing.Point(115, 80);
     this.txtPassword.MaxValue = 0;
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.NumberDecimals = 3;
     this.txtPassword.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Office2007Blue;
     this.txtPassword.Size = new System.Drawing.Size(213, 20);
     this.txtPassword.TabIndex = 23;
     //
     // txtUsername
     //
     this.txtUsername.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtUsername.BackColorEnter = System.Drawing.SystemColors.Window;
     this.txtUsername.BackColorLeave = System.Drawing.SystemColors.Window;
     this.txtUsername.DataType = ExactTarget.Windows.Controles.DataType.Alfanumerico;
     this.txtUsername.ForeColorEnter = System.Drawing.SystemColors.WindowText;
     this.txtUsername.ForeColorLeave = System.Drawing.SystemColors.WindowText;
     this.txtUsername.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this.txtUsername.IsMayusculas = false;
     this.txtUsername.Location = new System.Drawing.Point(115, 54);
     this.txtUsername.MaxValue = 0;
     this.txtUsername.Name = "txtUsername";
     this.txtUsername.NumberDecimals = 3;
     this.txtUsername.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Office2007Blue;
     this.txtUsername.Size = new System.Drawing.Size(213, 20);
     this.txtUsername.TabIndex = 22;
     //
     // label6
     //
     this.label6.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.label6.Location = new System.Drawing.Point(19, 83);
     this.label6.Name = "label6";
     this.label6.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.label6.Size = new System.Drawing.Size(65, 20);
     this.label6.TabIndex = 10;
     this.label6.Text = "Password:"******"";
     this.label6.Values.Image = null;
     this.label6.Values.Text = "Password:"******"label3";
     this.label3.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.label3.Size = new System.Drawing.Size(55, 20);
     this.label3.TabIndex = 4;
     this.label3.Text = "Usuario:";
     this.label3.Values.ExtraText = "";
     this.label3.Values.Image = null;
     this.label3.Values.Text = "Usuario:";
     //
     // label2
     //
     this.label2.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.label2.Location = new System.Drawing.Point(19, 28);
     this.label2.Name = "label2";
     this.label2.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.Global;
     this.label2.Size = new System.Drawing.Size(68, 20);
     this.label2.TabIndex = 2;
     this.label2.Text = "Empleado:";
     this.label2.Values.ExtraText = "";
     this.label2.Values.Image = null;
     this.label2.Values.Text = "Empleado:";
     //
     // TsMenu
     //
     this.TsMenu.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.TsMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TsbNuevo,
     this.TsbEditar,
     this.TsbEliminar,
     this.toolStripSeparator,
     this.TsbGuardar,
     this.TsbCancelar});
     this.TsMenu.Location = new System.Drawing.Point(0, 0);
     this.TsMenu.Name = "TsMenu";
     this.TsMenu.Size = new System.Drawing.Size(475, 25);
     this.TsMenu.TabIndex = 2;
     this.TsMenu.Text = "Barra de Menu";
     //
     // TsbNuevo
     //
     this.TsbNuevo.Image = global::ExactTarget.Windows.Properties.Resources.Add1;
     this.TsbNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbNuevo.Name = "TsbNuevo";
     this.TsbNuevo.Size = new System.Drawing.Size(62, 22);
     this.TsbNuevo.Text = "&Nuevo";
     this.TsbNuevo.Click += new System.EventHandler(this.TsbNuevo_Click);
     //
     // TsbEditar
     //
     this.TsbEditar.Image = global::ExactTarget.Windows.Properties.Resources.Modify1;
     this.TsbEditar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbEditar.Name = "TsbEditar";
     this.TsbEditar.Size = new System.Drawing.Size(57, 22);
     this.TsbEditar.Text = "E&ditar";
     this.TsbEditar.Click += new System.EventHandler(this.TsbEditar_Click);
     //
     // TsbEliminar
     //
     this.TsbEliminar.Image = global::ExactTarget.Windows.Properties.Resources.Delete1;
     this.TsbEliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbEliminar.Name = "TsbEliminar";
     this.TsbEliminar.Size = new System.Drawing.Size(70, 22);
     this.TsbEliminar.Text = "&Eliminar";
     this.TsbEliminar.Click += new System.EventHandler(this.TsbEliminar_Click);
     //
     // toolStripSeparator
     //
     this.toolStripSeparator.Name = "toolStripSeparator";
     this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // TsbGuardar
     //
     this.TsbGuardar.Image = global::ExactTarget.Windows.Properties.Resources.Save1;
     this.TsbGuardar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbGuardar.Name = "TsbGuardar";
     this.TsbGuardar.Size = new System.Drawing.Size(69, 22);
     this.TsbGuardar.Text = "&Guardar";
     this.TsbGuardar.Click += new System.EventHandler(this.TsbGuardar_Click);
     //
     // TsbCancelar
     //
     this.TsbCancelar.Image = global::ExactTarget.Windows.Properties.Resources.Back1;
     this.TsbCancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TsbCancelar.Name = "TsbCancelar";
     this.TsbCancelar.Size = new System.Drawing.Size(73, 22);
     this.TsbCancelar.Text = "&Cancelar";
     this.TsbCancelar.Click += new System.EventHandler(this.TsbCancelar_Click);
     //
     // perUsuario
     //
     this.perUsuario.Dock = System.Windows.Forms.DockStyle.Fill;
     this.perUsuario.EnabledPermisos = true;
     this.perUsuario.Location = new System.Drawing.Point(0, 0);
     this.perUsuario.Name = "perUsuario";
     this.perUsuario.PersonaID = ((short)(0));
     this.perUsuario.Size = new System.Drawing.Size(753, 240);
     this.perUsuario.TabIndex = 0;
     //
     // errValidator
     //
     this.errValidator.ContainerControl = this;
     //
     // usuarioIDDataGridViewTextBoxColumn
     //
     this.usuarioIDDataGridViewTextBoxColumn.DataPropertyName = "usuarioID";
     this.usuarioIDDataGridViewTextBoxColumn.HeaderText = "usuarioID";
     this.usuarioIDDataGridViewTextBoxColumn.Name = "usuarioIDDataGridViewTextBoxColumn";
     this.usuarioIDDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // usernameDataGridViewTextBoxColumn
     //
     this.usernameDataGridViewTextBoxColumn.DataPropertyName = "username";
     this.usernameDataGridViewTextBoxColumn.HeaderText = "username";
     this.usernameDataGridViewTextBoxColumn.Name = "usernameDataGridViewTextBoxColumn";
     this.usernameDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // passwordDataGridViewTextBoxColumn
     //
     this.passwordDataGridViewTextBoxColumn.DataPropertyName = "password";
     this.passwordDataGridViewTextBoxColumn.HeaderText = "password";
     this.passwordDataGridViewTextBoxColumn.Name = "passwordDataGridViewTextBoxColumn";
     this.passwordDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // esPrincipalDataGridViewCheckBoxColumn
     //
     this.esPrincipalDataGridViewCheckBoxColumn.DataPropertyName = "esPrincipal";
     this.esPrincipalDataGridViewCheckBoxColumn.HeaderText = "esPrincipal";
     this.esPrincipalDataGridViewCheckBoxColumn.Name = "esPrincipalDataGridViewCheckBoxColumn";
     this.esPrincipalDataGridViewCheckBoxColumn.ReadOnly = true;
     //
     // fechaRegistroDataGridViewTextBoxColumn
     //
     this.fechaRegistroDataGridViewTextBoxColumn.DataPropertyName = "fechaRegistro";
     this.fechaRegistroDataGridViewTextBoxColumn.HeaderText = "fechaRegistro";
     this.fechaRegistroDataGridViewTextBoxColumn.Name = "fechaRegistroDataGridViewTextBoxColumn";
     this.fechaRegistroDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // personalDataGridViewTextBoxColumn
     //
     this.personalDataGridViewTextBoxColumn.DataPropertyName = "Personal";
     this.personalDataGridViewTextBoxColumn.HeaderText = "Personal";
     this.personalDataGridViewTextBoxColumn.Name = "personalDataGridViewTextBoxColumn";
     this.personalDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // permisosBindingSource
     //
     this.permisosBindingSource.DataSource = typeof(ExactTarget.Business.Entities.Permiso);
     //
     // personalBindingSource
     //
     this.personalBindingSource.DataSource = typeof(ExactTarget.Business.Entities.Usuario);
     //
     // FrmPermisos
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(753, 511);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.kryptonHeader1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "FrmPermisos";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "FrmPermisos";
     this.Load += new System.EventHandler(this.FrmPermisos_Load);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.Panel2.PerformLayout();
     this.splitContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvUsuarios)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingNavigator)).EndInit();
     this.usuarioBindingNavigator.ResumeLayout(false);
     this.usuarioBindingNavigator.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.gbxInformacion.ResumeLayout(false);
     this.gbxInformacion.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmbEmpleados)).EndInit();
     this.TsMenu.ResumeLayout(false);
     this.TsMenu.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errValidator)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.permisosBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.personalBindingSource)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainFeaturesForm));
     this.pnlHeader = new System.Windows.Forms.Panel();
     this.label27 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.pnlContent = new System.Windows.Forms.Panel();
     this.pnlSettingsPanel = new System.Windows.Forms.Panel();
     this.pnlPDFSettings = new System.Windows.Forms.Panel();
     this.pnlFooterOptions = new System.Windows.Forms.Panel();
     this.groupBoxPDFFooterOptions = new System.Windows.Forms.GroupBox();
     this.cbShowFooterOnFirstPage = new System.Windows.Forms.CheckBox();
     this.cbShowFooterOnEvenPages = new System.Windows.Forms.CheckBox();
     this.cbShowFooterOnOddPages = new System.Windows.Forms.CheckBox();
     this.label19 = new System.Windows.Forms.Label();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.cbDrawFooterLine = new System.Windows.Forms.CheckBox();
     this.label23 = new System.Windows.Forms.Label();
     this.ddlFooterLineColor = new System.Windows.Forms.ComboBox();
     this.label51 = new System.Windows.Forms.Label();
     this.label49 = new System.Windows.Forms.Label();
     this.textBoxFooterHeight = new System.Windows.Forms.TextBox();
     this.pnlHeaderOptions = new System.Windows.Forms.Panel();
     this.groupBoxPDFHeaderOptions = new System.Windows.Forms.GroupBox();
     this.cbShowHeaderOnEvenPages = new System.Windows.Forms.CheckBox();
     this.cbShowHeaderOnFirstPage = new System.Windows.Forms.CheckBox();
     this.cbShowHeaderOnOddPages = new System.Windows.Forms.CheckBox();
     this.label18 = new System.Windows.Forms.Label();
     this.label36 = new System.Windows.Forms.Label();
     this.textBoxHeaderHeight = new System.Windows.Forms.TextBox();
     this.ddlHeaderLineColor = new System.Windows.Forms.ComboBox();
     this.label22 = new System.Windows.Forms.Label();
     this.label35 = new System.Windows.Forms.Label();
     this.cbDrawHeaderLine = new System.Windows.Forms.CheckBox();
     this.pnlDocumentOptions = new System.Windows.Forms.Panel();
     this.groupBoxPDFDocumentOptions = new System.Windows.Forms.GroupBox();
     this.ddlPdfSubset = new System.Windows.Forms.ComboBox();
     this.label71 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.textBoxRightMargin = new System.Windows.Forms.TextBox();
     this.textBoxTopMargin = new System.Windows.Forms.TextBox();
     this.textBoxBottomMargin = new System.Windows.Forms.TextBox();
     this.textBoxLeftMargin = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.cbShowHeader = new System.Windows.Forms.CheckBox();
     this.cbShowFooter = new System.Windows.Forms.CheckBox();
     this.label14 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.cbAvoidImageBreak = new System.Windows.Forms.CheckBox();
     this.ddlCompression = new System.Windows.Forms.ComboBox();
     this.ddlPageOrientation = new System.Windows.Forms.ComboBox();
     this.ddlPageFormat = new System.Windows.Forms.ComboBox();
     this.label9 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.pnlImgeOptions = new System.Windows.Forms.Panel();
     this.ddlImageFormat = new System.Windows.Forms.ComboBox();
     this.label4 = new System.Windows.Forms.Label();
     this.pnlCommonSettings = new System.Windows.Forms.Panel();
     this.pnlWebPageLoaded = new System.Windows.Forms.Panel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.label74 = new System.Windows.Forms.Label();
     this.textBoxNavigationTimeout = new System.Windows.Forms.TextBox();
     this.label75 = new System.Windows.Forms.Label();
     this.textBoxConversionDelay = new System.Windows.Forms.TextBox();
     this.label30 = new System.Windows.Forms.Label();
     this.textBoxPassword = new System.Windows.Forms.TextBox();
     this.label73 = new System.Windows.Forms.Label();
     this.label59 = new System.Windows.Forms.Label();
     this.textBoxUsername = new System.Windows.Forms.TextBox();
     this.label72 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.groupBoxCommonSettings = new System.Windows.Forms.GroupBox();
     this.pnlWebPageSize = new System.Windows.Forms.Panel();
     this.textBoxWebPageHeight = new System.Windows.Forms.TextBox();
     this.textBoxWebPageWidth = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.lblPageWidth = new System.Windows.Forms.Label();
     this.pnlWebPageSizeControl = new System.Windows.Forms.Panel();
     this.lblWebPageSize = new System.Windows.Forms.Label();
     this.pnlControlPanel = new System.Windows.Forms.Panel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.cbEmbedFonts = new System.Windows.Forms.CheckBox();
     this.cbJpegCompression = new System.Windows.Forms.CheckBox();
     this.cbAutoSizePdfPage = new System.Windows.Forms.CheckBox();
     this.cbFitWidth = new System.Windows.Forms.CheckBox();
     this.cbBookmarks = new System.Windows.Forms.CheckBox();
     this.cbScriptsEnabled = new System.Windows.Forms.CheckBox();
     this.cbLiveLinks = new System.Windows.Forms.CheckBox();
     this.lnkBtnSettings = new System.Windows.Forms.LinkLabel();
     this.radioConvertToImage = new System.Windows.Forms.RadioButton();
     this.radioButtonConvertToPdf = new System.Windows.Forms.RadioButton();
     this.textBoxWebPageURL = new System.Windows.Forms.TextBox();
     this.lblEnterURL = new System.Windows.Forms.Label();
     this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
     this.pnlConvertCommand = new System.Windows.Forms.Panel();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnConvert = new System.Windows.Forms.Button();
     this.pnlHeader.SuspendLayout();
     this.pnlContent.SuspendLayout();
     this.pnlSettingsPanel.SuspendLayout();
     this.pnlPDFSettings.SuspendLayout();
     this.pnlFooterOptions.SuspendLayout();
     this.groupBoxPDFFooterOptions.SuspendLayout();
     this.pnlHeaderOptions.SuspendLayout();
     this.groupBoxPDFHeaderOptions.SuspendLayout();
     this.pnlDocumentOptions.SuspendLayout();
     this.groupBoxPDFDocumentOptions.SuspendLayout();
     this.pnlImgeOptions.SuspendLayout();
     this.pnlCommonSettings.SuspendLayout();
     this.pnlWebPageLoaded.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBoxCommonSettings.SuspendLayout();
     this.pnlWebPageSize.SuspendLayout();
     this.pnlWebPageSizeControl.SuspendLayout();
     this.pnlControlPanel.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     this.pnlConvertCommand.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlHeader
     //
     this.pnlHeader.BackColor = System.Drawing.Color.White;
     this.pnlHeader.Controls.Add(this.label27);
     this.pnlHeader.Controls.Add(this.label26);
     this.pnlHeader.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlHeader.Location = new System.Drawing.Point(0, 0);
     this.pnlHeader.Name = "pnlHeader";
     this.pnlHeader.Size = new System.Drawing.Size(724, 96);
     this.pnlHeader.TabIndex = 0;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.label27.Location = new System.Drawing.Point(175, 9);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(371, 17);
     this.label27.TabIndex = 1;
     this.label27.Text = "EVO HTML to PDF Converter Main Features Demo";
     //
     // label26
     //
     this.label26.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label26.Location = new System.Drawing.Point(12, 43);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(708, 39);
     this.label26.TabIndex = 0;
     this.label26.Text = resources.GetString("label26.Text");
     //
     // pnlContent
     //
     this.pnlContent.AutoScroll = true;
     this.pnlContent.AutoSize = true;
     this.pnlContent.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.pnlContent.Controls.Add(this.pnlSettingsPanel);
     this.pnlContent.Controls.Add(this.pnlControlPanel);
     this.pnlContent.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlContent.Location = new System.Drawing.Point(0, 96);
     this.pnlContent.MaximumSize = new System.Drawing.Size(720, 560);
     this.pnlContent.Name = "pnlContent";
     this.pnlContent.Size = new System.Drawing.Size(720, 560);
     this.pnlContent.TabIndex = 1;
     //
     // pnlSettingsPanel
     //
     this.pnlSettingsPanel.AutoSize = true;
     this.pnlSettingsPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.pnlSettingsPanel.Controls.Add(this.pnlPDFSettings);
     this.pnlSettingsPanel.Controls.Add(this.pnlImgeOptions);
     this.pnlSettingsPanel.Controls.Add(this.pnlCommonSettings);
     this.pnlSettingsPanel.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlSettingsPanel.Location = new System.Drawing.Point(0, 129);
     this.pnlSettingsPanel.Name = "pnlSettingsPanel";
     this.pnlSettingsPanel.Size = new System.Drawing.Size(703, 759);
     this.pnlSettingsPanel.TabIndex = 1;
     this.pnlSettingsPanel.Visible = false;
     //
     // pnlPDFSettings
     //
     this.pnlPDFSettings.AutoSize = true;
     this.pnlPDFSettings.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.pnlPDFSettings.Controls.Add(this.pnlFooterOptions);
     this.pnlPDFSettings.Controls.Add(this.pnlHeaderOptions);
     this.pnlPDFSettings.Controls.Add(this.pnlDocumentOptions);
     this.pnlPDFSettings.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlPDFSettings.Location = new System.Drawing.Point(0, 228);
     this.pnlPDFSettings.Name = "pnlPDFSettings";
     this.pnlPDFSettings.Size = new System.Drawing.Size(703, 531);
     this.pnlPDFSettings.TabIndex = 2;
     //
     // pnlFooterOptions
     //
     this.pnlFooterOptions.Controls.Add(this.groupBoxPDFFooterOptions);
     this.pnlFooterOptions.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlFooterOptions.Location = new System.Drawing.Point(0, 412);
     this.pnlFooterOptions.Name = "pnlFooterOptions";
     this.pnlFooterOptions.Size = new System.Drawing.Size(703, 119);
     this.pnlFooterOptions.TabIndex = 2;
     this.pnlFooterOptions.Visible = false;
     //
     // groupBoxPDFFooterOptions
     //
     this.groupBoxPDFFooterOptions.BackColor = System.Drawing.Color.White;
     this.groupBoxPDFFooterOptions.Controls.Add(this.cbShowFooterOnFirstPage);
     this.groupBoxPDFFooterOptions.Controls.Add(this.cbShowFooterOnEvenPages);
     this.groupBoxPDFFooterOptions.Controls.Add(this.cbShowFooterOnOddPages);
     this.groupBoxPDFFooterOptions.Controls.Add(this.label19);
     this.groupBoxPDFFooterOptions.Controls.Add(this.checkBox1);
     this.groupBoxPDFFooterOptions.Controls.Add(this.cbDrawFooterLine);
     this.groupBoxPDFFooterOptions.Controls.Add(this.label23);
     this.groupBoxPDFFooterOptions.Controls.Add(this.ddlFooterLineColor);
     this.groupBoxPDFFooterOptions.Controls.Add(this.label51);
     this.groupBoxPDFFooterOptions.Controls.Add(this.label49);
     this.groupBoxPDFFooterOptions.Controls.Add(this.textBoxFooterHeight);
     this.groupBoxPDFFooterOptions.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBoxPDFFooterOptions.Location = new System.Drawing.Point(0, 0);
     this.groupBoxPDFFooterOptions.Name = "groupBoxPDFFooterOptions";
     this.groupBoxPDFFooterOptions.Size = new System.Drawing.Size(703, 119);
     this.groupBoxPDFFooterOptions.TabIndex = 0;
     this.groupBoxPDFFooterOptions.TabStop = false;
     //
     // cbShowFooterOnFirstPage
     //
     this.cbShowFooterOnFirstPage.AutoSize = true;
     this.cbShowFooterOnFirstPage.Checked = true;
     this.cbShowFooterOnFirstPage.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbShowFooterOnFirstPage.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbShowFooterOnFirstPage.Location = new System.Drawing.Point(35, 93);
     this.cbShowFooterOnFirstPage.Name = "cbShowFooterOnFirstPage";
     this.cbShowFooterOnFirstPage.Size = new System.Drawing.Size(118, 17);
     this.cbShowFooterOnFirstPage.TabIndex = 67;
     this.cbShowFooterOnFirstPage.Text = "Show on First Page";
     this.cbShowFooterOnFirstPage.UseVisualStyleBackColor = true;
     //
     // cbShowFooterOnEvenPages
     //
     this.cbShowFooterOnEvenPages.AutoSize = true;
     this.cbShowFooterOnEvenPages.Checked = true;
     this.cbShowFooterOnEvenPages.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbShowFooterOnEvenPages.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbShowFooterOnEvenPages.Location = new System.Drawing.Point(323, 93);
     this.cbShowFooterOnEvenPages.Name = "cbShowFooterOnEvenPages";
     this.cbShowFooterOnEvenPages.Size = new System.Drawing.Size(129, 17);
     this.cbShowFooterOnEvenPages.TabIndex = 69;
     this.cbShowFooterOnEvenPages.Text = "Show on Even Pages";
     this.cbShowFooterOnEvenPages.UseVisualStyleBackColor = true;
     //
     // cbShowFooterOnOddPages
     //
     this.cbShowFooterOnOddPages.AutoSize = true;
     this.cbShowFooterOnOddPages.Checked = true;
     this.cbShowFooterOnOddPages.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbShowFooterOnOddPages.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbShowFooterOnOddPages.Location = new System.Drawing.Point(173, 93);
     this.cbShowFooterOnOddPages.Name = "cbShowFooterOnOddPages";
     this.cbShowFooterOnOddPages.Size = new System.Drawing.Size(124, 17);
     this.cbShowFooterOnOddPages.TabIndex = 68;
     this.cbShowFooterOnOddPages.Text = "Show on Odd Pages";
     this.cbShowFooterOnOddPages.UseVisualStyleBackColor = true;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.label19.Location = new System.Drawing.Point(12, 16);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(122, 13);
     this.label19.TabIndex = 7;
     this.label19.Text = "PDF Footer Options:";
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Checked = true;
     this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.Location = new System.Drawing.Point(35, 386);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(107, 17);
     this.checkBox1.TabIndex = 5;
     this.checkBox1.Text = "Draw Footer Line";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // cbDrawFooterLine
     //
     this.cbDrawFooterLine.AutoSize = true;
     this.cbDrawFooterLine.Checked = true;
     this.cbDrawFooterLine.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbDrawFooterLine.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbDrawFooterLine.Location = new System.Drawing.Point(324, 70);
     this.cbDrawFooterLine.Name = "cbDrawFooterLine";
     this.cbDrawFooterLine.Size = new System.Drawing.Size(107, 17);
     this.cbDrawFooterLine.TabIndex = 5;
     this.cbDrawFooterLine.Text = "Draw Footer Line";
     this.cbDrawFooterLine.UseVisualStyleBackColor = true;
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label23.Location = new System.Drawing.Point(31, 69);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(90, 13);
     this.label23.TabIndex = 8;
     this.label23.Text = "Footer Line Color:";
     //
     // ddlFooterLineColor
     //
     this.ddlFooterLineColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlFooterLineColor.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.ddlFooterLineColor.FormattingEnabled = true;
     this.ddlFooterLineColor.Location = new System.Drawing.Point(147, 68);
     this.ddlFooterLineColor.Name = "ddlFooterLineColor";
     this.ddlFooterLineColor.Size = new System.Drawing.Size(121, 21);
     this.ddlFooterLineColor.TabIndex = 6;
     //
     // label51
     //
     this.label51.AutoSize = true;
     this.label51.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label51.Location = new System.Drawing.Point(32, 47);
     this.label51.Name = "label51";
     this.label51.Size = new System.Drawing.Size(71, 13);
     this.label51.TabIndex = 22;
     this.label51.Text = "Footer Height";
     //
     // label49
     //
     this.label49.AutoSize = true;
     this.label49.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label49.Location = new System.Drawing.Point(274, 49);
     this.label49.Name = "label49";
     this.label49.Size = new System.Drawing.Size(16, 13);
     this.label49.TabIndex = 7;
     this.label49.Text = "pt";
     //
     // textBoxFooterHeight
     //
     this.textBoxFooterHeight.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.textBoxFooterHeight.Location = new System.Drawing.Point(147, 42);
     this.textBoxFooterHeight.Name = "textBoxFooterHeight";
     this.textBoxFooterHeight.Size = new System.Drawing.Size(121, 20);
     this.textBoxFooterHeight.TabIndex = 18;
     this.textBoxFooterHeight.Text = "40";
     //
     // pnlHeaderOptions
     //
     this.pnlHeaderOptions.Controls.Add(this.groupBoxPDFHeaderOptions);
     this.pnlHeaderOptions.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlHeaderOptions.Location = new System.Drawing.Point(0, 286);
     this.pnlHeaderOptions.Name = "pnlHeaderOptions";
     this.pnlHeaderOptions.Size = new System.Drawing.Size(703, 126);
     this.pnlHeaderOptions.TabIndex = 1;
     this.pnlHeaderOptions.Visible = false;
     //
     // groupBoxPDFHeaderOptions
     //
     this.groupBoxPDFHeaderOptions.BackColor = System.Drawing.Color.White;
     this.groupBoxPDFHeaderOptions.Controls.Add(this.cbShowHeaderOnEvenPages);
     this.groupBoxPDFHeaderOptions.Controls.Add(this.cbShowHeaderOnFirstPage);
     this.groupBoxPDFHeaderOptions.Controls.Add(this.cbShowHeaderOnOddPages);
     this.groupBoxPDFHeaderOptions.Controls.Add(this.label18);
     this.groupBoxPDFHeaderOptions.Controls.Add(this.label36);
     this.groupBoxPDFHeaderOptions.Controls.Add(this.textBoxHeaderHeight);
     this.groupBoxPDFHeaderOptions.Controls.Add(this.ddlHeaderLineColor);
     this.groupBoxPDFHeaderOptions.Controls.Add(this.label22);
     this.groupBoxPDFHeaderOptions.Controls.Add(this.label35);
     this.groupBoxPDFHeaderOptions.Controls.Add(this.cbDrawHeaderLine);
     this.groupBoxPDFHeaderOptions.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBoxPDFHeaderOptions.Location = new System.Drawing.Point(0, 0);
     this.groupBoxPDFHeaderOptions.Name = "groupBoxPDFHeaderOptions";
     this.groupBoxPDFHeaderOptions.Size = new System.Drawing.Size(703, 126);
     this.groupBoxPDFHeaderOptions.TabIndex = 0;
     this.groupBoxPDFHeaderOptions.TabStop = false;
     //
     // cbShowHeaderOnEvenPages
     //
     this.cbShowHeaderOnEvenPages.AutoSize = true;
     this.cbShowHeaderOnEvenPages.Checked = true;
     this.cbShowHeaderOnEvenPages.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbShowHeaderOnEvenPages.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbShowHeaderOnEvenPages.Location = new System.Drawing.Point(324, 92);
     this.cbShowHeaderOnEvenPages.Name = "cbShowHeaderOnEvenPages";
     this.cbShowHeaderOnEvenPages.Size = new System.Drawing.Size(129, 17);
     this.cbShowHeaderOnEvenPages.TabIndex = 68;
     this.cbShowHeaderOnEvenPages.Text = "Show on Even Pages";
     this.cbShowHeaderOnEvenPages.UseVisualStyleBackColor = true;
     //
     // cbShowHeaderOnFirstPage
     //
     this.cbShowHeaderOnFirstPage.AutoSize = true;
     this.cbShowHeaderOnFirstPage.Checked = true;
     this.cbShowHeaderOnFirstPage.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbShowHeaderOnFirstPage.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbShowHeaderOnFirstPage.Location = new System.Drawing.Point(32, 93);
     this.cbShowHeaderOnFirstPage.Name = "cbShowHeaderOnFirstPage";
     this.cbShowHeaderOnFirstPage.Size = new System.Drawing.Size(118, 17);
     this.cbShowHeaderOnFirstPage.TabIndex = 67;
     this.cbShowHeaderOnFirstPage.Text = "Show on First Page";
     this.cbShowHeaderOnFirstPage.UseVisualStyleBackColor = true;
     //
     // cbShowHeaderOnOddPages
     //
     this.cbShowHeaderOnOddPages.AutoSize = true;
     this.cbShowHeaderOnOddPages.Checked = true;
     this.cbShowHeaderOnOddPages.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbShowHeaderOnOddPages.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbShowHeaderOnOddPages.Location = new System.Drawing.Point(173, 93);
     this.cbShowHeaderOnOddPages.Name = "cbShowHeaderOnOddPages";
     this.cbShowHeaderOnOddPages.Size = new System.Drawing.Size(124, 17);
     this.cbShowHeaderOnOddPages.TabIndex = 67;
     this.cbShowHeaderOnOddPages.Text = "Show on Odd Pages";
     this.cbShowHeaderOnOddPages.UseVisualStyleBackColor = true;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.label18.Location = new System.Drawing.Point(12, 16);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(127, 13);
     this.label18.TabIndex = 4;
     this.label18.Text = "PDF Header Options:";
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label36.Location = new System.Drawing.Point(31, 43);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(79, 13);
     this.label36.TabIndex = 22;
     this.label36.Text = "Header Height:";
     //
     // textBoxHeaderHeight
     //
     this.textBoxHeaderHeight.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.textBoxHeaderHeight.Location = new System.Drawing.Point(148, 40);
     this.textBoxHeaderHeight.Name = "textBoxHeaderHeight";
     this.textBoxHeaderHeight.Size = new System.Drawing.Size(120, 20);
     this.textBoxHeaderHeight.TabIndex = 18;
     this.textBoxHeaderHeight.Text = "40";
     //
     // ddlHeaderLineColor
     //
     this.ddlHeaderLineColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlHeaderLineColor.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.ddlHeaderLineColor.FormattingEnabled = true;
     this.ddlHeaderLineColor.Location = new System.Drawing.Point(148, 66);
     this.ddlHeaderLineColor.Name = "ddlHeaderLineColor";
     this.ddlHeaderLineColor.Size = new System.Drawing.Size(121, 21);
     this.ddlHeaderLineColor.TabIndex = 2;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label22.Location = new System.Drawing.Point(29, 69);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(95, 13);
     this.label22.TabIndex = 5;
     this.label22.Text = "Header Line Color:";
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label35.Location = new System.Drawing.Point(275, 43);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(16, 13);
     this.label35.TabIndex = 7;
     this.label35.Text = "pt";
     //
     // cbDrawHeaderLine
     //
     this.cbDrawHeaderLine.AutoSize = true;
     this.cbDrawHeaderLine.Checked = true;
     this.cbDrawHeaderLine.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbDrawHeaderLine.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbDrawHeaderLine.Location = new System.Drawing.Point(324, 69);
     this.cbDrawHeaderLine.Name = "cbDrawHeaderLine";
     this.cbDrawHeaderLine.Size = new System.Drawing.Size(112, 17);
     this.cbDrawHeaderLine.TabIndex = 3;
     this.cbDrawHeaderLine.Text = "Draw Header Line";
     this.cbDrawHeaderLine.UseVisualStyleBackColor = true;
     //
     // pnlDocumentOptions
     //
     this.pnlDocumentOptions.Controls.Add(this.groupBoxPDFDocumentOptions);
     this.pnlDocumentOptions.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlDocumentOptions.Location = new System.Drawing.Point(0, 0);
     this.pnlDocumentOptions.Name = "pnlDocumentOptions";
     this.pnlDocumentOptions.Size = new System.Drawing.Size(703, 286);
     this.pnlDocumentOptions.TabIndex = 0;
     //
     // groupBoxPDFDocumentOptions
     //
     this.groupBoxPDFDocumentOptions.BackColor = System.Drawing.Color.White;
     this.groupBoxPDFDocumentOptions.Controls.Add(this.ddlPdfSubset);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label71);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label13);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label17);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label15);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label10);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.textBoxRightMargin);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.textBoxTopMargin);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.textBoxBottomMargin);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.textBoxLeftMargin);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label16);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.cbShowHeader);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.cbShowFooter);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label14);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label12);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label11);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.cbAvoidImageBreak);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.ddlCompression);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.ddlPageOrientation);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.ddlPageFormat);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label9);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label28);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label8);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label21);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label7);
     this.groupBoxPDFDocumentOptions.Controls.Add(this.label5);
     this.groupBoxPDFDocumentOptions.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBoxPDFDocumentOptions.Location = new System.Drawing.Point(0, 0);
     this.groupBoxPDFDocumentOptions.Name = "groupBoxPDFDocumentOptions";
     this.groupBoxPDFDocumentOptions.Size = new System.Drawing.Size(703, 286);
     this.groupBoxPDFDocumentOptions.TabIndex = 0;
     this.groupBoxPDFDocumentOptions.TabStop = false;
     //
     // ddlPdfSubset
     //
     this.ddlPdfSubset.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlPdfSubset.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.ddlPdfSubset.FormattingEnabled = true;
     this.ddlPdfSubset.Location = new System.Drawing.Point(458, 70);
     this.ddlPdfSubset.Name = "ddlPdfSubset";
     this.ddlPdfSubset.Size = new System.Drawing.Size(121, 21);
     this.ddlPdfSubset.TabIndex = 37;
     //
     // label71
     //
     this.label71.AutoSize = true;
     this.label71.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label71.Location = new System.Drawing.Point(323, 73);
     this.label71.Name = "label71";
     this.label71.Size = new System.Drawing.Size(77, 13);
     this.label71.TabIndex = 38;
     this.label71.Text = "PDF Standard:";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label13.Location = new System.Drawing.Point(283, 195);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(35, 13);
     this.label13.TabIndex = 21;
     this.label13.Text = "Right:";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label17.Location = new System.Drawing.Point(283, 224);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(29, 13);
     this.label17.TabIndex = 24;
     this.label17.Text = "Top:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label15.Location = new System.Drawing.Point(61, 221);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(43, 13);
     this.label15.TabIndex = 23;
     this.label15.Text = "Bottom:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label10.Location = new System.Drawing.Point(61, 195);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(28, 13);
     this.label10.TabIndex = 22;
     this.label10.Text = "Left:";
     //
     // textBoxRightMargin
     //
     this.textBoxRightMargin.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.textBoxRightMargin.Location = new System.Drawing.Point(323, 192);
     this.textBoxRightMargin.Name = "textBoxRightMargin";
     this.textBoxRightMargin.Size = new System.Drawing.Size(104, 20);
     this.textBoxRightMargin.TabIndex = 20;
     this.textBoxRightMargin.Text = "0";
     //
     // textBoxTopMargin
     //
     this.textBoxTopMargin.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.textBoxTopMargin.Location = new System.Drawing.Point(323, 221);
     this.textBoxTopMargin.Name = "textBoxTopMargin";
     this.textBoxTopMargin.Size = new System.Drawing.Size(104, 20);
     this.textBoxTopMargin.TabIndex = 19;
     this.textBoxTopMargin.Text = "0";
     //
     // textBoxBottomMargin
     //
     this.textBoxBottomMargin.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.textBoxBottomMargin.Location = new System.Drawing.Point(109, 218);
     this.textBoxBottomMargin.Name = "textBoxBottomMargin";
     this.textBoxBottomMargin.Size = new System.Drawing.Size(104, 20);
     this.textBoxBottomMargin.TabIndex = 17;
     this.textBoxBottomMargin.Text = "0";
     //
     // textBoxLeftMargin
     //
     this.textBoxLeftMargin.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.textBoxLeftMargin.Location = new System.Drawing.Point(109, 192);
     this.textBoxLeftMargin.Name = "textBoxLeftMargin";
     this.textBoxLeftMargin.Size = new System.Drawing.Size(104, 20);
     this.textBoxLeftMargin.TabIndex = 18;
     this.textBoxLeftMargin.Text = "0";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label16.Location = new System.Drawing.Point(433, 224);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(16, 13);
     this.label16.TabIndex = 12;
     this.label16.Text = "pt";
     //
     // cbShowHeader
     //
     this.cbShowHeader.AutoSize = true;
     this.cbShowHeader.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbShowHeader.Location = new System.Drawing.Point(178, 138);
     this.cbShowHeader.Name = "cbShowHeader";
     this.cbShowHeader.Size = new System.Drawing.Size(91, 17);
     this.cbShowHeader.TabIndex = 5;
     this.cbShowHeader.Text = "Show Header";
     this.cbShowHeader.UseVisualStyleBackColor = true;
     this.cbShowHeader.CheckedChanged += new System.EventHandler(this.cbShowHeader_CheckedChanged);
     //
     // cbShowFooter
     //
     this.cbShowFooter.AutoSize = true;
     this.cbShowFooter.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbShowFooter.Location = new System.Drawing.Point(64, 138);
     this.cbShowFooter.Name = "cbShowFooter";
     this.cbShowFooter.Size = new System.Drawing.Size(86, 17);
     this.cbShowFooter.TabIndex = 6;
     this.cbShowFooter.Text = "Show Footer";
     this.cbShowFooter.UseVisualStyleBackColor = true;
     this.cbShowFooter.CheckedChanged += new System.EventHandler(this.cbShowFooter_CheckedChanged);
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label14.Location = new System.Drawing.Point(219, 221);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(16, 13);
     this.label14.TabIndex = 3;
     this.label14.Text = "pt";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label12.Location = new System.Drawing.Point(433, 195);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(16, 13);
     this.label12.TabIndex = 4;
     this.label12.Text = "pt";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label11.Location = new System.Drawing.Point(219, 195);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(16, 13);
     this.label11.TabIndex = 7;
     this.label11.Text = "pt";
     //
     // cbAvoidImageBreak
     //
     this.cbAvoidImageBreak.AutoSize = true;
     this.cbAvoidImageBreak.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbAvoidImageBreak.Location = new System.Drawing.Point(34, 259);
     this.cbAvoidImageBreak.Name = "cbAvoidImageBreak";
     this.cbAvoidImageBreak.Size = new System.Drawing.Size(121, 17);
     this.cbAvoidImageBreak.TabIndex = 10;
     this.cbAvoidImageBreak.Text = "Avoid Images Break";
     this.cbAvoidImageBreak.UseVisualStyleBackColor = true;
     //
     // ddlCompression
     //
     this.ddlCompression.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlCompression.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.ddlCompression.FormattingEnabled = true;
     this.ddlCompression.Location = new System.Drawing.Point(147, 71);
     this.ddlCompression.Name = "ddlCompression";
     this.ddlCompression.Size = new System.Drawing.Size(121, 21);
     this.ddlCompression.TabIndex = 11;
     //
     // ddlPageOrientation
     //
     this.ddlPageOrientation.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.ddlPageOrientation.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.ddlPageOrientation.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlPageOrientation.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.ddlPageOrientation.FormattingEnabled = true;
     this.ddlPageOrientation.Location = new System.Drawing.Point(458, 43);
     this.ddlPageOrientation.Name = "ddlPageOrientation";
     this.ddlPageOrientation.Size = new System.Drawing.Size(121, 21);
     this.ddlPageOrientation.TabIndex = 8;
     //
     // ddlPageFormat
     //
     this.ddlPageFormat.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.ddlPageFormat.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.ddlPageFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlPageFormat.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.ddlPageFormat.FormattingEnabled = true;
     this.ddlPageFormat.Items.AddRange(new object[] {
     "A0",
     "A1",
     "A2",
     "A3",
     "A4",
     "A5",
     "A6",
     "A7",
     "A8",
     "A9",
     "A10",
     "B0",
     "B1",
     "B2",
     "B3",
     "B4",
     "B5",
     "ArchA",
     "ArchB",
     "ArchC",
     "ArchD",
     "ArchE",
     "Flsa",
     "HalfLetter",
     "Ledger",
     "Legal",
     "Letter",
     "Letter11x17",
     "Note"});
     this.ddlPageFormat.Location = new System.Drawing.Point(148, 44);
     this.ddlPageFormat.Name = "ddlPageFormat";
     this.ddlPageFormat.Size = new System.Drawing.Size(121, 21);
     this.ddlPageFormat.TabIndex = 8;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label9.Location = new System.Drawing.Point(31, 167);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(99, 13);
     this.label9.TabIndex = 16;
     this.label9.Text = "Document Margins:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label28.Location = new System.Drawing.Point(323, 47);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(113, 13);
     this.label28.TabIndex = 13;
     this.label28.Text = "PDF Page Orientation:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label8.Location = new System.Drawing.Point(31, 112);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(99, 13);
     this.label8.TabIndex = 15;
     this.label8.Text = "Header and Footer:";
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label21.Location = new System.Drawing.Point(31, 47);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(82, 13);
     this.label21.TabIndex = 13;
     this.label21.Text = "PDF Page Size:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label7.Location = new System.Drawing.Point(31, 75);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(94, 13);
     this.label7.TabIndex = 14;
     this.label7.Text = "PDF Compression:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(12, 16);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(143, 13);
     this.label5.TabIndex = 9;
     this.label5.Text = "PDF Document Options:";
     //
     // pnlImgeOptions
     //
     this.pnlImgeOptions.BackColor = System.Drawing.Color.White;
     this.pnlImgeOptions.Controls.Add(this.ddlImageFormat);
     this.pnlImgeOptions.Controls.Add(this.label4);
     this.pnlImgeOptions.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlImgeOptions.Location = new System.Drawing.Point(0, 186);
     this.pnlImgeOptions.Name = "pnlImgeOptions";
     this.pnlImgeOptions.Size = new System.Drawing.Size(703, 42);
     this.pnlImgeOptions.TabIndex = 1;
     this.pnlImgeOptions.Visible = false;
     //
     // ddlImageFormat
     //
     this.ddlImageFormat.BackColor = System.Drawing.Color.White;
     this.ddlImageFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlImageFormat.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.ddlImageFormat.FormattingEnabled = true;
     this.ddlImageFormat.Location = new System.Drawing.Point(136, 10);
     this.ddlImageFormat.Name = "ddlImageFormat";
     this.ddlImageFormat.Size = new System.Drawing.Size(121, 21);
     this.ddlImageFormat.TabIndex = 0;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(15, 13);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(87, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Image Format:";
     //
     // pnlCommonSettings
     //
     this.pnlCommonSettings.AutoSize = true;
     this.pnlCommonSettings.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.pnlCommonSettings.Controls.Add(this.pnlWebPageLoaded);
     this.pnlCommonSettings.Controls.Add(this.groupBoxCommonSettings);
     this.pnlCommonSettings.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlCommonSettings.Location = new System.Drawing.Point(0, 0);
     this.pnlCommonSettings.Name = "pnlCommonSettings";
     this.pnlCommonSettings.Size = new System.Drawing.Size(703, 186);
     this.pnlCommonSettings.TabIndex = 0;
     //
     // pnlWebPageLoaded
     //
     this.pnlWebPageLoaded.Controls.Add(this.groupBox2);
     this.pnlWebPageLoaded.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlWebPageLoaded.Location = new System.Drawing.Point(0, 111);
     this.pnlWebPageLoaded.Name = "pnlWebPageLoaded";
     this.pnlWebPageLoaded.Size = new System.Drawing.Size(703, 75);
     this.pnlWebPageLoaded.TabIndex = 1;
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.White;
     this.groupBox2.Controls.Add(this.label74);
     this.groupBox2.Controls.Add(this.textBoxNavigationTimeout);
     this.groupBox2.Controls.Add(this.label75);
     this.groupBox2.Controls.Add(this.textBoxConversionDelay);
     this.groupBox2.Controls.Add(this.label30);
     this.groupBox2.Controls.Add(this.textBoxPassword);
     this.groupBox2.Controls.Add(this.label73);
     this.groupBox2.Controls.Add(this.label59);
     this.groupBox2.Controls.Add(this.textBoxUsername);
     this.groupBox2.Controls.Add(this.label72);
     this.groupBox2.Controls.Add(this.label29);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(703, 75);
     this.groupBox2.TabIndex = 11;
     this.groupBox2.TabStop = false;
     //
     // label74
     //
     this.label74.AutoSize = true;
     this.label74.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label74.Location = new System.Drawing.Point(237, 42);
     this.label74.Name = "label74";
     this.label74.Size = new System.Drawing.Size(117, 13);
     this.label74.TabIndex = 44;
     this.label74.Text = "Navigation Timeout";
     //
     // textBoxNavigationTimeout
     //
     this.textBoxNavigationTimeout.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.textBoxNavigationTimeout.Location = new System.Drawing.Point(374, 39);
     this.textBoxNavigationTimeout.Name = "textBoxNavigationTimeout";
     this.textBoxNavigationTimeout.Size = new System.Drawing.Size(46, 20);
     this.textBoxNavigationTimeout.TabIndex = 43;
     this.textBoxNavigationTimeout.Text = "60";
     //
     // label75
     //
     this.label75.AutoSize = true;
     this.label75.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label75.Location = new System.Drawing.Point(425, 42);
     this.label75.Name = "label75";
     this.label75.Size = new System.Drawing.Size(24, 13);
     this.label75.TabIndex = 42;
     this.label75.Text = "sec";
     //
     // textBoxConversionDelay
     //
     this.textBoxConversionDelay.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.textBoxConversionDelay.Location = new System.Drawing.Point(148, 39);
     this.textBoxConversionDelay.Name = "textBoxConversionDelay";
     this.textBoxConversionDelay.Size = new System.Drawing.Size(36, 20);
     this.textBoxConversionDelay.TabIndex = 1;
     this.textBoxConversionDelay.Text = "2";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(15, 16);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(93, 13);
     this.label30.TabIndex = 21;
     this.label30.Text = "Authentication:";
     //
     // textBoxPassword
     //
     this.textBoxPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.textBoxPassword.Location = new System.Drawing.Point(404, 13);
     this.textBoxPassword.Name = "textBoxPassword";
     this.textBoxPassword.Size = new System.Drawing.Size(104, 20);
     this.textBoxPassword.TabIndex = 20;
     //
     // label73
     //
     this.label73.AutoSize = true;
     this.label73.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label73.Location = new System.Drawing.Point(190, 42);
     this.label73.Name = "label73";
     this.label73.Size = new System.Drawing.Size(24, 13);
     this.label73.TabIndex = 0;
     this.label73.Text = "sec";
     //
     // label59
     //
     this.label59.AutoSize = true;
     this.label59.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label59.Location = new System.Drawing.Point(340, 16);
     this.label59.Name = "label59";
     this.label59.Size = new System.Drawing.Size(56, 13);
     this.label59.TabIndex = 17;
     this.label59.Text = "Password:"******"Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.textBoxUsername.Location = new System.Drawing.Point(219, 13);
     this.textBoxUsername.Name = "textBoxUsername";
     this.textBoxUsername.Size = new System.Drawing.Size(104, 20);
     this.textBoxUsername.TabIndex = 19;
     //
     // label72
     //
     this.label72.AutoSize = true;
     this.label72.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label72.Location = new System.Drawing.Point(16, 42);
     this.label72.Name = "label72";
     this.label72.Size = new System.Drawing.Size(110, 13);
     this.label72.TabIndex = 0;
     this.label72.Text = "Conversion Delay:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label29.Location = new System.Drawing.Point(145, 16);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(58, 13);
     this.label29.TabIndex = 18;
     this.label29.Text = "Username:"******"groupBoxCommonSettings";
     this.groupBoxCommonSettings.Size = new System.Drawing.Size(703, 111);
     this.groupBoxCommonSettings.TabIndex = 0;
     this.groupBoxCommonSettings.TabStop = false;
     //
     // pnlWebPageSize
     //
     this.pnlWebPageSize.Controls.Add(this.textBoxWebPageHeight);
     this.pnlWebPageSize.Controls.Add(this.textBoxWebPageWidth);
     this.pnlWebPageSize.Controls.Add(this.label3);
     this.pnlWebPageSize.Controls.Add(this.label1);
     this.pnlWebPageSize.Controls.Add(this.label2);
     this.pnlWebPageSize.Controls.Add(this.lblPageWidth);
     this.pnlWebPageSize.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlWebPageSize.Location = new System.Drawing.Point(3, 40);
     this.pnlWebPageSize.Name = "pnlWebPageSize";
     this.pnlWebPageSize.Size = new System.Drawing.Size(697, 68);
     this.pnlWebPageSize.TabIndex = 7;
     //
     // textBoxWebPageHeight
     //
     this.textBoxWebPageHeight.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.textBoxWebPageHeight.Location = new System.Drawing.Point(153, 38);
     this.textBoxWebPageHeight.Name = "textBoxWebPageHeight";
     this.textBoxWebPageHeight.Size = new System.Drawing.Size(104, 20);
     this.textBoxWebPageHeight.TabIndex = 1;
     this.textBoxWebPageHeight.Text = "0";
     //
     // textBoxWebPageWidth
     //
     this.textBoxWebPageWidth.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.textBoxWebPageWidth.Location = new System.Drawing.Point(153, 10);
     this.textBoxWebPageWidth.Name = "textBoxWebPageWidth";
     this.textBoxWebPageWidth.Size = new System.Drawing.Size(104, 20);
     this.textBoxWebPageWidth.TabIndex = 1;
     this.textBoxWebPageWidth.Text = "1024";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label3.Location = new System.Drawing.Point(261, 41);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(18, 13);
     this.label3.TabIndex = 0;
     this.label3.Text = "px";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label1.Location = new System.Drawing.Point(261, 13);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(18, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "px";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.label2.Location = new System.Drawing.Point(28, 41);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(106, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "HTML viewer height:";
     //
     // lblPageWidth
     //
     this.lblPageWidth.AutoSize = true;
     this.lblPageWidth.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.lblPageWidth.Location = new System.Drawing.Point(28, 13);
     this.lblPageWidth.Name = "lblPageWidth";
     this.lblPageWidth.Size = new System.Drawing.Size(102, 13);
     this.lblPageWidth.TabIndex = 0;
     this.lblPageWidth.Text = "HTML viewer width:";
     //
     // pnlWebPageSizeControl
     //
     this.pnlWebPageSizeControl.Controls.Add(this.lblWebPageSize);
     this.pnlWebPageSizeControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlWebPageSizeControl.Location = new System.Drawing.Point(3, 16);
     this.pnlWebPageSizeControl.Name = "pnlWebPageSizeControl";
     this.pnlWebPageSizeControl.Size = new System.Drawing.Size(697, 24);
     this.pnlWebPageSizeControl.TabIndex = 6;
     //
     // lblWebPageSize
     //
     this.lblWebPageSize.AutoSize = true;
     this.lblWebPageSize.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.lblWebPageSize.Location = new System.Drawing.Point(12, 7);
     this.lblWebPageSize.Name = "lblWebPageSize";
     this.lblWebPageSize.Size = new System.Drawing.Size(106, 13);
     this.lblWebPageSize.TabIndex = 3;
     this.lblWebPageSize.Text = "Html Viewer Size:";
     //
     // pnlControlPanel
     //
     this.pnlControlPanel.Controls.Add(this.groupBox1);
     this.pnlControlPanel.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlControlPanel.Location = new System.Drawing.Point(0, 0);
     this.pnlControlPanel.Name = "pnlControlPanel";
     this.pnlControlPanel.Size = new System.Drawing.Size(703, 129);
     this.pnlControlPanel.TabIndex = 0;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.White;
     this.groupBox1.Controls.Add(this.cbEmbedFonts);
     this.groupBox1.Controls.Add(this.cbJpegCompression);
     this.groupBox1.Controls.Add(this.cbAutoSizePdfPage);
     this.groupBox1.Controls.Add(this.cbFitWidth);
     this.groupBox1.Controls.Add(this.cbBookmarks);
     this.groupBox1.Controls.Add(this.cbScriptsEnabled);
     this.groupBox1.Controls.Add(this.cbLiveLinks);
     this.groupBox1.Controls.Add(this.lnkBtnSettings);
     this.groupBox1.Controls.Add(this.radioConvertToImage);
     this.groupBox1.Controls.Add(this.radioButtonConvertToPdf);
     this.groupBox1.Controls.Add(this.textBoxWebPageURL);
     this.groupBox1.Controls.Add(this.lblEnterURL);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(703, 129);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     //
     // cbEmbedFonts
     //
     this.cbEmbedFonts.AutoSize = true;
     this.cbEmbedFonts.BackColor = System.Drawing.Color.White;
     this.cbEmbedFonts.Checked = true;
     this.cbEmbedFonts.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbEmbedFonts.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbEmbedFonts.Location = new System.Drawing.Point(184, 103);
     this.cbEmbedFonts.Name = "cbEmbedFonts";
     this.cbEmbedFonts.Size = new System.Drawing.Size(85, 17);
     this.cbEmbedFonts.TabIndex = 12;
     this.cbEmbedFonts.Text = "Embed fonts";
     this.cbEmbedFonts.UseVisualStyleBackColor = false;
     //
     // cbJpegCompression
     //
     this.cbJpegCompression.AutoSize = true;
     this.cbJpegCompression.Checked = true;
     this.cbJpegCompression.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbJpegCompression.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbJpegCompression.Location = new System.Drawing.Point(544, 76);
     this.cbJpegCompression.Name = "cbJpegCompression";
     this.cbJpegCompression.Size = new System.Drawing.Size(116, 17);
     this.cbJpegCompression.TabIndex = 12;
     this.cbJpegCompression.Text = "JPEG Compression";
     this.cbJpegCompression.UseVisualStyleBackColor = true;
     //
     // cbAutoSizePdfPage
     //
     this.cbAutoSizePdfPage.AutoSize = true;
     this.cbAutoSizePdfPage.Checked = true;
     this.cbAutoSizePdfPage.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbAutoSizePdfPage.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbAutoSizePdfPage.Location = new System.Drawing.Point(416, 101);
     this.cbAutoSizePdfPage.Name = "cbAutoSizePdfPage";
     this.cbAutoSizePdfPage.Size = new System.Drawing.Size(123, 17);
     this.cbAutoSizePdfPage.TabIndex = 12;
     this.cbAutoSizePdfPage.Text = "Auto Size PDF Page";
     this.cbAutoSizePdfPage.UseVisualStyleBackColor = true;
     //
     // cbFitWidth
     //
     this.cbFitWidth.AutoSize = true;
     this.cbFitWidth.Checked = true;
     this.cbFitWidth.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbFitWidth.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbFitWidth.Location = new System.Drawing.Point(294, 101);
     this.cbFitWidth.Name = "cbFitWidth";
     this.cbFitWidth.Size = new System.Drawing.Size(68, 17);
     this.cbFitWidth.TabIndex = 12;
     this.cbFitWidth.Text = "Fit Width";
     this.cbFitWidth.UseVisualStyleBackColor = true;
     //
     // cbBookmarks
     //
     this.cbBookmarks.AutoSize = true;
     this.cbBookmarks.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbBookmarks.Location = new System.Drawing.Point(294, 76);
     this.cbBookmarks.Name = "cbBookmarks";
     this.cbBookmarks.Size = new System.Drawing.Size(79, 17);
     this.cbBookmarks.TabIndex = 11;
     this.cbBookmarks.Text = "Bookmarks";
     this.cbBookmarks.UseVisualStyleBackColor = true;
     //
     // cbScriptsEnabled
     //
     this.cbScriptsEnabled.AutoSize = true;
     this.cbScriptsEnabled.Checked = true;
     this.cbScriptsEnabled.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbScriptsEnabled.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbScriptsEnabled.Location = new System.Drawing.Point(416, 76);
     this.cbScriptsEnabled.Name = "cbScriptsEnabled";
     this.cbScriptsEnabled.Size = new System.Drawing.Size(76, 17);
     this.cbScriptsEnabled.TabIndex = 10;
     this.cbScriptsEnabled.Text = "JavaScript";
     this.cbScriptsEnabled.UseVisualStyleBackColor = true;
     //
     // cbLiveLinks
     //
     this.cbLiveLinks.AutoSize = true;
     this.cbLiveLinks.Checked = true;
     this.cbLiveLinks.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbLiveLinks.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.cbLiveLinks.Location = new System.Drawing.Point(184, 78);
     this.cbLiveLinks.Name = "cbLiveLinks";
     this.cbLiveLinks.Size = new System.Drawing.Size(70, 17);
     this.cbLiveLinks.TabIndex = 10;
     this.cbLiveLinks.Text = "Live links";
     this.cbLiveLinks.UseVisualStyleBackColor = true;
     //
     // lnkBtnSettings
     //
     this.lnkBtnSettings.AutoSize = true;
     this.lnkBtnSettings.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.lnkBtnSettings.Location = new System.Drawing.Point(12, 80);
     this.lnkBtnSettings.Name = "lnkBtnSettings";
     this.lnkBtnSettings.Size = new System.Drawing.Size(136, 13);
     this.lnkBtnSettings.TabIndex = 8;
     this.lnkBtnSettings.TabStop = true;
     this.lnkBtnSettings.Text = "More Converter Settings >>";
     this.lnkBtnSettings.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkBtnSettings_LinkClicked);
     //
     // radioConvertToImage
     //
     this.radioConvertToImage.AutoSize = true;
     this.radioConvertToImage.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.radioConvertToImage.Location = new System.Drawing.Point(140, 48);
     this.radioConvertToImage.Name = "radioConvertToImage";
     this.radioConvertToImage.Size = new System.Drawing.Size(105, 17);
     this.radioConvertToImage.TabIndex = 7;
     this.radioConvertToImage.Text = "Convert to image";
     this.radioConvertToImage.UseVisualStyleBackColor = true;
     this.radioConvertToImage.CheckedChanged += new System.EventHandler(this.radioConvertToImage_CheckedChanged);
     //
     // radioButtonConvertToPdf
     //
     this.radioButtonConvertToPdf.AutoSize = true;
     this.radioButtonConvertToPdf.Checked = true;
     this.radioButtonConvertToPdf.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.radioButtonConvertToPdf.Location = new System.Drawing.Point(15, 48);
     this.radioButtonConvertToPdf.Name = "radioButtonConvertToPdf";
     this.radioButtonConvertToPdf.Size = new System.Drawing.Size(98, 17);
     this.radioButtonConvertToPdf.TabIndex = 6;
     this.radioButtonConvertToPdf.TabStop = true;
     this.radioButtonConvertToPdf.Text = "Convert to PDF";
     this.radioButtonConvertToPdf.UseVisualStyleBackColor = true;
     this.radioButtonConvertToPdf.CheckedChanged += new System.EventHandler(this.radioButtonConvertToPdf_CheckedChanged);
     //
     // textBoxWebPageURL
     //
     this.textBoxWebPageURL.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.textBoxWebPageURL.Location = new System.Drawing.Point(238, 13);
     this.textBoxWebPageURL.Name = "textBoxWebPageURL";
     this.textBoxWebPageURL.Size = new System.Drawing.Size(447, 20);
     this.textBoxWebPageURL.TabIndex = 5;
     this.textBoxWebPageURL.Text = "http://www.evopdf.com";
     //
     // lblEnterURL
     //
     this.lblEnterURL.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
     this.lblEnterURL.Location = new System.Drawing.Point(15, 16);
     this.lblEnterURL.Name = "lblEnterURL";
     this.lblEnterURL.Size = new System.Drawing.Size(217, 29);
     this.lblEnterURL.TabIndex = 4;
     this.lblEnterURL.Text = "Enter Web Page URL or File Path:";
     //
     // errorProvider
     //
     this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorProvider.ContainerControl = this;
     //
     // pnlConvertCommand
     //
     this.pnlConvertCommand.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.pnlConvertCommand.BackColor = System.Drawing.Color.White;
     this.pnlConvertCommand.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlConvertCommand.Controls.Add(this.btnCancel);
     this.pnlConvertCommand.Controls.Add(this.btnConvert);
     this.pnlConvertCommand.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlConvertCommand.Location = new System.Drawing.Point(0, 656);
     this.pnlConvertCommand.Name = "pnlConvertCommand";
     this.pnlConvertCommand.Size = new System.Drawing.Size(724, 55);
     this.pnlConvertCommand.TabIndex = 3;
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnCancel.Location = new System.Drawing.Point(708, 40);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(0, 0);
     this.btnCancel.TabIndex = 2;
     this.btnCancel.TabStop = false;
     this.btnCancel.UseVisualStyleBackColor = true;
     //
     // btnConvert
     //
     this.btnConvert.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnConvert.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.btnConvert.Location = new System.Drawing.Point(293, 15);
     this.btnConvert.Name = "btnConvert";
     this.btnConvert.Size = new System.Drawing.Size(118, 27);
     this.btnConvert.TabIndex = 0;
     this.btnConvert.Text = "Convert";
     this.btnConvert.UseVisualStyleBackColor = true;
     this.btnConvert.Click += new System.EventHandler(this.btnConvert_Click);
     //
     // MainFeaturesForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(724, 715);
     this.Controls.Add(this.pnlConvertCommand);
     this.Controls.Add(this.pnlContent);
     this.Controls.Add(this.pnlHeader);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(238)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimumSize = new System.Drawing.Size(730, 33);
     this.Name = "MainFeaturesForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "EVO HTML to PDF Converter Main Features Demo";
     this.Load += new System.EventHandler(this.MainFeaturesForm_Load);
     this.pnlHeader.ResumeLayout(false);
     this.pnlHeader.PerformLayout();
     this.pnlContent.ResumeLayout(false);
     this.pnlContent.PerformLayout();
     this.pnlSettingsPanel.ResumeLayout(false);
     this.pnlSettingsPanel.PerformLayout();
     this.pnlPDFSettings.ResumeLayout(false);
     this.pnlFooterOptions.ResumeLayout(false);
     this.groupBoxPDFFooterOptions.ResumeLayout(false);
     this.groupBoxPDFFooterOptions.PerformLayout();
     this.pnlHeaderOptions.ResumeLayout(false);
     this.groupBoxPDFHeaderOptions.ResumeLayout(false);
     this.groupBoxPDFHeaderOptions.PerformLayout();
     this.pnlDocumentOptions.ResumeLayout(false);
     this.groupBoxPDFDocumentOptions.ResumeLayout(false);
     this.groupBoxPDFDocumentOptions.PerformLayout();
     this.pnlImgeOptions.ResumeLayout(false);
     this.pnlImgeOptions.PerformLayout();
     this.pnlCommonSettings.ResumeLayout(false);
     this.pnlCommonSettings.PerformLayout();
     this.pnlWebPageLoaded.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBoxCommonSettings.ResumeLayout(false);
     this.pnlWebPageSize.ResumeLayout(false);
     this.pnlWebPageSize.PerformLayout();
     this.pnlWebPageSizeControl.ResumeLayout(false);
     this.pnlWebPageSizeControl.PerformLayout();
     this.pnlControlPanel.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     this.pnlConvertCommand.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }