Ejemplo n.º 1
0
 private void OnControlsDataChanged(Object sender, EventArgs e)
 {
     if (m_currentNote != null)
     {
         if (sender is DevExpress.XtraEditors.DateEdit)
         {
             DevExpress.XtraEditors.DateEdit control = sender as DevExpress.XtraEditors.DateEdit;
             if (control.Name == m_TaskStartDateControl.Name)
             {
                 m_currentNote.StartDate = m_TaskStartDateControl.DateTime;
             }
             else
             {
                 m_currentNote.FinishDate = m_TaskFinishDateControl.DateTime;
             }
         }
         else if (sender is DevExpress.XtraEditors.TextEdit && ((DevExpress.XtraEditors.TextEdit)sender).Name == m_TaskNameControl.Name)
         {
             m_currentNote.NodeName = m_TaskNameControl.Text;
         }
         else if (sender is DevExpress.XtraEditors.CheckEdit)
         {
             m_currentNote.IsDone = m_TaskIsDoneControl.Checked;
         }
         else if (sender is DevExpress.XtraEditors.MemoEdit)
         {
             m_currentNote.TaskText = m_TaskTextControl.Text;
         }
         CaseKeeper.OnCaseUpdate();
     }
 }
Ejemplo n.º 2
0
 public static void RemoveEmptyDate(DevExpress.XtraEditors.DateEdit dateEdit)
 {
     if (dateEdit.DateTime.Equals(new DateTime()))
     {
         dateEdit.Text = "";
     }
 }
Ejemplo n.º 3
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="dateEdit"></param>
 /// <param name="display"></param>
 /// <param name="edit"></param>
 /// <param name="mask"></param>
 public static void ConfigDateEdit(DevExpress.XtraEditors.DateEdit dateEdit, string display, string edit, string mask)
 {
     dateEdit.EditValue = DateTime.Now;
     dateEdit.Properties.DisplayFormat.FormatString = display;
     dateEdit.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     dateEdit.Properties.EditFormat.FormatString    = edit;
     dateEdit.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     dateEdit.Properties.EditMask = mask;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// 날짜에 원하는 달 추가
 /// </summary>
 /// <param name="inDateEdit">DateEdit</param>
 /// <param name="addMonthCnt">추가할 달수</param>
 /// <param name="inSourceDate">원본날짜</param>
 public static void setMonthDate(DevExpress.XtraEditors.DateEdit inDateEdit, int addMonthCnt, string inSourceDate)
 {
     try
     {
         DateTime dt = GetDateFromYYYYMMDD(Basic.MaskReplace(inSourceDate));
         inDateEdit.Text = dt.AddMonths(addMonthCnt).ToShortDateString();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 5
0
        /// <summary>
        /// 设置控件的Enable属性
        /// </summary>
        /// <param name="b"></param>
        protected void SetConEnable(bool b)
        {
            for (int i = 0; i < Frm.Controls.Count; i++)
            {
                string sType = Frm.Controls[i].GetType().ToString();
                if (sType == "System.Windows.Forms.TextBox")
                {
                    TextBox edTemp = (TextBox)Frm.Controls[i];
                    edTemp.ReadOnly = !b;
                    edTemp.Enabled  = b;
                }
                if (sType == "System.Windows.Forms.ComboBox")
                {
                    ComboBox edTemp = (ComboBox)Frm.Controls[i];
                    edTemp.Enabled = b;
                }
                if (sType == "System.Windows.Forms.DateTimePicker")
                {
                    DateTimePicker edTemp = (DateTimePicker)Frm.Controls[i];
                    edTemp.Enabled = b;
                }
                if (sType == "DevExpress.XtraEditors.DateEdit")
                {
                    DevExpress.XtraEditors.DateEdit edTemp = (DevExpress.XtraEditors.DateEdit)Frm.Controls[i];
                    edTemp.Properties.ReadOnly = !b;
                    edTemp.Enabled             = b;
                }
                if (sType == "DevExpress.XtraEditors.TextEdit")
                {
                    DevExpress.XtraEditors.TextEdit edTemp = (DevExpress.XtraEditors.TextEdit)Frm.Controls[i];
                    edTemp.Properties.ReadOnly = !b;
                }
                if (sType == "DevExpress.XtraEditors.LookUpEdit")
                {
                    DevExpress.XtraEditors.LookUpEdit edTemp = (DevExpress.XtraEditors.LookUpEdit)Frm.Controls[i];
                    edTemp.Properties.ReadOnly = !b;
                }
                if (sType == "System.Windows.Forms.RichTextBox")
                {
                    System.Windows.Forms.RichTextBox edTemp = (System.Windows.Forms.RichTextBox)Frm.Controls[i];
                    edTemp.ReadOnly = !b;
                }

                //if (sType == "DevExpress.XtraGrid.GridControl")
                //{
                //    DevExpress.XtraGrid.GridControl edTemp = (DevExpress.XtraGrid.GridControl)Frm.Controls[i];
                //    edTemp.pro = !b;
                //}
            }
        }
 void ToYearStyle(DevExpress.XtraEditors.DateEdit dateEdit, bool touchUI = false)
 {
     if (touchUI)
     {
         dateEdit.Properties.CalendarView = DevExpress.XtraEditors.Repository.CalendarView.TouchUI;
     }
     else
     {
         dateEdit.Properties.CalendarView = DevExpress.XtraEditors.Repository.CalendarView.Vista;
     }
     dateEdit.Properties.ShowToday        = false;
     dateEdit.Properties.ShowMonthHeaders = false;
     dateEdit.Properties.VistaCalendarInitialViewStyle = DevExpress.XtraEditors.VistaCalendarInitialViewStyle.YearsGroupView;
     dateEdit.Properties.VistaCalendarViewStyle        = DevExpress.XtraEditors.VistaCalendarViewStyle.YearsGroupView;
     dateEdit.Properties.Mask.EditMask = "yyyy";
     dateEdit.Properties.Mask.UseMaskAsDisplayFormat = true;
 }
Ejemplo n.º 7
0
        /// <summary>
        /// 设置控件默认值
        /// </summary>
        protected void SetConDefData()
        {
            for (int i = 0; i < Frm.Controls.Count; i++)
            {
                string sType = Frm.Controls[i].GetType().ToString();
                if (sType == "System.Windows.Forms.TextBox")
                {
                    TextBox edTemp = (TextBox)Frm.Controls[i];
                    edTemp.Text = "";
                }
                if (sType == "System.Windows.Forms.DateTimePicker")
                {
                    DateTimePicker edTemp = (DateTimePicker)Frm.Controls[i];
                    edTemp.Text = "";
                }
                if (sType == "DevExpress.XtraEditors.DateEdit")
                {
                    DevExpress.XtraEditors.DateEdit edTemp = (DevExpress.XtraEditors.DateEdit)Frm.Controls[i];
                    edTemp.Text = "";
                }
                if (sType == "DevExpress.XtraEditors.TextEdit")
                {
                    DevExpress.XtraEditors.TextEdit edTemp = (DevExpress.XtraEditors.TextEdit)Frm.Controls[i];
                    edTemp.Text = "";
                }
                if (sType == "DevExpress.XtraEditors.LookUpEdit")
                {
                    DevExpress.XtraEditors.LookUpEdit edTemp = (DevExpress.XtraEditors.LookUpEdit)Frm.Controls[i];
                    edTemp.EditValue = null;
                }
                if (sType == "System.Windows.Forms.RichTextBox")
                {
                    System.Windows.Forms.RichTextBox edTemp = (System.Windows.Forms.RichTextBox)Frm.Controls[i];
                    edTemp.Text = "";
                }

            }
        }
Ejemplo n.º 8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.GridCVType       = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField1  = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField2  = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField3  = new DevExpress.XtraPivotGrid.PivotGridField();
     this.DateFrom         = new DevExpress.XtraEditors.DateEdit();
     this.DateTo           = new System.Windows.Forms.Label();
     this.label1           = new System.Windows.Forms.Label();
     this.DateRangeTo      = new DevExpress.XtraEditors.DateEdit();
     this.GridCVCategory   = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField4  = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField5  = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField6  = new DevExpress.XtraPivotGrid.PivotGridField();
     this.GridCVDepartment = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField7  = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField8  = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField9  = new DevExpress.XtraPivotGrid.PivotGridField();
     this.GridCVTypeCat    = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField10 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField11 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField12 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField13 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField14 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.GridCVSpa        = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField15 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField16 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField17 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField18 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField19 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.GridCVOffice     = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField20 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField21 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField22 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField23 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField24 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.GridCVList       = new DevExpress.XtraGrid.GridControl();
     this.gridView1        = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11     = new DevExpress.XtraGrid.Columns.GridColumn();
     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.label8           = new System.Windows.Forms.Label();
     this.btnReset         = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.GridCVType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCVCategory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCVDepartment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCVTypeCat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCVSpa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCVOffice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCVList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     this.SuspendLayout();
     //
     // GridCVType
     //
     this.GridCVType.Cursor = System.Windows.Forms.Cursors.Default;
     this.GridCVType.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
         this.pivotGridField1,
         this.pivotGridField2,
         this.pivotGridField3
     });
     this.GridCVType.Location = new System.Drawing.Point(0, 56);
     this.GridCVType.Name     = "GridCVType";
     this.GridCVType.OptionsCustomization.AllowDrag   = false;
     this.GridCVType.OptionsCustomization.AllowExpand = false;
     this.GridCVType.OptionsCustomization.AllowFilter = false;
     this.GridCVType.OptionsCustomization.AllowSort   = false;
     this.GridCVType.OptionsView.ShowDataHeaders      = false;
     this.GridCVType.OptionsView.ShowFilterHeaders    = false;
     this.GridCVType.Size     = new System.Drawing.Size(712, 184);
     this.GridCVType.TabIndex = 0;
     //
     // pivotGridField1
     //
     this.pivotGridField1.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField1.AreaIndex = 0;
     this.pivotGridField1.Caption   = "Type";
     this.pivotGridField1.FieldName = "strDescription";
     this.pivotGridField1.Name      = "pivotGridField1";
     //
     // pivotGridField2
     //
     this.pivotGridField2.Area      = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField2.AreaIndex = 0;
     this.pivotGridField2.Caption   = "Branch";
     this.pivotGridField2.FieldName = "strBranchCode";
     this.pivotGridField2.Name      = "pivotGridField2";
     //
     // pivotGridField3
     //
     this.pivotGridField3.Area      = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField3.AreaIndex = 0;
     this.pivotGridField3.Caption   = "Type";
     this.pivotGridField3.FieldName = "nTypeID";
     this.pivotGridField3.Name      = "pivotGridField3";
     //
     // DateFrom
     //
     this.DateFrom.EditValue = null;
     this.DateFrom.Location  = new System.Drawing.Point(40, 8);
     this.DateFrom.Name      = "DateFrom";
     //
     // DateFrom.Properties
     //
     this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.DateFrom.Size     = new System.Drawing.Size(72, 20);
     this.DateFrom.TabIndex = 9;
     //
     // DateTo
     //
     this.DateTo.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.DateTo.Location = new System.Drawing.Point(120, 8);
     this.DateTo.Name     = "DateTo";
     this.DateTo.Size     = new System.Drawing.Size(24, 16);
     this.DateTo.TabIndex = 8;
     this.DateTo.Text     = "To";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(0, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(40, 16);
     this.label1.TabIndex = 7;
     this.label1.Text     = "From";
     //
     // DateRangeTo
     //
     this.DateRangeTo.EditValue = null;
     this.DateRangeTo.Location  = new System.Drawing.Point(152, 8);
     this.DateRangeTo.Name      = "DateRangeTo";
     //
     // DateRangeTo.Properties
     //
     this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.DateRangeTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.DateRangeTo.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.DateRangeTo.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.DateRangeTo.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.DateRangeTo.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.DateRangeTo.Size     = new System.Drawing.Size(72, 20);
     this.DateRangeTo.TabIndex = 6;
     //
     // GridCVCategory
     //
     this.GridCVCategory.Cursor = System.Windows.Forms.Cursors.Default;
     this.GridCVCategory.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
         this.pivotGridField4,
         this.pivotGridField5,
         this.pivotGridField6
     });
     this.GridCVCategory.Location = new System.Drawing.Point(0, 264);
     this.GridCVCategory.Name     = "GridCVCategory";
     this.GridCVCategory.OptionsCustomization.AllowDrag   = false;
     this.GridCVCategory.OptionsCustomization.AllowExpand = false;
     this.GridCVCategory.OptionsCustomization.AllowFilter = false;
     this.GridCVCategory.OptionsCustomization.AllowSort   = false;
     this.GridCVCategory.OptionsView.ShowDataHeaders      = false;
     this.GridCVCategory.OptionsView.ShowFilterHeaders    = false;
     this.GridCVCategory.Size     = new System.Drawing.Size(712, 184);
     this.GridCVCategory.TabIndex = 10;
     //
     // pivotGridField4
     //
     this.pivotGridField4.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField4.AreaIndex = 0;
     this.pivotGridField4.Caption   = "Category";
     this.pivotGridField4.FieldName = "strDescription";
     this.pivotGridField4.Name      = "pivotGridField4";
     //
     // pivotGridField5
     //
     this.pivotGridField5.Area      = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField5.AreaIndex = 0;
     this.pivotGridField5.Caption   = "Branch";
     this.pivotGridField5.FieldName = "strBranchCode";
     this.pivotGridField5.Name      = "pivotGridField5";
     //
     // pivotGridField6
     //
     this.pivotGridField6.Area      = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField6.AreaIndex = 0;
     this.pivotGridField6.Caption   = "Category";
     this.pivotGridField6.FieldName = "nCategoryID";
     this.pivotGridField6.Name      = "pivotGridField6";
     //
     // GridCVDepartment
     //
     this.GridCVDepartment.Cursor = System.Windows.Forms.Cursors.Default;
     this.GridCVDepartment.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
         this.pivotGridField7,
         this.pivotGridField8,
         this.pivotGridField9
     });
     this.GridCVDepartment.Location = new System.Drawing.Point(0, 472);
     this.GridCVDepartment.Name     = "GridCVDepartment";
     this.GridCVDepartment.OptionsCustomization.AllowDrag     = false;
     this.GridCVDepartment.OptionsCustomization.AllowExpand   = false;
     this.GridCVDepartment.OptionsCustomization.AllowFilter   = false;
     this.GridCVDepartment.OptionsCustomization.AllowSort     = false;
     this.GridCVDepartment.OptionsView.ShowDataHeaders        = false;
     this.GridCVDepartment.OptionsView.ShowFilterHeaders      = false;
     this.GridCVDepartment.OptionsView.ShowFilterSeparatorBar = false;
     this.GridCVDepartment.Size     = new System.Drawing.Size(712, 184);
     this.GridCVDepartment.TabIndex = 11;
     //
     // pivotGridField7
     //
     this.pivotGridField7.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField7.AreaIndex = 0;
     this.pivotGridField7.Caption   = "Department";
     this.pivotGridField7.FieldName = "strDescription";
     this.pivotGridField7.Name      = "pivotGridField7";
     //
     // pivotGridField8
     //
     this.pivotGridField8.Area      = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField8.AreaIndex = 0;
     this.pivotGridField8.Caption   = "Branch";
     this.pivotGridField8.FieldName = "strBranchCode";
     this.pivotGridField8.Name      = "pivotGridField8";
     //
     // pivotGridField9
     //
     this.pivotGridField9.Area      = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField9.AreaIndex = 0;
     this.pivotGridField9.Caption   = "Department";
     this.pivotGridField9.FieldName = "nDepartmentID";
     this.pivotGridField9.Name      = "pivotGridField9";
     //
     // GridCVTypeCat
     //
     this.GridCVTypeCat.Cursor = System.Windows.Forms.Cursors.Default;
     this.GridCVTypeCat.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
         this.pivotGridField10,
         this.pivotGridField11,
         this.pivotGridField12,
         this.pivotGridField13,
         this.pivotGridField14
     });
     this.GridCVTypeCat.Location = new System.Drawing.Point(0, 680);
     this.GridCVTypeCat.Name     = "GridCVTypeCat";
     this.GridCVTypeCat.OptionsCustomization.AllowDrag   = false;
     this.GridCVTypeCat.OptionsCustomization.AllowExpand = false;
     this.GridCVTypeCat.OptionsCustomization.AllowFilter = false;
     this.GridCVTypeCat.OptionsCustomization.AllowSort   = false;
     this.GridCVTypeCat.OptionsView.ShowDataHeaders      = false;
     this.GridCVTypeCat.OptionsView.ShowFilterHeaders    = false;
     this.GridCVTypeCat.Size     = new System.Drawing.Size(712, 184);
     this.GridCVTypeCat.TabIndex = 12;
     //
     // pivotGridField10
     //
     this.pivotGridField10.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField10.AreaIndex = 0;
     this.pivotGridField10.Caption   = "Type";
     this.pivotGridField10.FieldName = "Type";
     this.pivotGridField10.Name      = "pivotGridField10";
     //
     // pivotGridField11
     //
     this.pivotGridField11.Area      = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField11.AreaIndex = 0;
     this.pivotGridField11.Caption   = "Category";
     this.pivotGridField11.FieldName = "Category";
     this.pivotGridField11.Name      = "pivotGridField11";
     //
     // pivotGridField12
     //
     this.pivotGridField12.Area        = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField12.AreaIndex   = 2;
     this.pivotGridField12.Caption     = "Total";
     this.pivotGridField12.FieldName   = "nTypeID";
     this.pivotGridField12.Name        = "pivotGridField12";
     this.pivotGridField12.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count;
     this.pivotGridField12.Width       = 50;
     //
     // pivotGridField13
     //
     this.pivotGridField13.Area        = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField13.AreaIndex   = 0;
     this.pivotGridField13.Caption     = "Pending";
     this.pivotGridField13.FieldName   = "Pending";
     this.pivotGridField13.Name        = "pivotGridField13";
     this.pivotGridField13.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count;
     this.pivotGridField13.Width       = 50;
     //
     // pivotGridField14
     //
     this.pivotGridField14.Area        = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField14.AreaIndex   = 1;
     this.pivotGridField14.Caption     = "Closed";
     this.pivotGridField14.FieldName   = "Closed";
     this.pivotGridField14.Name        = "pivotGridField14";
     this.pivotGridField14.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count;
     this.pivotGridField14.Width       = 45;
     //
     // GridCVSpa
     //
     this.GridCVSpa.Cursor = System.Windows.Forms.Cursors.Default;
     this.GridCVSpa.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
         this.pivotGridField15,
         this.pivotGridField16,
         this.pivotGridField17,
         this.pivotGridField18,
         this.pivotGridField19
     });
     this.GridCVSpa.Location = new System.Drawing.Point(0, 888);
     this.GridCVSpa.Name     = "GridCVSpa";
     this.GridCVSpa.OptionsCustomization.AllowDrag   = false;
     this.GridCVSpa.OptionsCustomization.AllowExpand = false;
     this.GridCVSpa.OptionsCustomization.AllowFilter = false;
     this.GridCVSpa.OptionsCustomization.AllowSort   = false;
     this.GridCVSpa.OptionsView.ShowDataHeaders      = false;
     this.GridCVSpa.OptionsView.ShowFilterHeaders    = false;
     this.GridCVSpa.Size     = new System.Drawing.Size(704, 184);
     this.GridCVSpa.TabIndex = 13;
     //
     // pivotGridField15
     //
     this.pivotGridField15.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField15.AreaIndex = 0;
     this.pivotGridField15.Caption   = "Type";
     this.pivotGridField15.FieldName = "Type";
     this.pivotGridField15.Name      = "pivotGridField15";
     //
     // pivotGridField16
     //
     this.pivotGridField16.Area      = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField16.AreaIndex = 0;
     this.pivotGridField16.Caption   = "Category";
     this.pivotGridField16.FieldName = "Category";
     this.pivotGridField16.Name      = "pivotGridField16";
     //
     // pivotGridField17
     //
     this.pivotGridField17.Area        = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField17.AreaIndex   = 2;
     this.pivotGridField17.Caption     = "Total";
     this.pivotGridField17.FieldName   = "nTypeID";
     this.pivotGridField17.Name        = "pivotGridField17";
     this.pivotGridField17.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count;
     this.pivotGridField17.Width       = 50;
     //
     // pivotGridField18
     //
     this.pivotGridField18.Area        = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField18.AreaIndex   = 0;
     this.pivotGridField18.Caption     = "Pending";
     this.pivotGridField18.FieldName   = "Pending";
     this.pivotGridField18.Name        = "pivotGridField18";
     this.pivotGridField18.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count;
     this.pivotGridField18.Width       = 50;
     //
     // pivotGridField19
     //
     this.pivotGridField19.Area        = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField19.AreaIndex   = 1;
     this.pivotGridField19.Caption     = "Closed";
     this.pivotGridField19.FieldName   = "Closed";
     this.pivotGridField19.Name        = "pivotGridField19";
     this.pivotGridField19.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count;
     this.pivotGridField19.Width       = 45;
     //
     // GridCVOffice
     //
     this.GridCVOffice.Cursor = System.Windows.Forms.Cursors.Default;
     this.GridCVOffice.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
         this.pivotGridField20,
         this.pivotGridField21,
         this.pivotGridField22,
         this.pivotGridField23,
         this.pivotGridField24
     });
     this.GridCVOffice.Location = new System.Drawing.Point(0, 1096);
     this.GridCVOffice.Name     = "GridCVOffice";
     this.GridCVOffice.OptionsCustomization.AllowDrag   = false;
     this.GridCVOffice.OptionsCustomization.AllowExpand = false;
     this.GridCVOffice.OptionsCustomization.AllowFilter = false;
     this.GridCVOffice.OptionsCustomization.AllowSort   = false;
     this.GridCVOffice.OptionsView.ShowDataHeaders      = false;
     this.GridCVOffice.OptionsView.ShowFilterHeaders    = false;
     this.GridCVOffice.Size     = new System.Drawing.Size(712, 184);
     this.GridCVOffice.TabIndex = 14;
     //
     // pivotGridField20
     //
     this.pivotGridField20.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField20.AreaIndex = 0;
     this.pivotGridField20.Caption   = "Type";
     this.pivotGridField20.FieldName = "Type";
     this.pivotGridField20.Name      = "pivotGridField20";
     //
     // pivotGridField21
     //
     this.pivotGridField21.Area      = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField21.AreaIndex = 0;
     this.pivotGridField21.Caption   = "Category";
     this.pivotGridField21.FieldName = "Category";
     this.pivotGridField21.Name      = "pivotGridField21";
     //
     // pivotGridField22
     //
     this.pivotGridField22.Area        = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField22.AreaIndex   = 2;
     this.pivotGridField22.Caption     = "Total";
     this.pivotGridField22.FieldName   = "nTypeID";
     this.pivotGridField22.Name        = "pivotGridField22";
     this.pivotGridField22.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count;
     this.pivotGridField22.Width       = 50;
     //
     // pivotGridField23
     //
     this.pivotGridField23.Area        = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField23.AreaIndex   = 0;
     this.pivotGridField23.Caption     = "Pending";
     this.pivotGridField23.FieldName   = "Pending";
     this.pivotGridField23.Name        = "pivotGridField23";
     this.pivotGridField23.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count;
     this.pivotGridField23.Width       = 50;
     //
     // pivotGridField24
     //
     this.pivotGridField24.Area        = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField24.AreaIndex   = 1;
     this.pivotGridField24.Caption     = "Closed";
     this.pivotGridField24.FieldName   = "Closed";
     this.pivotGridField24.Name        = "pivotGridField24";
     this.pivotGridField24.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count;
     this.pivotGridField24.Width       = 45;
     //
     // GridCVList
     //
     //
     // GridCVList.EmbeddedNavigator
     //
     this.GridCVList.EmbeddedNavigator.Name = "";
     this.GridCVList.Location = new System.Drawing.Point(0, 1304);
     this.GridCVList.MainView = this.gridView1;
     this.GridCVList.Name     = "GridCVList";
     this.GridCVList.Size     = new System.Drawing.Size(712, 200);
     this.GridCVList.TabIndex = 15;
     this.GridCVList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumn4,
         this.gridColumn5,
         this.gridColumn6,
         this.gridColumn7,
         this.gridColumn8,
         this.gridColumn9,
         this.gridColumn10,
         this.gridColumn11
     });
     this.gridView1.GridControl          = this.GridCVList;
     this.gridView1.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter       = false;
     this.gridView1.OptionsCustomization.AllowSort         = false;
     this.gridView1.OptionsView.ColumnAutoWidth            = false;
     this.gridView1.OptionsView.ShowGroupPanel             = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Reference No";
     this.gridColumn1.FieldName    = "nCaseID";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width        = 80;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Date";
     this.gridColumn2.FieldName    = "dtDate";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width        = 80;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "Branch";
     this.gridColumn3.FieldName    = "strBranchCode";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width        = 80;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "Department";
     this.gridColumn4.FieldName    = "Department";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width        = 150;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption      = "Type";
     this.gridColumn5.FieldName    = "Type";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width        = 80;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption      = "Member Id";
     this.gridColumn6.FieldName    = "strMembershipId";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width        = 100;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption      = "Member Name";
     this.gridColumn7.FieldName    = "strMemberName";
     this.gridColumn7.Name         = "gridColumn7";
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width        = 120;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption      = "Submitted By";
     this.gridColumn8.FieldName    = "SubmittedBy";
     this.gridColumn8.Name         = "gridColumn8";
     this.gridColumn8.Visible      = true;
     this.gridColumn8.VisibleIndex = 7;
     this.gridColumn8.Width        = 120;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption      = "Assigned To";
     this.gridColumn9.FieldName    = "AssignedTo";
     this.gridColumn9.Name         = "gridColumn9";
     this.gridColumn9.Visible      = true;
     this.gridColumn9.VisibleIndex = 8;
     this.gridColumn9.Width        = 120;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption      = "Update Date";
     this.gridColumn10.FieldName    = "dtLastEditDate";
     this.gridColumn10.Name         = "gridColumn10";
     this.gridColumn10.Visible      = true;
     this.gridColumn10.VisibleIndex = 9;
     this.gridColumn10.Width        = 100;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption      = "Status";
     this.gridColumn11.FieldName    = "Status";
     this.gridColumn11.Name         = "gridColumn11";
     this.gridColumn11.Visible      = true;
     this.gridColumn11.VisibleIndex = 10;
     this.gridColumn11.Width        = 60;
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label2.Location  = new System.Drawing.Point(0, 32);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(176, 24);
     this.label2.TabIndex  = 16;
     this.label2.Text      = "Customer Voice - By Type";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location  = new System.Drawing.Point(0, 240);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(200, 24);
     this.label3.TabIndex  = 17;
     this.label3.Text      = "Customer Voice - By Category";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label4.Location  = new System.Drawing.Point(0, 456);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(216, 16);
     this.label4.TabIndex  = 18;
     this.label4.Text      = "Customer Voice - By Department";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label5.Location  = new System.Drawing.Point(0, 656);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(328, 24);
     this.label5.TabIndex  = 19;
     this.label5.Text      = "Customer Voice - By Type and Category - Fitness";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label6.Location  = new System.Drawing.Point(0, 864);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(304, 24);
     this.label6.TabIndex  = 20;
     this.label6.Text      = "Customer Voice - By Type and Category - Spa";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label7
     //
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label7.Location  = new System.Drawing.Point(0, 1072);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(312, 24);
     this.label7.TabIndex  = 21;
     this.label7.Text      = "Customer Voice - By Type and Category - Office";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label8
     //
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label8.Location  = new System.Drawing.Point(0, 1280);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(72, 24);
     this.label8.TabIndex  = 22;
     this.label8.Text      = "CV Listing";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // btnReset
     //
     this.btnReset.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location    = new System.Drawing.Point(240, 8);
     this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnReset.Name     = "btnReset";
     this.btnReset.Size     = new System.Drawing.Size(72, 16);
     this.btnReset.TabIndex = 216;
     this.btnReset.Text     = "Enquiry";
     this.btnReset.Click   += new System.EventHandler(this.btnReset_Click);
     //
     // RPCustomerVoice
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll        = true;
     this.ClientSize        = new System.Drawing.Size(736, 581);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.label8);
     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.GridCVList);
     this.Controls.Add(this.GridCVOffice);
     this.Controls.Add(this.GridCVSpa);
     this.Controls.Add(this.GridCVTypeCat);
     this.Controls.Add(this.GridCVDepartment);
     this.Controls.Add(this.GridCVCategory);
     this.Controls.Add(this.DateFrom);
     this.Controls.Add(this.DateTo);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.DateRangeTo);
     this.Controls.Add(this.GridCVType);
     this.DockPadding.Bottom = 10;
     this.Name        = "RPCustomerVoice";
     this.Text        = "Customer Voice";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.RPCustomerVoice_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GridCVType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCVCategory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCVDepartment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCVTypeCat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCVSpa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCVOffice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridCVList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormReception));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gcShowColumns = new DevExpress.XtraEditors.GroupControl();
     this.checkEdit10 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit9 = new DevExpress.XtraEditors.CheckEdit();
     this.panel7 = new System.Windows.Forms.Panel();
     this.paDelete = new System.Windows.Forms.Panel();
     this.tbResidue = new DevExpress.XtraEditors.SpinEdit();
     this.tbAmortization = new DevExpress.XtraEditors.SpinEdit();
     this.panel5 = new System.Windows.Forms.Panel();
     this.tbTotalIgv = new DevExpress.XtraEditors.SpinEdit();
     this.tbTotalAmount = new DevExpress.XtraEditors.SpinEdit();
     this.tbSubTotalAmount = new DevExpress.XtraEditors.SpinEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.panel6 = new System.Windows.Forms.Panel();
     this.gcReception = new DevExpress.XtraGrid.GridControl();
     this.gvReception = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcRec_idrecep_sample_detail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_OrderSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Description = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDescription = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcRec_Idmr_detail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Type_Sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Procedence = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProcedence = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcRec_Code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Cod_interno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_NameSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Flag_envelope_sealed = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repEnvelope_sealed = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcRec_CantKg = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Reject = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Counter_Sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Days = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRec_Cost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repSelect = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gcDyn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDyn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_interno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Date = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Hour = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_matrix = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Cod_campo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_NameSample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Ubigeo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_UTM = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Num_bottle_plastic = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Num_bottle_glass = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAgua_Volumen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repResult = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repSendReport = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repLink = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repDesLink = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.repSample = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.tbFax = new DevExpress.XtraEditors.TextEdit();
     this.tbClientPhone = new DevExpress.XtraEditors.TextEdit();
     this.tbClientRuc = new DevExpress.XtraEditors.TextEdit();
     this.tbClientDomicile = new DevExpress.XtraEditors.TextEdit();
     this.label9 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.cbCompany = new LimsProject.MyLookUpEdit();
     this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
     this.gcContact = new DevExpress.XtraGrid.GridControl();
     this.gvContact = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcCon_Idrecep_company_person = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idperson = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idcompany = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Idrecep_sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Allname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Mail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcCon_Person_type = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPerson_type = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcCon_Phone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repPhone = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gcCon_Cellphone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repCellPhone = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repNum = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.ckDispatchFax = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchPerson = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchTransport = new DevExpress.XtraEditors.CheckEdit();
     this.ckDispatchCurier = new DevExpress.XtraEditors.CheckEdit();
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.tabOptionRight = new DevExpress.XtraTab.XtraTabControl();
     this.tpRightMethods = new DevExpress.XtraTab.XtraTabPage();
     this.lookUpEdit3 = new DevExpress.XtraEditors.LookUpEdit();
     this.gcMethods = new DevExpress.XtraGrid.GridControl();
     this.gvMethods = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcMet_Cod_template_method = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Cod_element = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Abbreviation = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Name_type_analisys = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Title = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_TypeAnalisys = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Button = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAddColumn = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcMet_Cost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Unit1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Unit_Name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Idelement = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Idtemplate_method = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcMet_Analisys_time = new DevExpress.XtraGrid.Columns.GridColumn();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.tpRightReports = new DevExpress.XtraTab.XtraTabPage();
     this.gcReport = new DevExpress.XtraGrid.GridControl();
     this.gvReport = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcRep_idrecep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_order_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_cod_recep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_report_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repStatusReport = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcRep_type_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_Option = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repReportOption = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcRep_Str_cod_recep_sample_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcRep_Date_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDateReport = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repTimeReport = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.repTypeReport = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btMakePartialReport = new DevExpress.XtraEditors.SimpleButton();
     this.btMakeFinalReport = new DevExpress.XtraEditors.SimpleButton();
     this.tpRightAttach = new DevExpress.XtraTab.XtraTabPage();
     this.gcAttachFile = new DevExpress.XtraGrid.GridControl();
     this.gvAttachFile = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcAtt_Iddocument_recep = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Idrecep_sample = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_FileName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAttach_file = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcAtt_Attach_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repAttach_status = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcAtt_Buttons = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repButtons = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcAtt_SourcePath = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Order_file = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcAtt_Idrecep_sample_attach = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btNewFile = new DevExpress.XtraEditors.SimpleButton();
     this.tpRightProgram = new DevExpress.XtraTab.XtraTabPage();
     this.gcProgram = new DevExpress.XtraGrid.GridControl();
     this.gvProgram = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcProg_Idrecep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Order_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Cod_recep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcProg_Program_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProgramStatus = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repProgramButton = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gcProg_Date_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repDateProgram = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gcProg_Time_report = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repTimeProgram = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gcProg_Str_cod_recep_sample_program = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.btProgramSelection = new DevExpress.XtraEditors.SimpleButton();
     this.btPrintTicket = new System.Windows.Forms.Button();
     this.btDesignPrint = new System.Windows.Forms.Button();
     this.deReception = new DevExpress.XtraEditors.DateEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.deResult = new DevExpress.XtraEditors.DateEdit();
     this.xtraTabControl2 = new DevExpress.XtraTab.XtraTabControl();
     this.tabDateRegRecep = new DevExpress.XtraTab.XtraTabPage();
     this.tbNumDays = new DevExpress.XtraEditors.SpinEdit();
     this.deHourResult = new DevExpress.XtraEditors.TimeEdit();
     this.deHourReception = new DevExpress.XtraEditors.TimeEdit();
     this.label27 = new System.Windows.Forms.Label();
     this.lookUpEdit1 = new DevExpress.XtraEditors.LookUpEdit();
     this.textEdit3 = new DevExpress.XtraEditors.TextEdit();
     this.btReportClient = new System.Windows.Forms.Button();
     this.txIdrecep_sample = new DevExpress.XtraEditors.TextEdit();
     this.label25 = new System.Windows.Forms.Label();
     this.cbTypeSample = new LimsProject.MyLookUpEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.ofdRecepFileAttach = new System.Windows.Forms.OpenFileDialog();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.label14 = new System.Windows.Forms.Label();
     this.tbAdministrativeExpense = new DevExpress.XtraEditors.SpinEdit();
     this.tbCod_recep_sample = new DevExpress.XtraEditors.TextEdit();
     this.ucSignReception = new LimsProject.UcSign();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.panel9 = new System.Windows.Forms.Panel();
     this.panel11 = new System.Windows.Forms.Panel();
     this.paTypeSample = new System.Windows.Forms.Panel();
     this.paCodRegisterRecep = new System.Windows.Forms.Panel();
     this.ucTitleRegisterRecep = new LimsProject.UcTitle();
     this.ucToolStrip1 = new LimsProject.UcToolStrip();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.ucGenerarA = new LimsProject.UcGenerar();
     this.ucGenerarDesde = new LimsProject.UcGenerar();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl3 = new DevExpress.XtraTab.XtraTabControl();
     this.tpMuestras = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
     this.tpAnexos = new DevExpress.XtraTab.XtraTabPage();
     this.checkEdit8 = new DevExpress.XtraEditors.CheckEdit();
     this.memoEdit1 = new DevExpress.XtraEditors.MemoEdit();
     this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.timeEdit1 = new DevExpress.XtraEditors.TimeEdit();
     this.label17 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit5 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.textEdit5 = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.tpReject = new DevExpress.XtraTab.XtraTabPage();
     this.memoEdit2 = new DevExpress.XtraEditors.MemoEdit();
     this.label20 = new System.Windows.Forms.Label();
     this.gcRejection = new DevExpress.XtraGrid.GridControl();
     this.bandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcRej_Code = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_NameSample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Date = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Hora = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_Obs = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcRej_C1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gcRej_C4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.tpDecree = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl4 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.gridDecretos = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcDec_Idmetodo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repMetodo = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Parametro = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Unidad_medida = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repUnidadMedida = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Result = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Criterio = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repCriterio = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gcDec_Valor1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Valor2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcDec_Conclusion = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.memoEdit3 = new DevExpress.XtraEditors.MemoEdit();
     this.label23 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.textEdit4 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit6 = new DevExpress.XtraEditors.TextEdit();
     this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
     this.memoEdit4 = new DevExpress.XtraEditors.MemoEdit();
     this.label22 = new System.Windows.Forms.Label();
     this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPage7 = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.lookUpEdit2 = new DevExpress.XtraEditors.LookUpEdit();
     this.label31 = new System.Windows.Forms.Label();
     this.paTitleSearch.SuspendLayout();
     this.paTopBasicButtons.SuspendLayout();
     this.paTopSearch.SuspendLayout();
     this.paBottomSearch.SuspendLayout();
     this.panel1.SuspendLayout();
     this.paSearchGen.SuspendLayout();
     this.panel2.SuspendLayout();
     this.paInferior.SuspendLayout();
     this.paTitulo.SuspendLayout();
     this.paCentral.SuspendLayout();
     this.paSuperior.SuspendLayout();
     this.thePanelTab1.SuspendLayout();
     this.tpDatos.SuspendLayout();
     this.paSupBotones.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcShowColumns)).BeginInit();
     this.gcShowColumns.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).BeginInit();
     this.panel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbResidue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmortization.Properties)).BeginInit();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalIgv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSubTotalAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcReception)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReception)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDescription)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repEnvelope_sealed)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSelect)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repResult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSendReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLink)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDesLink)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSample)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientPhone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientRuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientDomicile.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).BeginInit();
     this.xtraTabPage6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPerson_type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCellPhone)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNum)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchFax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchPerson.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchTransport.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchCurier.Properties)).BeginInit();
     this.expandablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabOptionRight)).BeginInit();
     this.tabOptionRight.SuspendLayout();
     this.tpRightMethods.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcMethods)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMethods)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAddColumn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     this.tpRightReports.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repStatusReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repReportOption)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTypeReport)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.tpRightAttach.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcAttachFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAttachFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_file)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_status)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repButtons)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.tpRightProgram.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deReception.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deResult.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit();
     this.xtraTabControl2.SuspendLayout();
     this.tabDateRegRecep.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbNumDays.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourResult.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourReception.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txIdrecep_sample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAdministrativeExpense.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCod_recep_sample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.panel9.SuspendLayout();
     this.panel11.SuspendLayout();
     this.paTypeSample.SuspendLayout();
     this.paCodRegisterRecep.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl3)).BeginInit();
     this.xtraTabControl3.SuspendLayout();
     this.tpMuestras.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
     this.panelControl7.SuspendLayout();
     this.tpAnexos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).BeginInit();
     this.tpReject.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcRejection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).BeginInit();
     this.tpDecree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl4)).BeginInit();
     this.xtraTabControl4.SuspendLayout();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDecretos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repMetodo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repUnidadMedida)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCriterio)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
     this.panelControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.Images.SetKeyName(0, "save.png");
     this.imageList1.Images.SetKeyName(1, "nuevo.png");
     this.imageList1.Images.SetKeyName(2, "eliminar.png");
     this.imageList1.Images.SetKeyName(3, "buscar.png");
     this.imageList1.Images.SetKeyName(4, "salir.png");
     this.imageList1.Images.SetKeyName(5, "cancelar.png");
     this.imageList1.Images.SetKeyName(6, "ok.png");
     this.imageList1.Images.SetKeyName(7, "deshacer.png");
     this.imageList1.Images.SetKeyName(8, "editar.png");
     this.imageList1.Images.SetKeyName(9, "uncheck16x16.png");
     this.imageList1.Images.SetKeyName(10, "check16x16.png");
     this.imageList1.Images.SetKeyName(11, "stock-copy.png");
     this.imageList1.Images.SetKeyName(12, "copy_blusky.png");
     this.imageList1.Images.SetKeyName(13, "copy_price.png");
     //
     // paTitleSearch
     //
     this.paTitleSearch.Size = new System.Drawing.Size(526, 37);
     //
     // label1
     //
     this.label1.Size = new System.Drawing.Size(443, 37);
     this.label1.Text = "Recepción de Muestras - Búsqueda";
     //
     // txtBuscar
     //
     this.txtBuscar.Location = new System.Drawing.Point(774, 56);
     this.txtBuscar.Size = new System.Drawing.Size(40, 21);
     this.txtBuscar.Visible = false;
     //
     // cbCampo
     //
     this.cbCampo.Location = new System.Drawing.Point(872, 56);
     this.cbCampo.Size = new System.Drawing.Size(35, 21);
     this.cbCampo.Visible = false;
     //
     // paTopBasicButtons
     //
     this.paTopBasicButtons.Controls.Add(this.ucGenerarDesde);
     this.paTopBasicButtons.Controls.Add(this.ucGenerarA);
     this.paTopBasicButtons.Controls.Add(this.ucSignReception);
     this.paTopBasicButtons.Size = new System.Drawing.Size(714, 46);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btEliminar2, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btNuevo2, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.btGuardar, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucSignReception, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucGenerarA, 0);
     this.paTopBasicButtons.Controls.SetChildIndex(this.ucGenerarDesde, 0);
     //
     // btSalir2
     //
     this.btSalir2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btSalir2.FlatAppearance.BorderSize = 0;
     this.btSalir2.Location = new System.Drawing.Point(10, 5);
     this.btSalir2.TabStop = false;
     //
     // btGuardar
     //
     this.btGuardar.Enabled = false;
     this.btGuardar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btGuardar.FlatAppearance.BorderSize = 0;
     this.btGuardar.Location = new System.Drawing.Point(138, 4);
     this.btGuardar.Size = new System.Drawing.Size(62, 25);
     this.btGuardar.Text = "&Firmar";
     this.btGuardar.Visible = false;
     //
     // btNuevo2
     //
     this.btNuevo2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btNuevo2.FlatAppearance.BorderSize = 0;
     this.btNuevo2.Location = new System.Drawing.Point(151, 10);
     this.btNuevo2.Visible = false;
     //
     // btEliminar2
     //
     this.btEliminar2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEliminar2.FlatAppearance.BorderSize = 0;
     this.btEliminar2.Location = new System.Drawing.Point(138, 21);
     this.btEliminar2.Visible = false;
     //
     // paTopSearch
     //
     this.paTopSearch.Size = new System.Drawing.Size(526, 53);
     //
     // paBottomSearch
     //
     this.paBottomSearch.Location = new System.Drawing.Point(3, 201);
     this.paBottomSearch.Size = new System.Drawing.Size(526, 43);
     this.paBottomSearch.Visible = false;
     //
     // btBuscar
     //
     this.btBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btBuscar.FlatAppearance.BorderSize = 0;
     this.btBuscar.Location = new System.Drawing.Point(12, 2);
     //
     // btEditar
     //
     this.btEditar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEditar.FlatAppearance.BorderSize = 0;
     //
     // btCancel
     //
     this.btCancel.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btCancel.FlatAppearance.BorderSize = 0;
     //
     // btOk
     //
     this.btOk.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btOk.FlatAppearance.BorderSize = 0;
     //
     // panel1
     //
     this.panel1.Location = new System.Drawing.Point(927, 0);
     this.panel1.Size = new System.Drawing.Size(72, 46);
     //
     // btFiltroBuscar
     //
     this.btFiltroBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btFiltroBuscar.FlatAppearance.BorderSize = 0;
     this.btFiltroBuscar.Location = new System.Drawing.Point(495, 17);
     //
     // paSearchGen
     //
     this.paSearchGen.Location = new System.Drawing.Point(5, 2);
     this.paSearchGen.Size = new System.Drawing.Size(930, 49);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(823, 58);
     this.label3.Visible = false;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(656, 52);
     this.label2.Visible = false;
     //
     // paMiddleFind
     //
     this.paMiddleFind.Location = new System.Drawing.Point(3, 93);
     this.paMiddleFind.Size = new System.Drawing.Size(526, 108);
     //
     // panel2
     //
     this.panel2.Dock = System.Windows.Forms.DockStyle.None;
     this.panel2.Size = new System.Drawing.Size(74, 21);
     //
     // paInferior
     //
     this.paInferior.Controls.Add(this.btReportClient);
     this.paInferior.Controls.Add(this.btDesignPrint);
     this.paInferior.Controls.Add(this.btPrintTicket);
     this.paInferior.Location = new System.Drawing.Point(3, 559);
     this.paInferior.Size = new System.Drawing.Size(999, 46);
     this.paInferior.Controls.SetChildIndex(this.panel1, 0);
     this.paInferior.Controls.SetChildIndex(this.paTopBasicButtons, 0);
     this.paInferior.Controls.SetChildIndex(this.btPrintTicket, 0);
     this.paInferior.Controls.SetChildIndex(this.btDesignPrint, 0);
     this.paInferior.Controls.SetChildIndex(this.btReportClient, 0);
     //
     // paTitulo
     //
     this.paTitulo.Controls.Add(this.ucTitleRegisterRecep);
     this.paTitulo.Size = new System.Drawing.Size(999, 27);
     this.paTitulo.Visible = false;
     this.paTitulo.Controls.SetChildIndex(this.panel2, 0);
     this.paTitulo.Controls.SetChildIndex(this.laTitulo, 0);
     this.paTitulo.Controls.SetChildIndex(this.ucTitleRegisterRecep, 0);
     //
     // paCentral
     //
     this.paCentral.Controls.Add(this.panelControl2);
     this.paCentral.Location = new System.Drawing.Point(3, 176);
     this.paCentral.Size = new System.Drawing.Size(999, 383);
     //
     // paSuperior
     //
     this.paSuperior.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.paSuperior.Controls.Add(this.panelControl1);
     this.paSuperior.Location = new System.Drawing.Point(3, 30);
     this.paSuperior.Size = new System.Drawing.Size(999, 146);
     //
     // laTitulo
     //
     this.laTitulo.Dock = System.Windows.Forms.DockStyle.None;
     this.laTitulo.Size = new System.Drawing.Size(602, 27);
     this.laTitulo.Text = "Registro de Recepción";
     //
     // thePanelTab1
     //
     this.thePanelTab1.Location = new System.Drawing.Point(0, 25);
     this.thePanelTab1.Size = new System.Drawing.Size(1013, 637);
     //
     // tpDatos
     //
     this.tpDatos.Size = new System.Drawing.Size(1005, 608);
     //
     // paSupBotones
     //
     this.paSupBotones.Controls.Add(this.ucToolStrip1);
     this.paSupBotones.Padding = new System.Windows.Forms.Padding(0);
     this.paSupBotones.Size = new System.Drawing.Size(1013, 25);
     this.paSupBotones.Visible = true;
     //
     // gcShowColumns
     //
     this.gcShowColumns.Controls.Add(this.checkEdit10);
     this.gcShowColumns.Controls.Add(this.checkEdit9);
     this.gcShowColumns.Location = new System.Drawing.Point(230, 8);
     this.gcShowColumns.Name = "gcShowColumns";
     this.gcShowColumns.Size = new System.Drawing.Size(176, 46);
     this.gcShowColumns.TabIndex = 24;
     this.gcShowColumns.Text = "Mostrar columnas";
     //
     // checkEdit10
     //
     this.checkEdit10.Location = new System.Drawing.Point(96, 21);
     this.checkEdit10.Name = "checkEdit10";
     this.checkEdit10.Properties.Caption = "Métodos";
     this.checkEdit10.Size = new System.Drawing.Size(75, 19);
     this.checkEdit10.TabIndex = 23;
     //
     // checkEdit9
     //
     this.checkEdit9.Location = new System.Drawing.Point(15, 21);
     this.checkEdit9.Name = "checkEdit9";
     this.checkEdit9.Properties.Caption = "Datos";
     this.checkEdit9.Size = new System.Drawing.Size(75, 19);
     this.checkEdit9.TabIndex = 23;
     //
     // panel7
     //
     this.panel7.Controls.Add(this.paDelete);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel7.Location = new System.Drawing.Point(492, 2);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(53, 66);
     this.panel7.TabIndex = 22;
     //
     // paDelete
     //
     this.paDelete.AllowDrop = true;
     this.paDelete.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.paDelete.BackgroundImage = global::LimsProject.Properties.Resources.delete_column;
     this.paDelete.Location = new System.Drawing.Point(19, 2);
     this.paDelete.Name = "paDelete";
     this.paDelete.Size = new System.Drawing.Size(31, 32);
     this.paDelete.TabIndex = 21;
     this.paDelete.DragDrop += new System.Windows.Forms.DragEventHandler(this.paDelete_DragDrop);
     this.paDelete.DragEnter += new System.Windows.Forms.DragEventHandler(this.paDelete_DragEnter);
     //
     // tbResidue
     //
     this.tbResidue.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbResidue.Location = new System.Drawing.Point(82, 25);
     this.tbResidue.Name = "tbResidue";
     this.tbResidue.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbResidue.Properties.Appearance.Options.UseBackColor = true;
     this.tbResidue.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbResidue.Properties.Mask.EditMask = "n2";
     this.tbResidue.Size = new System.Drawing.Size(87, 20);
     this.tbResidue.TabIndex = 17;
     //
     // tbAmortization
     //
     this.tbAmortization.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAmortization.Location = new System.Drawing.Point(82, 5);
     this.tbAmortization.Name = "tbAmortization";
     this.tbAmortization.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbAmortization.Properties.Appearance.Options.UseBackColor = true;
     this.tbAmortization.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbAmortization.Properties.Mask.EditMask = "n2";
     this.tbAmortization.Size = new System.Drawing.Size(87, 20);
     this.tbAmortization.TabIndex = 17;
     this.tbAmortization.EditValueChanged += new System.EventHandler(this.tbAmortization_EditValueChanged);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.tbTotalIgv);
     this.panel5.Controls.Add(this.tbTotalAmount);
     this.panel5.Controls.Add(this.tbSubTotalAmount);
     this.panel5.Controls.Add(this.label7);
     this.panel5.Controls.Add(this.label5);
     this.panel5.Controls.Add(this.label4);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel5.Location = new System.Drawing.Point(545, 2);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(152, 66);
     this.panel5.TabIndex = 22;
     //
     // tbTotalIgv
     //
     this.tbTotalIgv.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbTotalIgv.Location = new System.Drawing.Point(58, 23);
     this.tbTotalIgv.Name = "tbTotalIgv";
     this.tbTotalIgv.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbTotalIgv.Properties.Appearance.Options.UseBackColor = true;
     this.tbTotalIgv.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbTotalIgv.Properties.Mask.EditMask = "n2";
     this.tbTotalIgv.Properties.ReadOnly = true;
     this.tbTotalIgv.Size = new System.Drawing.Size(87, 20);
     this.tbTotalIgv.TabIndex = 17;
     this.tbTotalIgv.TabStop = false;
     //
     // tbTotalAmount
     //
     this.tbTotalAmount.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbTotalAmount.Location = new System.Drawing.Point(58, 43);
     this.tbTotalAmount.Name = "tbTotalAmount";
     this.tbTotalAmount.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbTotalAmount.Properties.Appearance.Options.UseBackColor = true;
     this.tbTotalAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbTotalAmount.Properties.Mask.EditMask = "n2";
     this.tbTotalAmount.Properties.ReadOnly = true;
     this.tbTotalAmount.Size = new System.Drawing.Size(87, 20);
     this.tbTotalAmount.TabIndex = 17;
     this.tbTotalAmount.TabStop = false;
     //
     // tbSubTotalAmount
     //
     this.tbSubTotalAmount.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbSubTotalAmount.Location = new System.Drawing.Point(58, 3);
     this.tbSubTotalAmount.Name = "tbSubTotalAmount";
     this.tbSubTotalAmount.Properties.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     this.tbSubTotalAmount.Properties.Appearance.Options.UseBackColor = true;
     this.tbSubTotalAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbSubTotalAmount.Properties.Mask.EditMask = "n2";
     this.tbSubTotalAmount.Properties.ReadOnly = true;
     this.tbSubTotalAmount.Size = new System.Drawing.Size(87, 20);
     this.tbSubTotalAmount.TabIndex = 17;
     this.tbSubTotalAmount.TabStop = false;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(6, 46);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(34, 13);
     this.label7.TabIndex = 16;
     this.label7.Text = "Total:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(6, 26);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(25, 13);
     this.label5.TabIndex = 16;
     this.label5.Text = "Igv:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(6, 6);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(52, 13);
     this.label4.TabIndex = 16;
     this.label4.Text = "Sub total:";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(10, 8);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(70, 13);
     this.label13.TabIndex = 16;
     this.label13.Text = "Amortización:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(12, 28);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(37, 13);
     this.label10.TabIndex = 16;
     this.label10.Text = "Saldo:";
     //
     // panel6
     //
     this.panel6.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel6.Location = new System.Drawing.Point(542, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(191, 77);
     this.panel6.TabIndex = 3;
     //
     // gcReception
     //
     this.gcReception.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcReception.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gcReception.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gcReception.EmbeddedNavigator.Enabled = false;
     this.gcReception.EmbeddedNavigator.Name = "";
     this.gcReception.Location = new System.Drawing.Point(0, 0);
     this.gcReception.MainView = this.gvReception;
     this.gcReception.Name = "gcReception";
     this.gcReception.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repDescription,
     this.repSelect,
     this.repResult,
     this.repSendReport,
     this.repLink,
     this.repDesLink,
     this.repProcedence,
     this.repSample,
     this.repEnvelope_sealed});
     this.gcReception.Size = new System.Drawing.Size(699, 288);
     this.gcReception.TabIndex = 1;
     this.gcReception.UseEmbeddedNavigator = true;
     this.gcReception.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReception});
     this.gcReception.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gcReception_MouseDown);
     this.gcReception.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gcReception_MouseMove);
     //
     // gvReception
     //
     this.gvReception.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvReception.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvReception.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.Empty.Options.UseBackColor = true;
     this.gvReception.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvReception.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvReception.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvReception.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvReception.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvReception.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvReception.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvReception.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvReception.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvReception.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReception.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvReception.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReception.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvReception.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReception.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvReception.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvReception.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvReception.Appearance.GroupRow.Options.UseFont = true;
     this.gvReception.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvReception.Appearance.HeaderPanel.BackColor = System.Drawing.Color.LightSteelBlue;
     this.gvReception.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.LightSteelBlue;
     this.gvReception.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvReception.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvReception.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvReception.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvReception.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvReception.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReception.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvReception.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.OddRow.Options.UseBackColor = true;
     this.gvReception.Appearance.OddRow.Options.UseForeColor = true;
     this.gvReception.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvReception.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvReception.Appearance.Preview.Options.UseBackColor = true;
     this.gvReception.Appearance.Preview.Options.UseForeColor = true;
     this.gvReception.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvReception.Appearance.Row.Options.UseBackColor = true;
     this.gvReception.Appearance.Row.Options.UseForeColor = true;
     this.gvReception.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvReception.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvReception.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvReception.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvReception.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvReception.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvReception.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReception.Appearance.VertLine.Options.UseBackColor = true;
     this.gvReception.ColumnPanelRowHeight = 125;
     this.gvReception.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcRec_idrecep_sample_detail,
     this.gcRec_OrderSample,
     this.gcRec_Description,
     this.gcRec_Idmr_detail,
     this.gcRec_Type_Sample,
     this.gcRec_Procedence,
     this.gcRec_Code,
     this.gcRec_Cod_interno,
     this.gcRec_NameSample,
     this.gcRec_Flag_envelope_sealed,
     this.gcRec_CantKg,
     this.gcRec_Reject,
     this.gcRec_Counter_Sample,
     this.gcRec_Days,
     this.gcRec_Cost,
     this.gcDyn1,
     this.gcDyn2,
     this.gcDyn3,
     this.gcDyn4,
     this.gcDyn5,
     this.gcDyn6,
     this.gcDyn7,
     this.gcDyn8,
     this.gcDyn9,
     this.gcDyn10,
     this.gcDyn11,
     this.gcDyn12,
     this.gcDyn13,
     this.gcDyn14,
     this.gcDyn15,
     this.gcDyn16,
     this.gcDyn17,
     this.gcDyn18,
     this.gcDyn19,
     this.gcDyn20,
     this.gcAgua_Code,
     this.gcAgua_Cod_interno,
     this.gcAgua_Date,
     this.gcAgua_Hour,
     this.gcAgua_Cod_matrix,
     this.gcAgua_Cod_campo,
     this.gcAgua_NameSample,
     this.gcAgua_Ubigeo,
     this.gcAgua_UTM,
     this.gcAgua_Num_bottle_plastic,
     this.gcAgua_Num_bottle_glass,
     this.gcAgua_Volumen});
     this.gvReception.GridControl = this.gcReception;
     this.gvReception.Images = this.imageList1;
     this.gvReception.Name = "gvReception";
     this.gvReception.OptionsCustomization.AllowColumnMoving = false;
     this.gvReception.OptionsCustomization.AllowSort = false;
     this.gvReception.OptionsFilter.AllowColumnMRUFilterList = false;
     this.gvReception.OptionsFilter.AllowMRUFilterList = false;
     this.gvReception.OptionsSelection.MultiSelect = true;
     this.gvReception.OptionsView.ColumnAutoWidth = false;
     this.gvReception.OptionsView.EnableAppearanceEvenRow = true;
     this.gvReception.OptionsView.EnableAppearanceOddRow = true;
     this.gvReception.OptionsView.ShowFilterPanel = false;
     this.gvReception.OptionsView.ShowGroupPanel = false;
     this.gvReception.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gvReception_CustomDrawColumnHeader);
     this.gvReception.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvReception_RowCellStyle);
     this.gvReception.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvReception_InitNewRow);
     this.gvReception.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvReception_FocusedRowChanged);
     this.gvReception.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gvReception_CellValueChanging);
     this.gvReception.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gvReception_KeyDown);
     this.gvReception.Click += new System.EventHandler(this.gvReception_Click);
     this.gvReception.RowCountChanged += new System.EventHandler(this.gvReception_RowCountChanged);
     //
     // gcRec_idrecep_sample_detail
     //
     this.gcRec_idrecep_sample_detail.Caption = "gridColumn1";
     this.gcRec_idrecep_sample_detail.FieldName = "Idrecep_sample_detail";
     this.gcRec_idrecep_sample_detail.Name = "gcRec_idrecep_sample_detail";
     //
     // gcRec_OrderSample
     //
     this.gcRec_OrderSample.Caption = "N°";
     this.gcRec_OrderSample.FieldName = "Order_sample";
     this.gcRec_OrderSample.Name = "gcRec_OrderSample";
     this.gcRec_OrderSample.OptionsColumn.AllowEdit = false;
     this.gcRec_OrderSample.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gcRec_OrderSample.Visible = true;
     this.gcRec_OrderSample.VisibleIndex = 0;
     this.gcRec_OrderSample.Width = 32;
     //
     // gcRec_Description
     //
     this.gcRec_Description.Caption = "Descripción";
     this.gcRec_Description.ColumnEdit = this.repDescription;
     this.gcRec_Description.FieldName = "Cod_des_sample";
     this.gcRec_Description.Name = "gcRec_Description";
     this.gcRec_Description.Visible = true;
     this.gcRec_Description.VisibleIndex = 1;
     this.gcRec_Description.Width = 108;
     //
     // repDescription
     //
     this.repDescription.AutoHeight = false;
     serializableAppearanceObject1.BackColor = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.BackColor2 = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.BorderColor = System.Drawing.Color.Transparent;
     serializableAppearanceObject1.Options.UseBackColor = true;
     serializableAppearanceObject1.Options.UseBorderColor = true;
     this.repDescription.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.copiar, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1)});
     this.repDescription.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_des_sample", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Description")});
     this.repDescription.DisplayMember = "Description";
     this.repDescription.Name = "repDescription";
     this.repDescription.NullText = "Seleccionar";
     this.repDescription.ShowHeader = false;
     this.repDescription.ValueMember = "Cod_des_sample";
     this.repDescription.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repDescription_ButtonClick);
     this.repDescription.EditValueChanged += new System.EventHandler(this.repDescription_EditValueChanged);
     //
     // gcRec_Idmr_detail
     //
     this.gcRec_Idmr_detail.Caption = "Idmr_detail";
     this.gcRec_Idmr_detail.FieldName = "Idmr_detail";
     this.gcRec_Idmr_detail.Name = "gcRec_Idmr_detail";
     //
     // gcRec_Type_Sample
     //
     this.gcRec_Type_Sample.Caption = "Tipo de Muestra";
     this.gcRec_Type_Sample.FieldName = "Cod_type_sample";
     this.gcRec_Type_Sample.Name = "gcRec_Type_Sample";
     this.gcRec_Type_Sample.Width = 125;
     //
     // gcRec_Procedence
     //
     this.gcRec_Procedence.Caption = "Procedencia";
     this.gcRec_Procedence.ColumnEdit = this.repProcedence;
     this.gcRec_Procedence.FieldName = "Procedence";
     this.gcRec_Procedence.Name = "gcRec_Procedence";
     this.gcRec_Procedence.Visible = true;
     this.gcRec_Procedence.VisibleIndex = 2;
     this.gcRec_Procedence.Width = 113;
     //
     // repProcedence
     //
     this.repProcedence.AutoHeight = false;
     this.repProcedence.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.copiar)});
     this.repProcedence.Name = "repProcedence";
     this.repProcedence.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repProcedence_ButtonClick);
     //
     // gcRec_Code
     //
     this.gcRec_Code.Caption = "Código";
     this.gcRec_Code.FieldName = "Cod_sample";
     this.gcRec_Code.Name = "gcRec_Code";
     this.gcRec_Code.OptionsColumn.AllowEdit = false;
     this.gcRec_Code.Visible = true;
     this.gcRec_Code.VisibleIndex = 3;
     this.gcRec_Code.Width = 82;
     //
     // gcRec_Cod_interno
     //
     this.gcRec_Cod_interno.Caption = "Cod_interno";
     this.gcRec_Cod_interno.FieldName = "Cod_interno";
     this.gcRec_Cod_interno.Name = "gcRec_Cod_interno";
     //
     // gcRec_NameSample
     //
     this.gcRec_NameSample.Caption = "Nombre ";
     this.gcRec_NameSample.FieldName = "Name_sample";
     this.gcRec_NameSample.Name = "gcRec_NameSample";
     this.gcRec_NameSample.Visible = true;
     this.gcRec_NameSample.VisibleIndex = 4;
     this.gcRec_NameSample.Width = 114;
     //
     // gcRec_Flag_envelope_sealed
     //
     this.gcRec_Flag_envelope_sealed.Caption = "Sobre sellado";
     this.gcRec_Flag_envelope_sealed.ColumnEdit = this.repEnvelope_sealed;
     this.gcRec_Flag_envelope_sealed.FieldName = "Flag_envelope_sealed";
     this.gcRec_Flag_envelope_sealed.Name = "gcRec_Flag_envelope_sealed";
     this.gcRec_Flag_envelope_sealed.Visible = true;
     this.gcRec_Flag_envelope_sealed.VisibleIndex = 5;
     this.gcRec_Flag_envelope_sealed.Width = 41;
     //
     // repEnvelope_sealed
     //
     this.repEnvelope_sealed.AutoHeight = false;
     this.repEnvelope_sealed.Name = "repEnvelope_sealed";
     //
     // gcRec_CantKg
     //
     this.gcRec_CantKg.Caption = "Cant (kg)";
     this.gcRec_CantKg.FieldName = "Amount_weight";
     this.gcRec_CantKg.Name = "gcRec_CantKg";
     this.gcRec_CantKg.Visible = true;
     this.gcRec_CantKg.VisibleIndex = 6;
     this.gcRec_CantKg.Width = 52;
     //
     // gcRec_Reject
     //
     this.gcRec_Reject.Caption = "Rechazo";
     this.gcRec_Reject.FieldName = "Flag_reject";
     this.gcRec_Reject.ImageIndex = 9;
     this.gcRec_Reject.Name = "gcRec_Reject";
     this.gcRec_Reject.Visible = true;
     this.gcRec_Reject.VisibleIndex = 7;
     this.gcRec_Reject.Width = 50;
     //
     // gcRec_Counter_Sample
     //
     this.gcRec_Counter_Sample.Caption = "Contramuestra";
     this.gcRec_Counter_Sample.FieldName = "Flag_counter_sample";
     this.gcRec_Counter_Sample.Name = "gcRec_Counter_Sample";
     this.gcRec_Counter_Sample.Visible = true;
     this.gcRec_Counter_Sample.VisibleIndex = 8;
     this.gcRec_Counter_Sample.Width = 50;
     //
     // gcRec_Days
     //
     this.gcRec_Days.Caption = "Entrega(dias)";
     this.gcRec_Days.FieldName = "Analisys_time";
     this.gcRec_Days.Name = "gcRec_Days";
     this.gcRec_Days.Width = 41;
     //
     // gcRec_Cost
     //
     this.gcRec_Cost.Caption = "Costo";
     this.gcRec_Cost.FieldName = "Cost_sample";
     this.gcRec_Cost.Name = "gcRec_Cost";
     this.gcRec_Cost.Visible = true;
     this.gcRec_Cost.VisibleIndex = 9;
     this.gcRec_Cost.Width = 50;
     //
     // gcDyn1
     //
     this.gcDyn1.Caption = "gridColumn1";
     this.gcDyn1.ColumnEdit = this.repSelect;
     this.gcDyn1.FieldName = "rec1";
     this.gcDyn1.Name = "gcDyn1";
     this.gcDyn1.Width = 40;
     //
     // repSelect
     //
     this.repSelect.AutoHeight = false;
     this.repSelect.Name = "repSelect";
     //
     // gcDyn2
     //
     this.gcDyn2.Caption = "gridColumn2";
     this.gcDyn2.ColumnEdit = this.repSelect;
     this.gcDyn2.FieldName = "rec2";
     this.gcDyn2.Name = "gcDyn2";
     this.gcDyn2.Width = 40;
     //
     // gcDyn3
     //
     this.gcDyn3.Caption = "gridColumn3";
     this.gcDyn3.ColumnEdit = this.repSelect;
     this.gcDyn3.FieldName = "rec3";
     this.gcDyn3.Name = "gcDyn3";
     this.gcDyn3.Width = 35;
     //
     // gcDyn4
     //
     this.gcDyn4.Caption = "gridColumn4";
     this.gcDyn4.ColumnEdit = this.repSelect;
     this.gcDyn4.FieldName = "rec4";
     this.gcDyn4.Name = "gcDyn4";
     this.gcDyn4.Width = 35;
     //
     // gcDyn5
     //
     this.gcDyn5.Caption = "gridColumn5";
     this.gcDyn5.ColumnEdit = this.repSelect;
     this.gcDyn5.FieldName = "rec5";
     this.gcDyn5.Name = "gcDyn5";
     this.gcDyn5.Width = 35;
     //
     // gcDyn6
     //
     this.gcDyn6.Caption = "gridColumn6";
     this.gcDyn6.ColumnEdit = this.repSelect;
     this.gcDyn6.FieldName = "rec6";
     this.gcDyn6.Name = "gcDyn6";
     this.gcDyn6.Width = 35;
     //
     // gcDyn7
     //
     this.gcDyn7.Caption = "gridColumn7";
     this.gcDyn7.ColumnEdit = this.repSelect;
     this.gcDyn7.FieldName = "rec7";
     this.gcDyn7.Name = "gcDyn7";
     this.gcDyn7.Width = 35;
     //
     // gcDyn8
     //
     this.gcDyn8.Caption = "gridColumn8";
     this.gcDyn8.ColumnEdit = this.repSelect;
     this.gcDyn8.FieldName = "rec8";
     this.gcDyn8.Name = "gcDyn8";
     this.gcDyn8.Width = 35;
     //
     // gcDyn9
     //
     this.gcDyn9.Caption = "gridColumn9";
     this.gcDyn9.ColumnEdit = this.repSelect;
     this.gcDyn9.FieldName = "rec9";
     this.gcDyn9.Name = "gcDyn9";
     this.gcDyn9.Width = 35;
     //
     // gcDyn10
     //
     this.gcDyn10.Caption = "gridColumn10";
     this.gcDyn10.ColumnEdit = this.repSelect;
     this.gcDyn10.FieldName = "rec10";
     this.gcDyn10.Name = "gcDyn10";
     this.gcDyn10.Width = 35;
     //
     // gcDyn11
     //
     this.gcDyn11.Caption = "gridColumn11";
     this.gcDyn11.ColumnEdit = this.repSelect;
     this.gcDyn11.FieldName = "rec11";
     this.gcDyn11.Name = "gcDyn11";
     this.gcDyn11.Width = 35;
     //
     // gcDyn12
     //
     this.gcDyn12.Caption = "gridColumn12";
     this.gcDyn12.ColumnEdit = this.repSelect;
     this.gcDyn12.FieldName = "rec12";
     this.gcDyn12.Name = "gcDyn12";
     this.gcDyn12.Width = 35;
     //
     // gcDyn13
     //
     this.gcDyn13.Caption = "gridColumn13";
     this.gcDyn13.ColumnEdit = this.repSelect;
     this.gcDyn13.FieldName = "rec13";
     this.gcDyn13.Name = "gcDyn13";
     this.gcDyn13.Width = 35;
     //
     // gcDyn14
     //
     this.gcDyn14.Caption = "gridColumn14";
     this.gcDyn14.ColumnEdit = this.repSelect;
     this.gcDyn14.FieldName = "rec14";
     this.gcDyn14.Name = "gcDyn14";
     this.gcDyn14.Width = 35;
     //
     // gcDyn15
     //
     this.gcDyn15.Caption = "gridColumn15";
     this.gcDyn15.ColumnEdit = this.repSelect;
     this.gcDyn15.FieldName = "rec15";
     this.gcDyn15.Name = "gcDyn15";
     this.gcDyn15.Width = 35;
     //
     // gcDyn16
     //
     this.gcDyn16.Caption = "gridColumn16";
     this.gcDyn16.ColumnEdit = this.repSelect;
     this.gcDyn16.FieldName = "rec16";
     this.gcDyn16.Name = "gcDyn16";
     this.gcDyn16.Width = 35;
     //
     // gcDyn17
     //
     this.gcDyn17.Caption = "gridColumn17";
     this.gcDyn17.ColumnEdit = this.repSelect;
     this.gcDyn17.FieldName = "rec17";
     this.gcDyn17.Name = "gcDyn17";
     this.gcDyn17.Width = 35;
     //
     // gcDyn18
     //
     this.gcDyn18.Caption = "gridColumn18";
     this.gcDyn18.ColumnEdit = this.repSelect;
     this.gcDyn18.FieldName = "rec18";
     this.gcDyn18.Name = "gcDyn18";
     this.gcDyn18.Width = 35;
     //
     // gcDyn19
     //
     this.gcDyn19.Caption = "gridColumn19";
     this.gcDyn19.ColumnEdit = this.repSelect;
     this.gcDyn19.FieldName = "rec19";
     this.gcDyn19.Name = "gcDyn19";
     this.gcDyn19.Width = 35;
     //
     // gcDyn20
     //
     this.gcDyn20.Caption = "gridColumn20";
     this.gcDyn20.ColumnEdit = this.repSelect;
     this.gcDyn20.FieldName = "rec20";
     this.gcDyn20.Name = "gcDyn20";
     this.gcDyn20.Width = 35;
     //
     // gcAgua_Code
     //
     this.gcAgua_Code.Caption = "Código";
     this.gcAgua_Code.Name = "gcAgua_Code";
     //
     // gcAgua_Cod_interno
     //
     this.gcAgua_Cod_interno.Caption = "Cod_interno";
     this.gcAgua_Cod_interno.Name = "gcAgua_Cod_interno";
     //
     // gcAgua_Date
     //
     this.gcAgua_Date.Caption = "Fecha";
     this.gcAgua_Date.Name = "gcAgua_Date";
     //
     // gcAgua_Hour
     //
     this.gcAgua_Hour.Caption = "Hora";
     this.gcAgua_Hour.Name = "gcAgua_Hour";
     //
     // gcAgua_Cod_matrix
     //
     this.gcAgua_Cod_matrix.Caption = "Matriz";
     this.gcAgua_Cod_matrix.Name = "gcAgua_Cod_matrix";
     //
     // gcAgua_Cod_campo
     //
     this.gcAgua_Cod_campo.Caption = "Código de campo";
     this.gcAgua_Cod_campo.Name = "gcAgua_Cod_campo";
     //
     // gcAgua_NameSample
     //
     this.gcAgua_NameSample.Caption = "Nombre de muestra";
     this.gcAgua_NameSample.Name = "gcAgua_NameSample";
     //
     // gcAgua_Ubigeo
     //
     this.gcAgua_Ubigeo.Caption = "Zona, Urb, AAHH / Dist. / Prov. / Depart.";
     this.gcAgua_Ubigeo.Name = "gcAgua_Ubigeo";
     //
     // gcAgua_UTM
     //
     this.gcAgua_UTM.Caption = "Punto de muestreo y/o coordenadas UTM ";
     this.gcAgua_UTM.Name = "gcAgua_UTM";
     //
     // gcAgua_Num_bottle_plastic
     //
     this.gcAgua_Num_bottle_plastic.Caption = "N°Frascos de vidrio";
     this.gcAgua_Num_bottle_plastic.Name = "gcAgua_Num_bottle_plastic";
     //
     // gcAgua_Num_bottle_glass
     //
     this.gcAgua_Num_bottle_glass.Caption = "N°Frascos de plastico";
     this.gcAgua_Num_bottle_glass.Name = "gcAgua_Num_bottle_glass";
     //
     // gcAgua_Volumen
     //
     this.gcAgua_Volumen.Caption = "Volumen (L)";
     this.gcAgua_Volumen.Name = "gcAgua_Volumen";
     //
     // repResult
     //
     this.repResult.AutoHeight = false;
     this.repResult.Name = "repResult";
     //
     // repSendReport
     //
     this.repSendReport.AutoHeight = false;
     this.repSendReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Right)});
     this.repSendReport.Name = "repSendReport";
     //
     // repLink
     //
     this.repLink.AutoHeight = false;
     this.repLink.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, global::LimsProject.Properties.Resources.attach2)});
     this.repLink.Name = "repLink";
     this.repLink.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repLink_ButtonClick);
     //
     // repDesLink
     //
     this.repDesLink.AutoHeight = false;
     this.repDesLink.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDesLink.Name = "repDesLink";
     //
     // repSample
     //
     this.repSample.AutoHeight = false;
     this.repSample.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repSample.Name = "repSample";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl1.Appearance.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl1.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl1.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl1.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl1.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl1.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl1.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl1.Location = new System.Drawing.Point(11, 29);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.PaintStyleName = "PropertyView";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage3;
     this.xtraTabControl1.Size = new System.Drawing.Size(534, 114);
     this.xtraTabControl1.TabIndex = 4;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage3,
     this.xtraTabPage6,
     this.xtraTabPage1});
     this.xtraTabControl1.Text = "Anexos";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.tbFax);
     this.xtraTabPage3.Controls.Add(this.tbClientPhone);
     this.xtraTabPage3.Controls.Add(this.tbClientRuc);
     this.xtraTabPage3.Controls.Add(this.tbClientDomicile);
     this.xtraTabPage3.Controls.Add(this.label9);
     this.xtraTabPage3.Controls.Add(this.label28);
     this.xtraTabPage3.Controls.Add(this.label11);
     this.xtraTabPage3.Controls.Add(this.label8);
     this.xtraTabPage3.Controls.Add(this.label6);
     this.xtraTabPage3.Controls.Add(this.cbCompany);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage3.Text = "Cliente";
     //
     // tbFax
     //
     this.tbFax.Location = new System.Drawing.Point(176, 54);
     this.tbFax.Name = "tbFax";
     this.tbFax.Properties.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,3}\\))\\d{1,10}";
     this.tbFax.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbFax.Size = new System.Drawing.Size(74, 20);
     this.tbFax.TabIndex = 6;
     //
     // tbClientPhone
     //
     this.tbClientPhone.Location = new System.Drawing.Point(66, 54);
     this.tbClientPhone.Name = "tbClientPhone";
     this.tbClientPhone.Properties.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,3}\\))\\d{1,10}";
     this.tbClientPhone.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbClientPhone.Size = new System.Drawing.Size(74, 20);
     this.tbClientPhone.TabIndex = 6;
     //
     // tbClientRuc
     //
     this.tbClientRuc.Location = new System.Drawing.Point(367, 12);
     this.tbClientRuc.Name = "tbClientRuc";
     this.tbClientRuc.Properties.Mask.EditMask = "\\d{0,11}";
     this.tbClientRuc.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.tbClientRuc.Size = new System.Drawing.Size(123, 20);
     this.tbClientRuc.TabIndex = 3;
     //
     // tbClientDomicile
     //
     this.tbClientDomicile.Location = new System.Drawing.Point(66, 33);
     this.tbClientDomicile.Name = "tbClientDomicile";
     this.tbClientDomicile.Size = new System.Drawing.Size(424, 20);
     this.tbClientDomicile.TabIndex = 4;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(331, 15);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(30, 13);
     this.label9.TabIndex = 9;
     this.label9.Text = "Ruc:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(143, 57);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(27, 13);
     this.label28.TabIndex = 9;
     this.label28.Text = "Fax:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(11, 57);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(25, 13);
     this.label11.TabIndex = 9;
     this.label11.Text = "Tel:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(11, 36);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(52, 13);
     this.label8.TabIndex = 9;
     this.label8.Text = "Domicilio:";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(11, 15);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(47, 13);
     this.label6.TabIndex = 9;
     this.label6.Text = "Nombre:";
     //
     // cbCompany
     //
     this.cbCompany.Location = new System.Drawing.Point(66, 12);
     this.cbCompany.Name = "cbCompany";
     this.cbCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcompany", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Business_name")});
     this.cbCompany.Properties.NullText = "Seleccionar";
     this.cbCompany.Properties.ShowFooter = false;
     this.cbCompany.Properties.ShowHeader = false;
     this.cbCompany.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbCompany.Size = new System.Drawing.Size(259, 20);
     this.cbCompany.TabIndex = 2;
     this.cbCompany.ProcessNewValue += new DevExpress.XtraEditors.Controls.ProcessNewValueEventHandler(this.cbClientName_ProcessNewValue);
     this.cbCompany.EditValueChanged += new System.EventHandler(this.cbClientName_EditValueChanged);
     //
     // xtraTabPage6
     //
     this.xtraTabPage6.Controls.Add(this.gcContact);
     this.xtraTabPage6.Name = "xtraTabPage6";
     this.xtraTabPage6.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage6.Text = "Contactos";
     //
     // gcContact
     //
     this.gcContact.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcContact.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gcContact.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gcContact.EmbeddedNavigator.Name = "";
     this.gcContact.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gcContact.Location = new System.Drawing.Point(0, 0);
     this.gcContact.MainView = this.gvContact;
     this.gcContact.Name = "gcContact";
     this.gcContact.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repPerson_type,
     this.repNum,
     this.repCellPhone,
     this.repPhone});
     this.gcContact.Size = new System.Drawing.Size(532, 93);
     this.gcContact.TabIndex = 0;
     this.gcContact.UseEmbeddedNavigator = true;
     this.gcContact.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvContact});
     //
     // gvContact
     //
     this.gvContact.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcCon_Idrecep_company_person,
     this.gcCon_Idperson,
     this.gcCon_Idcompany,
     this.gcCon_Idrecep_sample,
     this.gcCon_Allname,
     this.gcCon_Mail,
     this.gcCon_Person_type,
     this.gcCon_Phone,
     this.gcCon_Cellphone});
     this.gvContact.GridControl = this.gcContact;
     this.gvContact.Name = "gvContact";
     this.gvContact.OptionsView.ShowGroupPanel = false;
     this.gvContact.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvContact_InitNewRow);
     //
     // gcCon_Idrecep_company_person
     //
     this.gcCon_Idrecep_company_person.Caption = "Idrecep_company_person";
     this.gcCon_Idrecep_company_person.FieldName = "Idrecep_company_person";
     this.gcCon_Idrecep_company_person.Name = "gcCon_Idrecep_company_person";
     //
     // gcCon_Idperson
     //
     this.gcCon_Idperson.Caption = "Idperson";
     this.gcCon_Idperson.FieldName = "Idperson";
     this.gcCon_Idperson.Name = "gcCon_Idperson";
     //
     // gcCon_Idcompany
     //
     this.gcCon_Idcompany.Caption = "Idcompany";
     this.gcCon_Idcompany.FieldName = "Idcompany";
     this.gcCon_Idcompany.Name = "gcCon_Idcompany";
     //
     // gcCon_Idrecep_sample
     //
     this.gcCon_Idrecep_sample.Caption = "Idrecep_sample";
     this.gcCon_Idrecep_sample.FieldName = "Idrecep_sample";
     this.gcCon_Idrecep_sample.Name = "gcCon_Idrecep_sample";
     //
     // gcCon_Allname
     //
     this.gcCon_Allname.Caption = "Nombre";
     this.gcCon_Allname.FieldName = "Allname";
     this.gcCon_Allname.Name = "gcCon_Allname";
     this.gcCon_Allname.Visible = true;
     this.gcCon_Allname.VisibleIndex = 0;
     this.gcCon_Allname.Width = 152;
     //
     // gcCon_Mail
     //
     this.gcCon_Mail.Caption = "Email";
     this.gcCon_Mail.FieldName = "Mail";
     this.gcCon_Mail.Name = "gcCon_Mail";
     this.gcCon_Mail.Visible = true;
     this.gcCon_Mail.VisibleIndex = 1;
     this.gcCon_Mail.Width = 122;
     //
     // gcCon_Person_type
     //
     this.gcCon_Person_type.Caption = "Tipo";
     this.gcCon_Person_type.ColumnEdit = this.repPerson_type;
     this.gcCon_Person_type.FieldName = "Person_type";
     this.gcCon_Person_type.Name = "gcCon_Person_type";
     this.gcCon_Person_type.Visible = true;
     this.gcCon_Person_type.VisibleIndex = 2;
     this.gcCon_Person_type.Width = 64;
     //
     // repPerson_type
     //
     this.repPerson_type.AutoHeight = false;
     this.repPerson_type.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repPerson_type.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Id", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name")});
     this.repPerson_type.Name = "repPerson_type";
     this.repPerson_type.NullText = "";
     this.repPerson_type.ShowFooter = false;
     this.repPerson_type.ShowHeader = false;
     //
     // gcCon_Phone
     //
     this.gcCon_Phone.Caption = "Teléfono";
     this.gcCon_Phone.ColumnEdit = this.repPhone;
     this.gcCon_Phone.FieldName = "Phone";
     this.gcCon_Phone.Name = "gcCon_Phone";
     this.gcCon_Phone.Visible = true;
     this.gcCon_Phone.VisibleIndex = 3;
     this.gcCon_Phone.Width = 85;
     //
     // repPhone
     //
     this.repPhone.AutoHeight = false;
     this.repPhone.Mask.EditMask = "\\+\\d\\d(\\(\\d{1,2}\\))\\d{1,10}";
     this.repPhone.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repPhone.Name = "repPhone";
     //
     // gcCon_Cellphone
     //
     this.gcCon_Cellphone.Caption = "Celular";
     this.gcCon_Cellphone.ColumnEdit = this.repCellPhone;
     this.gcCon_Cellphone.FieldName = "Cellphone";
     this.gcCon_Cellphone.Name = "gcCon_Cellphone";
     this.gcCon_Cellphone.Visible = true;
     this.gcCon_Cellphone.VisibleIndex = 4;
     this.gcCon_Cellphone.Width = 88;
     //
     // repCellPhone
     //
     this.repCellPhone.AutoHeight = false;
     this.repCellPhone.Mask.EditMask = "(\\(\\d{1,3}\\))?\\d{1,3}-\\d{1,3}-\\d{1,6}";
     this.repCellPhone.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repCellPhone.Name = "repCellPhone";
     //
     // repNum
     //
     this.repNum.AutoHeight = false;
     this.repNum.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repNum.IsFloatValue = false;
     this.repNum.Mask.EditMask = "N00";
     this.repNum.Name = "repNum";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.ckDispatchFax);
     this.xtraTabPage1.Controls.Add(this.ckDispatchPerson);
     this.xtraTabPage1.Controls.Add(this.ckDispatchTransport);
     this.xtraTabPage1.Controls.Add(this.ckDispatchCurier);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(532, 93);
     this.xtraTabPage1.Text = "Envío";
     //
     // ckDispatchFax
     //
     this.ckDispatchFax.Location = new System.Drawing.Point(141, 15);
     this.ckDispatchFax.Name = "ckDispatchFax";
     this.ckDispatchFax.Properties.Caption = "Fax";
     this.ckDispatchFax.Size = new System.Drawing.Size(107, 18);
     this.ckDispatchFax.TabIndex = 0;
     //
     // ckDispatchPerson
     //
     this.ckDispatchPerson.Location = new System.Drawing.Point(20, 15);
     this.ckDispatchPerson.Name = "ckDispatchPerson";
     this.ckDispatchPerson.Properties.Caption = "Personal";
     this.ckDispatchPerson.Size = new System.Drawing.Size(75, 18);
     this.ckDispatchPerson.TabIndex = 0;
     this.ckDispatchPerson.CheckedChanged += new System.EventHandler(this.ckDispatchPerson_CheckedChanged);
     //
     // ckDispatchTransport
     //
     this.ckDispatchTransport.Location = new System.Drawing.Point(20, 53);
     this.ckDispatchTransport.Name = "ckDispatchTransport";
     this.ckDispatchTransport.Properties.Caption = "Emp. Transporte";
     this.ckDispatchTransport.Size = new System.Drawing.Size(107, 18);
     this.ckDispatchTransport.TabIndex = 0;
     this.ckDispatchTransport.CheckedChanged += new System.EventHandler(this.ckDispatchTransport_CheckedChanged);
     //
     // ckDispatchCurier
     //
     this.ckDispatchCurier.Location = new System.Drawing.Point(20, 34);
     this.ckDispatchCurier.Name = "ckDispatchCurier";
     this.ckDispatchCurier.Properties.Caption = "Curier";
     this.ckDispatchCurier.Size = new System.Drawing.Size(75, 18);
     this.ckDispatchCurier.TabIndex = 0;
     this.ckDispatchCurier.CheckedChanged += new System.EventHandler(this.ckDispatchCurier_CheckedChanged);
     //
     // expandablePanel1
     //
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight;
     this.expandablePanel1.Controls.Add(this.tabOptionRight);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.expandablePanel1.Location = new System.Drawing.Point(699, 0);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(294, 358);
     this.expandablePanel1.TabIndex = 2;
     this.expandablePanel1.Text = "expandablePanel1";
     this.expandablePanel1.TitleText = "Métodos";
     //
     // tabOptionRight
     //
     this.tabOptionRight.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.tabOptionRight.Appearance.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.tabOptionRight.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.tabOptionRight.AppearancePage.Header.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.Header.Options.UseBorderColor = true;
     this.tabOptionRight.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.tabOptionRight.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.tabOptionRight.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.tabOptionRight.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.tabOptionRight.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.tabOptionRight.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.tabOptionRight.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabOptionRight.Location = new System.Drawing.Point(0, 26);
     this.tabOptionRight.Name = "tabOptionRight";
     this.tabOptionRight.PaintStyleName = "PropertyView";
     this.tabOptionRight.SelectedTabPage = this.tpRightMethods;
     this.tabOptionRight.Size = new System.Drawing.Size(294, 332);
     this.tabOptionRight.TabIndex = 5;
     this.tabOptionRight.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tpRightMethods,
     this.tpRightReports,
     this.tpRightAttach,
     this.tpRightProgram});
     this.tabOptionRight.Text = "Adjuntos";
     this.tabOptionRight.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabOptionRight_SelectedPageChanged);
     //
     // tpRightMethods
     //
     this.tpRightMethods.Controls.Add(this.lookUpEdit3);
     this.tpRightMethods.Controls.Add(this.gcMethods);
     this.tpRightMethods.Controls.Add(this.textEdit1);
     this.tpRightMethods.Name = "tpRightMethods";
     this.tpRightMethods.Size = new System.Drawing.Size(292, 311);
     this.tpRightMethods.Text = "Métodos";
     //
     // lookUpEdit3
     //
     this.lookUpEdit3.Location = new System.Drawing.Point(452, 55);
     this.lookUpEdit3.Name = "lookUpEdit3";
     this.lookUpEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit3.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IDTypePost", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Type_Post")});
     this.lookUpEdit3.Properties.NullText = "Seleccionar";
     this.lookUpEdit3.Properties.ShowFooter = false;
     this.lookUpEdit3.Properties.ShowHeader = false;
     this.lookUpEdit3.Size = new System.Drawing.Size(100, 20);
     this.lookUpEdit3.TabIndex = 1;
     //
     // gcMethods
     //
     this.gcMethods.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcMethods.EmbeddedNavigator.Name = "";
     this.gcMethods.Location = new System.Drawing.Point(0, 0);
     this.gcMethods.MainView = this.gvMethods;
     this.gcMethods.Name = "gcMethods";
     this.gcMethods.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repAddColumn});
     this.gcMethods.Size = new System.Drawing.Size(292, 311);
     this.gcMethods.TabIndex = 1;
     this.gcMethods.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvMethods});
     //
     // gvMethods
     //
     this.gvMethods.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvMethods.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvMethods.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.Empty.Options.UseBackColor = true;
     this.gvMethods.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvMethods.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvMethods.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvMethods.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvMethods.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvMethods.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvMethods.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvMethods.Appearance.GroupRow.Options.UseFont = true;
     this.gvMethods.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvMethods.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F);
     this.gvMethods.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvMethods.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvMethods.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvMethods.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvMethods.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvMethods.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvMethods.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvMethods.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.OddRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.OddRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvMethods.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvMethods.Appearance.Preview.Options.UseBackColor = true;
     this.gvMethods.Appearance.Preview.Options.UseForeColor = true;
     this.gvMethods.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 8F);
     this.gvMethods.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvMethods.Appearance.Row.Options.UseBackColor = true;
     this.gvMethods.Appearance.Row.Options.UseFont = true;
     this.gvMethods.Appearance.Row.Options.UseForeColor = true;
     this.gvMethods.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvMethods.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvMethods.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvMethods.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvMethods.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvMethods.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvMethods.Appearance.VertLine.Options.UseBackColor = true;
     this.gvMethods.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcMet_Cod_template_method,
     this.gcMet_Cod_element,
     this.gcMet_Abbreviation,
     this.gcMet_Name_type_analisys,
     this.gcMet_Title,
     this.gcMet_TypeAnalisys,
     this.gcMet_Button,
     this.gcMet_Cost,
     this.gcMet_Unit1,
     this.gcMet_Unit_Name,
     this.gcMet_Idelement,
     this.gcMet_Idtemplate_method,
     this.gcMet_Analisys_time});
     this.gvMethods.GridControl = this.gcMethods;
     this.gvMethods.GroupCount = 1;
     this.gvMethods.Name = "gvMethods";
     this.gvMethods.OptionsBehavior.AutoExpandAllGroups = true;
     this.gvMethods.OptionsView.ColumnAutoWidth = false;
     this.gvMethods.OptionsView.EnableAppearanceEvenRow = true;
     this.gvMethods.OptionsView.EnableAppearanceOddRow = true;
     this.gvMethods.OptionsView.ShowGroupPanel = false;
     this.gvMethods.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcMet_TypeAnalisys, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gcMet_Cod_template_method
     //
     this.gcMet_Cod_template_method.Caption = "Cod.";
     this.gcMet_Cod_template_method.FieldName = "Cod_template_method";
     this.gcMet_Cod_template_method.Name = "gcMet_Cod_template_method";
     this.gcMet_Cod_template_method.OptionsColumn.ReadOnly = true;
     this.gcMet_Cod_template_method.Visible = true;
     this.gcMet_Cod_template_method.VisibleIndex = 1;
     this.gcMet_Cod_template_method.Width = 50;
     //
     // gcMet_Cod_element
     //
     this.gcMet_Cod_element.Caption = "Elemento";
     this.gcMet_Cod_element.FieldName = "Cod_element";
     this.gcMet_Cod_element.Name = "gcMet_Cod_element";
     this.gcMet_Cod_element.OptionsColumn.ReadOnly = true;
     this.gcMet_Cod_element.Visible = true;
     this.gcMet_Cod_element.VisibleIndex = 2;
     //
     // gcMet_Abbreviation
     //
     this.gcMet_Abbreviation.Caption = "Abreviación";
     this.gcMet_Abbreviation.FieldName = "Abbreviation";
     this.gcMet_Abbreviation.Name = "gcMet_Abbreviation";
     this.gcMet_Abbreviation.OptionsColumn.ReadOnly = true;
     this.gcMet_Abbreviation.Visible = true;
     this.gcMet_Abbreviation.VisibleIndex = 3;
     this.gcMet_Abbreviation.Width = 60;
     //
     // gcMet_Name_type_analisys
     //
     this.gcMet_Name_type_analisys.Caption = "Tipo de Análisis";
     this.gcMet_Name_type_analisys.FieldName = "Name_type_analisys";
     this.gcMet_Name_type_analisys.Name = "gcMet_Name_type_analisys";
     this.gcMet_Name_type_analisys.Visible = true;
     this.gcMet_Name_type_analisys.VisibleIndex = 5;
     //
     // gcMet_Title
     //
     this.gcMet_Title.Caption = "Título";
     this.gcMet_Title.FieldName = "Title";
     this.gcMet_Title.Name = "gcMet_Title";
     this.gcMet_Title.OptionsColumn.ReadOnly = true;
     this.gcMet_Title.Visible = true;
     this.gcMet_Title.VisibleIndex = 4;
     this.gcMet_Title.Width = 135;
     //
     // gcMet_TypeAnalisys
     //
     this.gcMet_TypeAnalisys.Caption = "Tipo de análisis";
     this.gcMet_TypeAnalisys.FieldName = "Name_type_analisys";
     this.gcMet_TypeAnalisys.Name = "gcMet_TypeAnalisys";
     //
     // gcMet_Button
     //
     this.gcMet_Button.Caption = "#";
     this.gcMet_Button.ColumnEdit = this.repAddColumn;
     this.gcMet_Button.Name = "gcMet_Button";
     this.gcMet_Button.Visible = true;
     this.gcMet_Button.VisibleIndex = 0;
     this.gcMet_Button.Width = 52;
     //
     // repAddColumn
     //
     this.repAddColumn.AutoHeight = false;
     this.repAddColumn.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Left)});
     this.repAddColumn.Name = "repAddColumn";
     this.repAddColumn.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repAddColumn.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repAddColumn_ButtonClick);
     //
     // gcMet_Cost
     //
     this.gcMet_Cost.Caption = "Cost";
     this.gcMet_Cost.FieldName = "Cost_method";
     this.gcMet_Cost.Name = "gcMet_Cost";
     //
     // gcMet_Unit1
     //
     this.gcMet_Unit1.Caption = "Unit";
     this.gcMet_Unit1.FieldName = "Idunit_result";
     this.gcMet_Unit1.Name = "gcMet_Unit1";
     //
     // gcMet_Unit_Name
     //
     this.gcMet_Unit_Name.Caption = "Name_unit";
     this.gcMet_Unit_Name.FieldName = "Name_unit";
     this.gcMet_Unit_Name.Name = "gcMet_Unit_Name";
     //
     // gcMet_Idelement
     //
     this.gcMet_Idelement.Caption = "Idelement";
     this.gcMet_Idelement.FieldName = "Idelement";
     this.gcMet_Idelement.Name = "gcMet_Idelement";
     //
     // gcMet_Idtemplate_method
     //
     this.gcMet_Idtemplate_method.Caption = "idtemplate_method";
     this.gcMet_Idtemplate_method.FieldName = "Idtemplate_method";
     this.gcMet_Idtemplate_method.Name = "gcMet_Idtemplate_method";
     //
     // gcMet_Analisys_time
     //
     this.gcMet_Analisys_time.Caption = "Analysis_time";
     this.gcMet_Analisys_time.FieldName = "Analisys_time";
     this.gcMet_Analisys_time.Name = "gcMet_Analisys_time";
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(452, 9);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(100, 20);
     this.textEdit1.TabIndex = 3;
     //
     // tpRightReports
     //
     this.tpRightReports.Controls.Add(this.gcReport);
     this.tpRightReports.Controls.Add(this.groupControl1);
     this.tpRightReports.Name = "tpRightReports";
     this.tpRightReports.PageVisible = false;
     this.tpRightReports.Size = new System.Drawing.Size(292, 0);
     this.tpRightReports.Text = "Informes";
     //
     // gcReport
     //
     this.gcReport.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcReport.EmbeddedNavigator.Name = "";
     this.gcReport.Location = new System.Drawing.Point(0, 53);
     this.gcReport.MainView = this.gvReport;
     this.gcReport.Name = "gcReport";
     this.gcReport.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repReportOption,
     this.repStatusReport,
     this.repDateReport,
     this.repTimeReport,
     this.repTypeReport});
     this.gcReport.Size = new System.Drawing.Size(292, 0);
     this.gcReport.TabIndex = 2;
     this.gcReport.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvReport});
     //
     // gvReport
     //
     this.gvReport.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvReport.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvReport.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.Empty.Options.UseBackColor = true;
     this.gvReport.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvReport.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvReport.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvReport.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvReport.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvReport.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvReport.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvReport.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvReport.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvReport.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvReport.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvReport.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvReport.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvReport.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvReport.Appearance.GroupRow.Options.UseFont = true;
     this.gvReport.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvReport.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvReport.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvReport.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvReport.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvReport.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvReport.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvReport.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvReport.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvReport.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvReport.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReport.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvReport.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.OddRow.Options.UseBackColor = true;
     this.gvReport.Appearance.OddRow.Options.UseForeColor = true;
     this.gvReport.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvReport.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvReport.Appearance.Preview.Options.UseBackColor = true;
     this.gvReport.Appearance.Preview.Options.UseForeColor = true;
     this.gvReport.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvReport.Appearance.Row.Options.UseBackColor = true;
     this.gvReport.Appearance.Row.Options.UseForeColor = true;
     this.gvReport.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvReport.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvReport.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.gvReport.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvReport.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvReport.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvReport.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvReport.Appearance.VertLine.Options.UseBackColor = true;
     this.gvReport.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcRep_idrecep_sample_report,
     this.gcRep_order_report,
     this.gcRep_cod_recep_sample_report,
     this.gcRep_report_status,
     this.gcRep_type_report,
     this.gcRep_Option,
     this.gcRep_Str_cod_recep_sample_report,
     this.gcRep_Date_report});
     this.gvReport.GridControl = this.gcReport;
     this.gvReport.Name = "gvReport";
     this.gvReport.OptionsView.EnableAppearanceEvenRow = true;
     this.gvReport.OptionsView.EnableAppearanceOddRow = true;
     this.gvReport.OptionsView.ShowGroupPanel = false;
     this.gvReport.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvReport_RowCellStyle);
     this.gvReport.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvReport_InitNewRow);
     this.gvReport.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvReport_FocusedRowChanged);
     //
     // gcRep_idrecep_sample_report
     //
     this.gcRep_idrecep_sample_report.Caption = "idrecep_sample_report";
     this.gcRep_idrecep_sample_report.FieldName = "Idrecep_sample_report";
     this.gcRep_idrecep_sample_report.Name = "gcRep_idrecep_sample_report";
     //
     // gcRep_order_report
     //
     this.gcRep_order_report.Caption = "N°";
     this.gcRep_order_report.FieldName = "Order_report";
     this.gcRep_order_report.Name = "gcRep_order_report";
     this.gcRep_order_report.OptionsColumn.AllowEdit = false;
     this.gcRep_order_report.OptionsFilter.AllowAutoFilter = false;
     this.gcRep_order_report.OptionsFilter.AllowFilter = false;
     this.gcRep_order_report.Visible = true;
     this.gcRep_order_report.VisibleIndex = 0;
     this.gcRep_order_report.Width = 23;
     //
     // gcRep_cod_recep_sample_report
     //
     this.gcRep_cod_recep_sample_report.Caption = "Código";
     this.gcRep_cod_recep_sample_report.FieldName = "Cod_recep_sample_report";
     this.gcRep_cod_recep_sample_report.Name = "gcRep_cod_recep_sample_report";
     this.gcRep_cod_recep_sample_report.OptionsColumn.AllowEdit = false;
     this.gcRep_cod_recep_sample_report.Width = 66;
     //
     // gcRep_report_status
     //
     this.gcRep_report_status.Caption = "Estado";
     this.gcRep_report_status.ColumnEdit = this.repStatusReport;
     this.gcRep_report_status.FieldName = "Report_status";
     this.gcRep_report_status.Name = "gcRep_report_status";
     this.gcRep_report_status.OptionsColumn.AllowEdit = false;
     this.gcRep_report_status.Visible = true;
     this.gcRep_report_status.VisibleIndex = 2;
     this.gcRep_report_status.Width = 74;
     //
     // repStatusReport
     //
     this.repStatusReport.AutoHeight = false;
     this.repStatusReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repStatusReport.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IdStatus"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Status")});
     this.repStatusReport.Name = "repStatusReport";
     this.repStatusReport.NullText = "";
     this.repStatusReport.ShowFooter = false;
     this.repStatusReport.ShowHeader = false;
     //
     // gcRep_type_report
     //
     this.gcRep_type_report.Caption = "type_report";
     this.gcRep_type_report.FieldName = "Type_report";
     this.gcRep_type_report.Name = "gcRep_type_report";
     this.gcRep_type_report.Width = 69;
     //
     // gcRep_Option
     //
     this.gcRep_Option.Caption = "#";
     this.gcRep_Option.ColumnEdit = this.repReportOption;
     this.gcRep_Option.Name = "gcRep_Option";
     this.gcRep_Option.Visible = true;
     this.gcRep_Option.VisibleIndex = 3;
     this.gcRep_Option.Width = 81;
     //
     // repReportOption
     //
     this.repReportOption.AutoHeight = false;
     serializableAppearanceObject2.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject2.Options.UseFont = true;
     this.repReportOption.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK, "", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "ver", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "edit", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repReportOption.Name = "repReportOption";
     this.repReportOption.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repReportOption.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repReportOption_ButtonClick);
     //
     // gcRep_Str_cod_recep_sample_report
     //
     this.gcRep_Str_cod_recep_sample_report.Caption = "Cod. Interno";
     this.gcRep_Str_cod_recep_sample_report.FieldName = "Str_cod_recep_sample_report";
     this.gcRep_Str_cod_recep_sample_report.Name = "gcRep_Str_cod_recep_sample_report";
     this.gcRep_Str_cod_recep_sample_report.OptionsColumn.AllowEdit = false;
     this.gcRep_Str_cod_recep_sample_report.Visible = true;
     this.gcRep_Str_cod_recep_sample_report.VisibleIndex = 1;
     this.gcRep_Str_cod_recep_sample_report.Width = 123;
     //
     // gcRep_Date_report
     //
     this.gcRep_Date_report.Caption = "Date_report";
     this.gcRep_Date_report.FieldName = "Date_report";
     this.gcRep_Date_report.Name = "gcRep_Date_report";
     this.gcRep_Date_report.Width = 62;
     //
     // repDateReport
     //
     this.repDateReport.AutoHeight = false;
     this.repDateReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDateReport.Name = "repDateReport";
     //
     // repTimeReport
     //
     this.repTimeReport.AutoHeight = false;
     this.repTimeReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repTimeReport.Name = "repTimeReport";
     //
     // repTypeReport
     //
     this.repTypeReport.AutoHeight = false;
     this.repTypeReport.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repTypeReport.Name = "repTypeReport";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.btMakePartialReport);
     this.groupControl1.Controls.Add(this.btMakeFinalReport);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(292, 53);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "Crear Informe de Ensayo";
     //
     // btMakePartialReport
     //
     this.btMakePartialReport.AllowDrop = true;
     this.btMakePartialReport.Appearance.Options.UseTextOptions = true;
     this.btMakePartialReport.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btMakePartialReport.Location = new System.Drawing.Point(5, 23);
     this.btMakePartialReport.Name = "btMakePartialReport";
     this.btMakePartialReport.Size = new System.Drawing.Size(90, 25);
     this.btMakePartialReport.TabIndex = 0;
     this.btMakePartialReport.Text = "Informe Parcial";
     this.btMakePartialReport.Click += new System.EventHandler(this.btMakePartialReport_Click);
     //
     // btMakeFinalReport
     //
     this.btMakeFinalReport.AllowDrop = true;
     this.btMakeFinalReport.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btMakeFinalReport.Appearance.Options.UseForeColor = true;
     this.btMakeFinalReport.Appearance.Options.UseTextOptions = true;
     this.btMakeFinalReport.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btMakeFinalReport.Location = new System.Drawing.Point(101, 23);
     this.btMakeFinalReport.Name = "btMakeFinalReport";
     this.btMakeFinalReport.Size = new System.Drawing.Size(90, 25);
     this.btMakeFinalReport.TabIndex = 0;
     this.btMakeFinalReport.Text = "Informe Final";
     this.btMakeFinalReport.Click += new System.EventHandler(this.btMakeFinalReport_Click);
     //
     // tpRightAttach
     //
     this.tpRightAttach.Controls.Add(this.gcAttachFile);
     this.tpRightAttach.Controls.Add(this.groupControl2);
     this.tpRightAttach.Name = "tpRightAttach";
     this.tpRightAttach.PageVisible = false;
     this.tpRightAttach.Size = new System.Drawing.Size(292, 0);
     this.tpRightAttach.Text = "Adjuntar";
     //
     // gcAttachFile
     //
     this.gcAttachFile.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcAttachFile.EmbeddedNavigator.Name = "";
     this.gcAttachFile.Location = new System.Drawing.Point(0, 53);
     this.gcAttachFile.MainView = this.gvAttachFile;
     this.gcAttachFile.Name = "gcAttachFile";
     this.gcAttachFile.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repButtons,
     this.repAttach_status,
     this.repAttach_file});
     this.gcAttachFile.Size = new System.Drawing.Size(292, 0);
     this.gcAttachFile.TabIndex = 4;
     this.gcAttachFile.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvAttachFile});
     //
     // gvAttachFile
     //
     this.gvAttachFile.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.Empty.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvAttachFile.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvAttachFile.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvAttachFile.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvAttachFile.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseFont = true;
     this.gvAttachFile.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvAttachFile.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvAttachFile.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvAttachFile.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvAttachFile.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvAttachFile.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.OddRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.OddRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvAttachFile.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvAttachFile.Appearance.Preview.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.Preview.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvAttachFile.Appearance.Row.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.Row.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvAttachFile.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvAttachFile.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvAttachFile.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvAttachFile.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvAttachFile.Appearance.VertLine.Options.UseBackColor = true;
     this.gvAttachFile.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcAtt_Iddocument_recep,
     this.gcAtt_Idrecep_sample,
     this.gcAtt_FileName,
     this.gcAtt_Attach_status,
     this.gcAtt_Buttons,
     this.gcAtt_SourcePath,
     this.gcAtt_Order_file,
     this.gcAtt_Idrecep_sample_attach});
     this.gvAttachFile.GridControl = this.gcAttachFile;
     this.gvAttachFile.Name = "gvAttachFile";
     this.gvAttachFile.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvAttachFile.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gvAttachFile.OptionsView.EnableAppearanceEvenRow = true;
     this.gvAttachFile.OptionsView.EnableAppearanceOddRow = true;
     this.gvAttachFile.OptionsView.ShowGroupPanel = false;
     this.gvAttachFile.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvAttachFile_RowCellStyle);
     //
     // gcAtt_Iddocument_recep
     //
     this.gcAtt_Iddocument_recep.Caption = "Iddocument_recep";
     this.gcAtt_Iddocument_recep.FieldName = "Iddocument_recep";
     this.gcAtt_Iddocument_recep.Name = "gcAtt_Iddocument_recep";
     //
     // gcAtt_Idrecep_sample
     //
     this.gcAtt_Idrecep_sample.Caption = "gridColumn1";
     this.gcAtt_Idrecep_sample.FieldName = "Idrecep_sample";
     this.gcAtt_Idrecep_sample.Name = "gcAtt_Idrecep_sample";
     //
     // gcAtt_FileName
     //
     this.gcAtt_FileName.Caption = "Adjuntar Documento";
     this.gcAtt_FileName.ColumnEdit = this.repAttach_file;
     this.gcAtt_FileName.FieldName = "Name_file";
     this.gcAtt_FileName.Name = "gcAtt_FileName";
     this.gcAtt_FileName.Visible = true;
     this.gcAtt_FileName.VisibleIndex = 0;
     this.gcAtt_FileName.Width = 142;
     //
     // repAttach_file
     //
     this.repAttach_file.AutoHeight = false;
     serializableAppearanceObject3.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject3.Options.UseFont = true;
     this.repAttach_file.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Cargar", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3)});
     this.repAttach_file.Name = "repAttach_file";
     this.repAttach_file.NullText = "";
     //
     // gcAtt_Attach_status
     //
     this.gcAtt_Attach_status.Caption = "Estado";
     this.gcAtt_Attach_status.ColumnEdit = this.repAttach_status;
     this.gcAtt_Attach_status.FieldName = "Attach_status";
     this.gcAtt_Attach_status.Name = "gcAtt_Attach_status";
     this.gcAtt_Attach_status.Visible = true;
     this.gcAtt_Attach_status.VisibleIndex = 1;
     this.gcAtt_Attach_status.Width = 99;
     //
     // repAttach_status
     //
     this.repAttach_status.AutoHeight = false;
     this.repAttach_status.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repAttach_status.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Id", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Attach_status")});
     this.repAttach_status.Name = "repAttach_status";
     this.repAttach_status.NullText = "";
     this.repAttach_status.ShowFooter = false;
     this.repAttach_status.ShowHeader = false;
     //
     // gcAtt_Buttons
     //
     this.gcAtt_Buttons.Caption = "#";
     this.gcAtt_Buttons.ColumnEdit = this.repButtons;
     this.gcAtt_Buttons.Name = "gcAtt_Buttons";
     this.gcAtt_Buttons.Visible = true;
     this.gcAtt_Buttons.VisibleIndex = 2;
     this.gcAtt_Buttons.Width = 49;
     //
     // repButtons
     //
     this.repButtons.AutoHeight = false;
     serializableAppearanceObject4.Font = new System.Drawing.Font("Tahoma", 7.5F);
     serializableAppearanceObject4.Options.UseFont = true;
     this.repButtons.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "ver", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4)});
     this.repButtons.Name = "repButtons";
     this.repButtons.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repButtons.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repButtons_ButtonClick);
     //
     // gcAtt_SourcePath
     //
     this.gcAtt_SourcePath.Caption = "Source path";
     this.gcAtt_SourcePath.FieldName = "Source_path";
     this.gcAtt_SourcePath.Name = "gcAtt_SourcePath";
     //
     // gcAtt_Order_file
     //
     this.gcAtt_Order_file.Caption = "Order_file";
     this.gcAtt_Order_file.FieldName = "Order_file";
     this.gcAtt_Order_file.Name = "gcAtt_Order_file";
     //
     // gcAtt_Idrecep_sample_attach
     //
     this.gcAtt_Idrecep_sample_attach.Caption = "Idrecep_sample_attach";
     this.gcAtt_Idrecep_sample_attach.FieldName = "Idrecep_sample_attach";
     this.gcAtt_Idrecep_sample_attach.Name = "gcAtt_Idrecep_sample_attach";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.btNewFile);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl2.Location = new System.Drawing.Point(0, 0);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(292, 53);
     this.groupControl2.TabIndex = 3;
     this.groupControl2.Text = "Adjuntar a partir de un archivo";
     //
     // btNewFile
     //
     this.btNewFile.AllowDrop = true;
     this.btNewFile.Appearance.Options.UseTextOptions = true;
     this.btNewFile.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btNewFile.Location = new System.Drawing.Point(5, 22);
     this.btNewFile.Name = "btNewFile";
     this.btNewFile.Size = new System.Drawing.Size(56, 25);
     this.btNewFile.TabIndex = 0;
     this.btNewFile.Text = "Nuevo";
     this.btNewFile.Click += new System.EventHandler(this.btNewFile_Click);
     //
     // tpRightProgram
     //
     this.tpRightProgram.Controls.Add(this.gcProgram);
     this.tpRightProgram.Controls.Add(this.groupControl3);
     this.tpRightProgram.Name = "tpRightProgram";
     this.tpRightProgram.PageVisible = false;
     this.tpRightProgram.Size = new System.Drawing.Size(292, 0);
     this.tpRightProgram.Text = "Programar";
     //
     // gcProgram
     //
     this.gcProgram.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcProgram.EmbeddedNavigator.Name = "";
     this.gcProgram.Location = new System.Drawing.Point(0, 53);
     this.gcProgram.MainView = this.gvProgram;
     this.gcProgram.Name = "gcProgram";
     this.gcProgram.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repProgramButton,
     this.repProgramStatus,
     this.repDateProgram,
     this.repTimeProgram});
     this.gcProgram.Size = new System.Drawing.Size(292, 0);
     this.gcProgram.TabIndex = 4;
     this.gcProgram.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvProgram});
     //
     // gvProgram
     //
     this.gvProgram.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvProgram.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvProgram.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.Empty.Options.UseBackColor = true;
     this.gvProgram.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.EvenRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.gvProgram.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvProgram.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(106)))), ((int)(((byte)(197)))));
     this.gvProgram.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvProgram.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.gvProgram.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gvProgram.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gvProgram.Appearance.GroupRow.Options.UseFont = true;
     this.gvProgram.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.gvProgram.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.gvProgram.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvProgram.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvProgram.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvProgram.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.gvProgram.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.gvProgram.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvProgram.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvProgram.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.OddRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.OddRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.gvProgram.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.gvProgram.Appearance.Preview.Options.UseBackColor = true;
     this.gvProgram.Appearance.Preview.Options.UseForeColor = true;
     this.gvProgram.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gvProgram.Appearance.Row.Options.UseBackColor = true;
     this.gvProgram.Appearance.Row.Options.UseForeColor = true;
     this.gvProgram.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvProgram.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(69)))), ((int)(((byte)(126)))), ((int)(((byte)(217)))));
     this.gvProgram.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvProgram.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvProgram.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvProgram.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.gvProgram.Appearance.VertLine.Options.UseBackColor = true;
     this.gvProgram.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcProg_Idrecep_sample_program,
     this.gcProg_Order_report,
     this.gcProg_Cod_recep_sample_program,
     this.gcProg_Program_status,
     this.gridColumn6,
     this.gcProg_Date_report,
     this.gcProg_Time_report,
     this.gcProg_Str_cod_recep_sample_program});
     this.gvProgram.GridControl = this.gcProgram;
     this.gvProgram.Name = "gvProgram";
     this.gvProgram.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvProgram.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gvProgram.OptionsView.EnableAppearanceEvenRow = true;
     this.gvProgram.OptionsView.EnableAppearanceOddRow = true;
     this.gvProgram.OptionsView.ShowGroupPanel = false;
     this.gvProgram.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvProgram_RowCellStyle);
     this.gvProgram.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gvProgram_InitNewRow);
     this.gvProgram.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gvProgram_FocusedRowChanged);
     //
     // gcProg_Idrecep_sample_program
     //
     this.gcProg_Idrecep_sample_program.Caption = "idrecep_sample_report";
     this.gcProg_Idrecep_sample_program.FieldName = "Idrecep_sample_program";
     this.gcProg_Idrecep_sample_program.Name = "gcProg_Idrecep_sample_program";
     //
     // gcProg_Order_report
     //
     this.gcProg_Order_report.Caption = "N°";
     this.gcProg_Order_report.FieldName = "Order_report";
     this.gcProg_Order_report.Name = "gcProg_Order_report";
     this.gcProg_Order_report.OptionsColumn.AllowEdit = false;
     this.gcProg_Order_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Order_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Order_report.Visible = true;
     this.gcProg_Order_report.VisibleIndex = 0;
     this.gcProg_Order_report.Width = 23;
     //
     // gcProg_Cod_recep_sample_program
     //
     this.gcProg_Cod_recep_sample_program.Caption = "Código";
     this.gcProg_Cod_recep_sample_program.FieldName = "Cod_recep_sample_program";
     this.gcProg_Cod_recep_sample_program.Name = "gcProg_Cod_recep_sample_program";
     this.gcProg_Cod_recep_sample_program.OptionsColumn.AllowEdit = false;
     this.gcProg_Cod_recep_sample_program.Width = 63;
     //
     // gcProg_Program_status
     //
     this.gcProg_Program_status.Caption = "Estado";
     this.gcProg_Program_status.ColumnEdit = this.repProgramStatus;
     this.gcProg_Program_status.FieldName = "Program_status";
     this.gcProg_Program_status.Name = "gcProg_Program_status";
     this.gcProg_Program_status.OptionsColumn.AllowEdit = false;
     this.gcProg_Program_status.Width = 42;
     //
     // repProgramStatus
     //
     this.repProgramStatus.AutoHeight = false;
     this.repProgramStatus.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repProgramStatus.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IdStatus"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Status")});
     this.repProgramStatus.Name = "repProgramStatus";
     this.repProgramStatus.NullText = "";
     this.repProgramStatus.ShowFooter = false;
     this.repProgramStatus.ShowHeader = false;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "#";
     this.gridColumn6.ColumnEdit = this.repProgramButton;
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 67;
     //
     // repProgramButton
     //
     this.repProgramButton.AutoHeight = false;
     this.repProgramButton.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Programar", -1, true, true, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.repProgramButton.Name = "repProgramButton";
     this.repProgramButton.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repProgramButton.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repProgramButton_ButtonClick);
     //
     // gcProg_Date_report
     //
     this.gcProg_Date_report.Caption = "Fecha";
     this.gcProg_Date_report.ColumnEdit = this.repDateProgram;
     this.gcProg_Date_report.FieldName = "Date_report";
     this.gcProg_Date_report.Name = "gcProg_Date_report";
     this.gcProg_Date_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Date_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Date_report.Visible = true;
     this.gcProg_Date_report.VisibleIndex = 2;
     this.gcProg_Date_report.Width = 67;
     //
     // repDateProgram
     //
     this.repDateProgram.AutoHeight = false;
     this.repDateProgram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDateProgram.Name = "repDateProgram";
     //
     // gcProg_Time_report
     //
     this.gcProg_Time_report.Caption = "Hora";
     this.gcProg_Time_report.ColumnEdit = this.repTimeProgram;
     this.gcProg_Time_report.FieldName = "Time_report";
     this.gcProg_Time_report.Name = "gcProg_Time_report";
     this.gcProg_Time_report.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Time_report.OptionsFilter.AllowFilter = false;
     this.gcProg_Time_report.Visible = true;
     this.gcProg_Time_report.VisibleIndex = 3;
     this.gcProg_Time_report.Width = 66;
     //
     // repTimeProgram
     //
     this.repTimeProgram.AutoHeight = false;
     this.repTimeProgram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repTimeProgram.Mask.EditMask = "t";
     this.repTimeProgram.Name = "repTimeProgram";
     //
     // gcProg_Str_cod_recep_sample_program
     //
     this.gcProg_Str_cod_recep_sample_program.Caption = "Código";
     this.gcProg_Str_cod_recep_sample_program.FieldName = "Str_cod_recep_sample_program";
     this.gcProg_Str_cod_recep_sample_program.Name = "gcProg_Str_cod_recep_sample_program";
     this.gcProg_Str_cod_recep_sample_program.OptionsColumn.AllowEdit = false;
     this.gcProg_Str_cod_recep_sample_program.OptionsFilter.AllowAutoFilter = false;
     this.gcProg_Str_cod_recep_sample_program.OptionsFilter.AllowFilter = false;
     this.gcProg_Str_cod_recep_sample_program.Visible = true;
     this.gcProg_Str_cod_recep_sample_program.VisibleIndex = 1;
     this.gcProg_Str_cod_recep_sample_program.Width = 78;
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.btProgramSelection);
     this.groupControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControl3.Location = new System.Drawing.Point(0, 0);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(292, 53);
     this.groupControl3.TabIndex = 3;
     this.groupControl3.Text = "Crear Informe de Ensayo";
     //
     // btProgramSelection
     //
     this.btProgramSelection.AllowDrop = true;
     this.btProgramSelection.Appearance.Options.UseTextOptions = true;
     this.btProgramSelection.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btProgramSelection.Location = new System.Drawing.Point(5, 23);
     this.btProgramSelection.Name = "btProgramSelection";
     this.btProgramSelection.Size = new System.Drawing.Size(113, 25);
     this.btProgramSelection.TabIndex = 0;
     this.btProgramSelection.Text = "Agregar selección";
     this.btProgramSelection.Click += new System.EventHandler(this.btProgramSelection_Click);
     //
     // btPrintTicket
     //
     this.btPrintTicket.FlatAppearance.BorderSize = 0;
     this.btPrintTicket.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btPrintTicket.Location = new System.Drawing.Point(729, 12);
     this.btPrintTicket.Name = "btPrintTicket";
     this.btPrintTicket.Size = new System.Drawing.Size(48, 23);
     this.btPrintTicket.TabIndex = 10;
     this.btPrintTicket.Text = "Imprimir Etiquetas";
     this.btPrintTicket.UseVisualStyleBackColor = true;
     this.btPrintTicket.Visible = false;
     this.btPrintTicket.Click += new System.EventHandler(this.btPrintTicket_Click_1);
     //
     // btDesignPrint
     //
     this.btDesignPrint.FlatAppearance.BorderSize = 0;
     this.btDesignPrint.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btDesignPrint.Location = new System.Drawing.Point(772, 9);
     this.btDesignPrint.Name = "btDesignPrint";
     this.btDesignPrint.Size = new System.Drawing.Size(69, 23);
     this.btDesignPrint.TabIndex = 10;
     this.btDesignPrint.Text = "Diseñar Etiquetas";
     this.btDesignPrint.UseVisualStyleBackColor = true;
     this.btDesignPrint.Visible = false;
     this.btDesignPrint.Click += new System.EventHandler(this.btDesignPrint_Click);
     //
     // deReception
     //
     this.deReception.EditValue = null;
     this.deReception.Location = new System.Drawing.Point(75, 5);
     this.deReception.Name = "deReception";
     this.deReception.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deReception.Properties.ReadOnly = true;
     this.deReception.Size = new System.Drawing.Size(87, 20);
     this.deReception.TabIndex = 10;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(12, 8);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(62, 13);
     this.label12.TabIndex = 9;
     this.label12.Text = "Recepción:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(12, 50);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(47, 13);
     this.label19.TabIndex = 9;
     this.label19.Text = "Entrega:";
     //
     // deResult
     //
     this.deResult.EditValue = null;
     this.deResult.Location = new System.Drawing.Point(75, 47);
     this.deResult.Name = "deResult";
     this.deResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deResult.Size = new System.Drawing.Size(87, 20);
     this.deResult.TabIndex = 10;
     //
     // xtraTabControl2
     //
     this.xtraTabControl2.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl2.Appearance.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl2.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl2.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl2.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl2.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl2.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl2.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl2.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl2.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl2.Location = new System.Drawing.Point(551, 29);
     this.xtraTabControl2.Name = "xtraTabControl2";
     this.xtraTabControl2.PaintStyleName = "PropertyView";
     this.xtraTabControl2.SelectedTabPage = this.tabDateRegRecep;
     this.xtraTabControl2.Size = new System.Drawing.Size(264, 114);
     this.xtraTabControl2.TabIndex = 4;
     this.xtraTabControl2.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabDateRegRecep});
     //
     // tabDateRegRecep
     //
     this.tabDateRegRecep.Controls.Add(this.tbNumDays);
     this.tabDateRegRecep.Controls.Add(this.deHourResult);
     this.tabDateRegRecep.Controls.Add(this.deHourReception);
     this.tabDateRegRecep.Controls.Add(this.label27);
     this.tabDateRegRecep.Controls.Add(this.deReception);
     this.tabDateRegRecep.Controls.Add(this.lookUpEdit1);
     this.tabDateRegRecep.Controls.Add(this.deResult);
     this.tabDateRegRecep.Controls.Add(this.label19);
     this.tabDateRegRecep.Controls.Add(this.textEdit3);
     this.tabDateRegRecep.Controls.Add(this.label12);
     this.tabDateRegRecep.Name = "tabDateRegRecep";
     this.tabDateRegRecep.Size = new System.Drawing.Size(262, 93);
     this.tabDateRegRecep.Text = "Fechas";
     //
     // tbNumDays
     //
     this.tbNumDays.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbNumDays.Location = new System.Drawing.Point(75, 26);
     this.tbNumDays.Name = "tbNumDays";
     this.tbNumDays.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.tbNumDays.Properties.IsFloatValue = false;
     this.tbNumDays.Properties.Mask.EditMask = "N00";
     this.tbNumDays.Size = new System.Drawing.Size(42, 20);
     this.tbNumDays.TabIndex = 12;
     this.tbNumDays.EditValueChanged += new System.EventHandler(this.tbNumDays_EditValueChanged);
     //
     // deHourResult
     //
     this.deHourResult.EditValue = null;
     this.deHourResult.Location = new System.Drawing.Point(164, 47);
     this.deHourResult.Name = "deHourResult";
     this.deHourResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deHourResult.Properties.Mask.EditMask = "t";
     this.deHourResult.Size = new System.Drawing.Size(91, 20);
     this.deHourResult.TabIndex = 11;
     //
     // deHourReception
     //
     this.deHourReception.EditValue = null;
     this.deHourReception.Location = new System.Drawing.Point(164, 5);
     this.deHourReception.Name = "deHourReception";
     this.deHourReception.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.deHourReception.Properties.Mask.EditMask = "t";
     this.deHourReception.Size = new System.Drawing.Size(91, 20);
     this.deHourReception.TabIndex = 1;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(12, 29);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(45, 13);
     this.label27.TabIndex = 9;
     this.label27.Text = "N°Días:";
     //
     // lookUpEdit1
     //
     this.lookUpEdit1.Location = new System.Drawing.Point(452, 55);
     this.lookUpEdit1.Name = "lookUpEdit1";
     this.lookUpEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit1.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("IDTypePost", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Den_Type_Post")});
     this.lookUpEdit1.Properties.NullText = "Seleccionar";
     this.lookUpEdit1.Properties.ShowFooter = false;
     this.lookUpEdit1.Properties.ShowHeader = false;
     this.lookUpEdit1.Size = new System.Drawing.Size(100, 20);
     this.lookUpEdit1.TabIndex = 1;
     //
     // textEdit3
     //
     this.textEdit3.Location = new System.Drawing.Point(452, 9);
     this.textEdit3.Name = "textEdit3";
     this.textEdit3.Size = new System.Drawing.Size(100, 20);
     this.textEdit3.TabIndex = 3;
     //
     // btReportClient
     //
     this.btReportClient.FlatAppearance.BorderSize = 0;
     this.btReportClient.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btReportClient.Location = new System.Drawing.Point(847, 10);
     this.btReportClient.Name = "btReportClient";
     this.btReportClient.Size = new System.Drawing.Size(59, 23);
     this.btReportClient.TabIndex = 11;
     this.btReportClient.Text = "Repote por Cliente";
     this.btReportClient.UseVisualStyleBackColor = true;
     this.btReportClient.Visible = false;
     this.btReportClient.Click += new System.EventHandler(this.btReportClient_Click);
     //
     // txIdrecep_sample
     //
     this.txIdrecep_sample.Enabled = false;
     this.txIdrecep_sample.Location = new System.Drawing.Point(844, 117);
     this.txIdrecep_sample.Name = "txIdrecep_sample";
     this.txIdrecep_sample.Properties.Appearance.BackColor = System.Drawing.Color.Gainsboro;
     this.txIdrecep_sample.Properties.Appearance.Options.UseBackColor = true;
     this.txIdrecep_sample.Size = new System.Drawing.Size(100, 20);
     this.txIdrecep_sample.TabIndex = 7;
     this.txIdrecep_sample.Visible = false;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(8, 7);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(43, 13);
     this.label25.TabIndex = 10;
     this.label25.Text = "Código:";
     //
     // cbTypeSample
     //
     this.cbTypeSample.Location = new System.Drawing.Point(93, 4);
     this.cbTypeSample.Name = "cbTypeSample";
     this.cbTypeSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTypeSample.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_type_sample", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name_type_sample")});
     this.cbTypeSample.Properties.NullText = "Seleccionar";
     this.cbTypeSample.Properties.ShowFooter = false;
     this.cbTypeSample.Properties.ShowHeader = false;
     this.cbTypeSample.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbTypeSample.Size = new System.Drawing.Size(146, 20);
     this.cbTypeSample.TabIndex = 2;
     this.cbTypeSample.EditValueChanged += new System.EventHandler(this.cbTypeSample_EditValueChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(5, 7);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(86, 13);
     this.label26.TabIndex = 10;
     this.label26.Text = "Tipo de muestra:";
     //
     // ofdRecepFileAttach
     //
     this.ofdRecepFileAttach.FileName = "openFileDialog1";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(834, 41);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(110, 13);
     this.label14.TabIndex = 9;
     this.label14.Text = "gastos administrativos";
     this.label14.Visible = false;
     //
     // tbAdministrativeExpense
     //
     this.tbAdministrativeExpense.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAdministrativeExpense.Location = new System.Drawing.Point(837, 57);
     this.tbAdministrativeExpense.Name = "tbAdministrativeExpense";
     this.tbAdministrativeExpense.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.tbAdministrativeExpense.Size = new System.Drawing.Size(107, 20);
     this.tbAdministrativeExpense.TabIndex = 11;
     this.tbAdministrativeExpense.Visible = false;
     //
     // tbCod_recep_sample
     //
     this.tbCod_recep_sample.Location = new System.Drawing.Point(55, 4);
     this.tbCod_recep_sample.Name = "tbCod_recep_sample";
     this.tbCod_recep_sample.Properties.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.tbCod_recep_sample.Properties.Appearance.Options.UseBackColor = true;
     this.tbCod_recep_sample.Properties.ReadOnly = true;
     this.tbCod_recep_sample.Size = new System.Drawing.Size(100, 20);
     this.tbCod_recep_sample.TabIndex = 7;
     //
     // ucSignReception
     //
     this.ucSignReception.Location = new System.Drawing.Point(11, 2);
     this.ucSignReception.Margin = new System.Windows.Forms.Padding(0);
     this.ucSignReception.Name = "ucSignReception";
     this.ucSignReception.Pwd = null;
     this.ucSignReception.Size = new System.Drawing.Size(158, 40);
     this.ucSignReception.TabIndex = 16;
     this.ucSignReception.Title = "Guardar";
     this.ucSignReception.OnSign += new LimsProject.sign(this.ucSign1_OnSign);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.panel9);
     this.panelControl1.Controls.Add(this.xtraTabControl2);
     this.panelControl1.Controls.Add(this.tbAdministrativeExpense);
     this.panelControl1.Controls.Add(this.label14);
     this.panelControl1.Controls.Add(this.xtraTabControl1);
     this.panelControl1.Controls.Add(this.txIdrecep_sample);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(999, 146);
     this.panelControl1.TabIndex = 12;
     this.panelControl1.Text = "panelControl1";
     //
     // panel9
     //
     this.panel9.Controls.Add(this.panel11);
     this.panel9.Location = new System.Drawing.Point(13, 3);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(701, 27);
     this.panel9.TabIndex = 12;
     //
     // panel11
     //
     this.panel11.Controls.Add(this.paTypeSample);
     this.panel11.Controls.Add(this.paCodRegisterRecep);
     this.panel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel11.Location = new System.Drawing.Point(0, 0);
     this.panel11.Name = "panel11";
     this.panel11.Size = new System.Drawing.Size(701, 27);
     this.panel11.TabIndex = 1;
     //
     // paTypeSample
     //
     this.paTypeSample.Controls.Add(this.cbTypeSample);
     this.paTypeSample.Controls.Add(this.label26);
     this.paTypeSample.Dock = System.Windows.Forms.DockStyle.Left;
     this.paTypeSample.Location = new System.Drawing.Point(167, 0);
     this.paTypeSample.Name = "paTypeSample";
     this.paTypeSample.Size = new System.Drawing.Size(257, 27);
     this.paTypeSample.TabIndex = 12;
     //
     // paCodRegisterRecep
     //
     this.paCodRegisterRecep.Controls.Add(this.tbCod_recep_sample);
     this.paCodRegisterRecep.Controls.Add(this.label25);
     this.paCodRegisterRecep.Dock = System.Windows.Forms.DockStyle.Left;
     this.paCodRegisterRecep.Location = new System.Drawing.Point(0, 0);
     this.paCodRegisterRecep.Name = "paCodRegisterRecep";
     this.paCodRegisterRecep.Size = new System.Drawing.Size(167, 27);
     this.paCodRegisterRecep.TabIndex = 11;
     //
     // ucTitleRegisterRecep
     //
     this.ucTitleRegisterRecep.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ucTitleRegisterRecep.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucTitleRegisterRecep.Location = new System.Drawing.Point(0, 0);
     this.ucTitleRegisterRecep.Name = "ucTitleRegisterRecep";
     this.ucTitleRegisterRecep.Size = new System.Drawing.Size(999, 27);
     this.ucTitleRegisterRecep.TabIndex = 8;
     this.ucTitleRegisterRecep.Title = "Title";
     //
     // ucToolStrip1
     //
     this.ucToolStrip1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ucToolStrip1.Location = new System.Drawing.Point(0, 0);
     this.ucToolStrip1.Name = "ucToolStrip1";
     this.ucToolStrip1.Size = new System.Drawing.Size(1013, 25);
     this.ucToolStrip1.TabIndex = 0;
     this.ucToolStrip1.onFind += new LimsProject.Find(this.ucToolStrip1_onFind);
     this.ucToolStrip1.onNew += new LimsProject.New(this.ucToolStrip1_onNew);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(192, 26);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(191, 22);
     this.toolStripMenuItem1.Text = "Registro de Recepción";
     //
     // ucGenerarA
     //
     this.ucGenerarA.Location = new System.Drawing.Point(476, 9);
     this.ucGenerarA.Margin = new System.Windows.Forms.Padding(0);
     this.ucGenerarA.Name = "ucGenerarA";
     this.ucGenerarA.Size = new System.Drawing.Size(90, 30);
     this.ucGenerarA.TabIndex = 19;
     this.ucGenerarA.Title = "Generar a";
     this.ucGenerarA.onSelectedIndex += new LimsProject.SelectedIndex(this.ucGenerarA_onSelectedIndex);
     //
     // ucGenerarDesde
     //
     this.ucGenerarDesde.Location = new System.Drawing.Point(580, 9);
     this.ucGenerarDesde.Margin = new System.Windows.Forms.Padding(0);
     this.ucGenerarDesde.Name = "ucGenerarDesde";
     this.ucGenerarDesde.Size = new System.Drawing.Size(90, 30);
     this.ucGenerarDesde.TabIndex = 19;
     this.ucGenerarDesde.Title = "Generar desde";
     this.ucGenerarDesde.onSelectedIndex += new LimsProject.SelectedIndex(this.ucGenerarDesde_onSelectedIndex);
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.xtraTabControl3);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(999, 383);
     this.panelControl2.TabIndex = 3;
     this.panelControl2.Text = "panelControl2";
     //
     // xtraTabControl3
     //
     this.xtraTabControl3.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl3.Appearance.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl3.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl3.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl3.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl3.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl3.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl3.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl3.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl3.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl3.Location = new System.Drawing.Point(2, 2);
     this.xtraTabControl3.Name = "xtraTabControl3";
     this.xtraTabControl3.PaintStyleName = "PropertyView";
     this.xtraTabControl3.SelectedTabPage = this.tpMuestras;
     this.xtraTabControl3.Size = new System.Drawing.Size(995, 379);
     this.xtraTabControl3.TabIndex = 4;
     this.xtraTabControl3.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tpMuestras,
     this.tpAnexos,
     this.tpReject,
     this.tpDecree});
     //
     // tpMuestras
     //
     this.tpMuestras.Controls.Add(this.gcReception);
     this.tpMuestras.Controls.Add(this.panelControl7);
     this.tpMuestras.Controls.Add(this.expandablePanel1);
     this.tpMuestras.Name = "tpMuestras";
     this.tpMuestras.Size = new System.Drawing.Size(993, 358);
     this.tpMuestras.Text = "Muestras";
     //
     // panelControl7
     //
     this.panelControl7.Controls.Add(this.panel7);
     this.panelControl7.Controls.Add(this.panel5);
     this.panelControl7.Controls.Add(this.gcShowColumns);
     this.panelControl7.Controls.Add(this.tbAmortization);
     this.panelControl7.Controls.Add(this.label10);
     this.panelControl7.Controls.Add(this.tbResidue);
     this.panelControl7.Controls.Add(this.label13);
     this.panelControl7.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl7.Location = new System.Drawing.Point(0, 288);
     this.panelControl7.Name = "panelControl7";
     this.panelControl7.Size = new System.Drawing.Size(699, 70);
     this.panelControl7.TabIndex = 3;
     this.panelControl7.Text = "panelControl7";
     //
     // tpAnexos
     //
     this.tpAnexos.Controls.Add(this.checkEdit8);
     this.tpAnexos.Controls.Add(this.memoEdit1);
     this.tpAnexos.Controls.Add(this.checkEdit7);
     this.tpAnexos.Controls.Add(this.groupControl4);
     this.tpAnexos.Controls.Add(this.textEdit5);
     this.tpAnexos.Controls.Add(this.label21);
     this.tpAnexos.Controls.Add(this.label18);
     this.tpAnexos.Name = "tpAnexos";
     this.tpAnexos.Size = new System.Drawing.Size(520, 0);
     this.tpAnexos.Text = "Anexos";
     //
     // checkEdit8
     //
     this.checkEdit8.Location = new System.Drawing.Point(169, 35);
     this.checkEdit8.Name = "checkEdit8";
     this.checkEdit8.Properties.Caption = "Muestras de composito";
     this.checkEdit8.Size = new System.Drawing.Size(139, 18);
     this.checkEdit8.TabIndex = 12;
     //
     // memoEdit1
     //
     this.memoEdit1.Location = new System.Drawing.Point(105, 63);
     this.memoEdit1.Name = "memoEdit1";
     this.memoEdit1.Size = new System.Drawing.Size(548, 54);
     this.memoEdit1.TabIndex = 2;
     //
     // checkEdit7
     //
     this.checkEdit7.Location = new System.Drawing.Point(24, 35);
     this.checkEdit7.Name = "checkEdit7";
     this.checkEdit7.Properties.Caption = "Muestras puntuales";
     this.checkEdit7.Size = new System.Drawing.Size(139, 18);
     this.checkEdit7.TabIndex = 12;
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.textEdit2);
     this.groupControl4.Controls.Add(this.timeEdit1);
     this.groupControl4.Controls.Add(this.label17);
     this.groupControl4.Controls.Add(this.label16);
     this.groupControl4.Controls.Add(this.label15);
     this.groupControl4.Controls.Add(this.dateEdit1);
     this.groupControl4.Controls.Add(this.checkEdit6);
     this.groupControl4.Controls.Add(this.checkEdit5);
     this.groupControl4.Controls.Add(this.checkEdit4);
     this.groupControl4.Controls.Add(this.checkEdit3);
     this.groupControl4.Controls.Add(this.checkEdit2);
     this.groupControl4.Controls.Add(this.checkEdit1);
     this.groupControl4.Location = new System.Drawing.Point(8, 130);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(645, 196);
     this.groupControl4.TabIndex = 1;
     this.groupControl4.Text = "Campos a llenar al recepcionar las muestras";
     //
     // textEdit2
     //
     this.textEdit2.Location = new System.Drawing.Point(161, 163);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Size = new System.Drawing.Size(196, 20);
     this.textEdit2.TabIndex = 4;
     //
     // timeEdit1
     //
     this.timeEdit1.EditValue = new System.DateTime(2013, 8, 7, 0, 0, 0, 0);
     this.timeEdit1.Location = new System.Drawing.Point(161, 138);
     this.timeEdit1.Name = "timeEdit1";
     this.timeEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.timeEdit1.Size = new System.Drawing.Size(100, 20);
     this.timeEdit1.TabIndex = 3;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(23, 166);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(133, 13);
     this.label17.TabIndex = 2;
     this.label17.Text = "Condiciones de transporte:";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(23, 141);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(98, 13);
     this.label16.TabIndex = 2;
     this.label16.Text = "Hora de recepción:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(23, 116);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(105, 13);
     this.label15.TabIndex = 2;
     this.label15.Text = "Fecha de recepción:";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location = new System.Drawing.Point(161, 113);
     this.dateEdit1.Name = "dateEdit1";
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Size = new System.Drawing.Size(100, 20);
     this.dateEdit1.TabIndex = 1;
     //
     // checkEdit6
     //
     this.checkEdit6.Location = new System.Drawing.Point(201, 73);
     this.checkEdit6.Name = "checkEdit6";
     this.checkEdit6.Properties.Caption = "Duplicado";
     this.checkEdit6.Size = new System.Drawing.Size(75, 18);
     this.checkEdit6.TabIndex = 0;
     //
     // checkEdit5
     //
     this.checkEdit5.Location = new System.Drawing.Point(201, 48);
     this.checkEdit5.Name = "checkEdit5";
     this.checkEdit5.Properties.Caption = "Blanco muestreo";
     this.checkEdit5.Size = new System.Drawing.Size(112, 18);
     this.checkEdit5.TabIndex = 0;
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(201, 23);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "Blanco viajero";
     this.checkEdit4.Size = new System.Drawing.Size(98, 18);
     this.checkEdit4.TabIndex = 0;
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(26, 73);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "Conservación de muestras";
     this.checkEdit3.Size = new System.Drawing.Size(160, 18);
     this.checkEdit3.TabIndex = 0;
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(26, 48);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "Muestras recibidas intactas";
     this.checkEdit2.Size = new System.Drawing.Size(160, 18);
     this.checkEdit2.TabIndex = 0;
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(26, 23);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "Recipiente adecuado";
     this.checkEdit1.Size = new System.Drawing.Size(128, 18);
     this.checkEdit1.TabIndex = 0;
     //
     // textEdit5
     //
     this.textEdit5.Location = new System.Drawing.Point(79, 10);
     this.textEdit5.Name = "textEdit5";
     this.textEdit5.Size = new System.Drawing.Size(358, 20);
     this.textEdit5.TabIndex = 10;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(21, 13);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 11;
     this.label21.Text = "Proyecto:";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(18, 74);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(81, 13);
     this.label18.TabIndex = 2;
     this.label18.Text = "Observaciones:";
     //
     // tpReject
     //
     this.tpReject.Controls.Add(this.memoEdit2);
     this.tpReject.Controls.Add(this.label20);
     this.tpReject.Controls.Add(this.gcRejection);
     this.tpReject.Name = "tpReject";
     this.tpReject.Size = new System.Drawing.Size(520, 0);
     this.tpReject.Text = "Rechazos";
     //
     // memoEdit2
     //
     this.memoEdit2.Location = new System.Drawing.Point(116, 288);
     this.memoEdit2.Name = "memoEdit2";
     this.memoEdit2.Size = new System.Drawing.Size(529, 50);
     this.memoEdit2.TabIndex = 2;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(20, 299);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(90, 13);
     this.label20.TabIndex = 1;
     this.label20.Text = "Especificaciones:";
     //
     // gcRejection
     //
     this.gcRejection.EmbeddedNavigator.Name = "";
     this.gcRejection.Location = new System.Drawing.Point(21, 13);
     this.gcRejection.MainView = this.bandedGridView1;
     this.gcRejection.Name = "gcRejection";
     this.gcRejection.Size = new System.Drawing.Size(624, 251);
     this.gcRejection.TabIndex = 0;
     this.gcRejection.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bandedGridView1});
     //
     // bandedGridView1
     //
     this.bandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2});
     this.bandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gcRej_Code,
     this.gcRej_NameSample,
     this.gcRej_Date,
     this.gcRej_Hora,
     this.gcRej_Obs,
     this.gcRej_C1,
     this.gcRej_C2,
     this.gcRej_C3,
     this.gcRej_C4});
     this.bandedGridView1.GridControl = this.gcRejection;
     this.bandedGridView1.Name = "bandedGridView1";
     this.bandedGridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.gcRej_Code);
     this.gridBand1.Columns.Add(this.gcRej_NameSample);
     this.gridBand1.Columns.Add(this.gcRej_Date);
     this.gridBand1.Columns.Add(this.gcRej_Hora);
     this.gridBand1.Columns.Add(this.gcRej_Obs);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 629;
     //
     // gcRej_Code
     //
     this.gcRej_Code.Caption = "Codigo";
     this.gcRej_Code.Name = "gcRej_Code";
     this.gcRej_Code.Visible = true;
     //
     // gcRej_NameSample
     //
     this.gcRej_NameSample.Caption = "Nombre de muestra";
     this.gcRej_NameSample.Name = "gcRej_NameSample";
     this.gcRej_NameSample.Visible = true;
     this.gcRej_NameSample.Width = 204;
     //
     // gcRej_Date
     //
     this.gcRej_Date.Caption = "Fecha";
     this.gcRej_Date.Name = "gcRej_Date";
     this.gcRej_Date.Visible = true;
     //
     // gcRej_Hora
     //
     this.gcRej_Hora.Caption = "Hora";
     this.gcRej_Hora.Name = "gcRej_Hora";
     this.gcRej_Hora.Visible = true;
     //
     // gcRej_Obs
     //
     this.gcRej_Obs.Caption = "Ensayos rechazados";
     this.gcRej_Obs.Name = "gcRej_Obs";
     this.gcRej_Obs.Visible = true;
     this.gcRej_Obs.Width = 200;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Criterio";
     this.gridBand2.Columns.Add(this.gcRej_C1);
     this.gridBand2.Columns.Add(this.gcRej_C2);
     this.gridBand2.Columns.Add(this.gcRej_C3);
     this.gridBand2.Columns.Add(this.gcRej_C4);
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.Width = 150;
     //
     // gcRej_C1
     //
     this.gcRej_C1.Caption = "1";
     this.gcRej_C1.Name = "gcRej_C1";
     this.gcRej_C1.Visible = true;
     this.gcRej_C1.Width = 36;
     //
     // gcRej_C2
     //
     this.gcRej_C2.Caption = "2";
     this.gcRej_C2.Name = "gcRej_C2";
     this.gcRej_C2.Visible = true;
     this.gcRej_C2.Width = 36;
     //
     // gcRej_C3
     //
     this.gcRej_C3.Caption = "3";
     this.gcRej_C3.Name = "gcRej_C3";
     this.gcRej_C3.Visible = true;
     this.gcRej_C3.Width = 36;
     //
     // gcRej_C4
     //
     this.gcRej_C4.Caption = "4";
     this.gcRej_C4.Name = "gcRej_C4";
     this.gcRej_C4.Visible = true;
     this.gcRej_C4.Width = 42;
     //
     // tpDecree
     //
     this.tpDecree.Controls.Add(this.panelControl4);
     this.tpDecree.Controls.Add(this.panelControl3);
     this.tpDecree.Name = "tpDecree";
     this.tpDecree.Size = new System.Drawing.Size(520, 0);
     this.tpDecree.Text = "Decretos - Resultados";
     //
     // panelControl4
     //
     this.panelControl4.Controls.Add(this.xtraTabControl4);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl4.Location = new System.Drawing.Point(0, 30);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Padding = new System.Windows.Forms.Padding(10);
     this.panelControl4.Size = new System.Drawing.Size(520, 0);
     this.panelControl4.TabIndex = 11;
     this.panelControl4.Text = "panelControl4";
     //
     // xtraTabControl4
     //
     this.xtraTabControl4.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.xtraTabControl4.Appearance.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.Header.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(222)))), ((int)(((byte)(243)))));
     this.xtraTabControl4.AppearancePage.Header.BorderColor = System.Drawing.Color.White;
     this.xtraTabControl4.AppearancePage.Header.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.Header.Options.UseBorderColor = true;
     this.xtraTabControl4.AppearancePage.HeaderActive.BackColor = System.Drawing.Color.LightSteelBlue;
     this.xtraTabControl4.AppearancePage.HeaderActive.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl4.AppearancePage.HeaderActive.Options.UseBackColor = true;
     this.xtraTabControl4.AppearancePage.HeaderActive.Options.UseBorderColor = true;
     this.xtraTabControl4.AppearancePage.PageClient.BorderColor = System.Drawing.Color.Gainsboro;
     this.xtraTabControl4.AppearancePage.PageClient.Options.UseBorderColor = true;
     this.xtraTabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl4.Location = new System.Drawing.Point(12, 11);
     this.xtraTabControl4.Margin = new System.Windows.Forms.Padding(10);
     this.xtraTabControl4.Name = "xtraTabControl4";
     this.xtraTabControl4.PaintStyleName = "PropertyView";
     this.xtraTabControl4.SelectedTabPage = this.xtraTabPage4;
     this.xtraTabControl4.Size = new System.Drawing.Size(496, 0);
     this.xtraTabControl4.TabIndex = 5;
     this.xtraTabControl4.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage4,
     this.xtraTabPage5,
     this.xtraTabPage7});
     this.xtraTabControl4.Text = "Anexos";
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.gridDecretos);
     this.xtraTabPage4.Controls.Add(this.panelControl5);
     this.xtraTabPage4.Controls.Add(this.panelControl6);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(494, 0);
     this.xtraTabPage4.Text = "AG-03-00001 - NTP N° 214.003";
     //
     // gridDecretos
     //
     this.gridDecretos.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridDecretos.EmbeddedNavigator.Name = "";
     this.gridDecretos.Location = new System.Drawing.Point(0, 61);
     this.gridDecretos.MainView = this.gridView1;
     this.gridDecretos.Name = "gridDecretos";
     this.gridDecretos.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repCriterio,
     this.repUnidadMedida,
     this.repMetodo});
     this.gridDecretos.Size = new System.Drawing.Size(494, 0);
     this.gridDecretos.TabIndex = 2;
     this.gridDecretos.UseEmbeddedNavigator = true;
     this.gridDecretos.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcDec_Idmetodo,
     this.gcDec_Parametro,
     this.gcDec_Unidad_medida,
     this.gcDec_Result,
     this.gcDec_Criterio,
     this.gcDec_Valor1,
     this.gcDec_Valor2,
     this.gcDec_Conclusion});
     this.gridView1.GridControl = this.gridDecretos;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gcDec_Idmetodo
     //
     this.gcDec_Idmetodo.Caption = "Método";
     this.gcDec_Idmetodo.ColumnEdit = this.repMetodo;
     this.gcDec_Idmetodo.FieldName = "Idmetodo";
     this.gcDec_Idmetodo.Name = "gcDec_Idmetodo";
     this.gcDec_Idmetodo.Visible = true;
     this.gcDec_Idmetodo.VisibleIndex = 0;
     //
     // repMetodo
     //
     this.repMetodo.AutoHeight = false;
     this.repMetodo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repMetodo.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idmetodo", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre")});
     this.repMetodo.Name = "repMetodo";
     this.repMetodo.NullText = "";
     this.repMetodo.ShowFooter = false;
     this.repMetodo.ShowHeader = false;
     //
     // gcDec_Parametro
     //
     this.gcDec_Parametro.Caption = "Parametro";
     this.gcDec_Parametro.FieldName = "Parametro";
     this.gcDec_Parametro.Name = "gcDec_Parametro";
     this.gcDec_Parametro.Visible = true;
     this.gcDec_Parametro.VisibleIndex = 1;
     //
     // gcDec_Unidad_medida
     //
     this.gcDec_Unidad_medida.Caption = "Unidad_medida";
     this.gcDec_Unidad_medida.ColumnEdit = this.repUnidadMedida;
     this.gcDec_Unidad_medida.FieldName = "Unidad_medida";
     this.gcDec_Unidad_medida.Name = "gcDec_Unidad_medida";
     this.gcDec_Unidad_medida.Visible = true;
     this.gcDec_Unidad_medida.VisibleIndex = 2;
     //
     // repUnidadMedida
     //
     this.repUnidadMedida.AutoHeight = false;
     this.repUnidadMedida.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repUnidadMedida.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None)});
     this.repUnidadMedida.Name = "repUnidadMedida";
     this.repUnidadMedida.NullText = "";
     this.repUnidadMedida.ShowFooter = false;
     this.repUnidadMedida.ShowHeader = false;
     //
     // gcDec_Result
     //
     this.gcDec_Result.Caption = "Resultado";
     this.gcDec_Result.FieldName = "Result";
     this.gcDec_Result.Name = "gcDec_Result";
     this.gcDec_Result.Visible = true;
     this.gcDec_Result.VisibleIndex = 3;
     //
     // gcDec_Criterio
     //
     this.gcDec_Criterio.Caption = "Condición";
     this.gcDec_Criterio.ColumnEdit = this.repCriterio;
     this.gcDec_Criterio.FieldName = "Criterio";
     this.gcDec_Criterio.Name = "gcDec_Criterio";
     this.gcDec_Criterio.Visible = true;
     this.gcDec_Criterio.VisibleIndex = 4;
     //
     // repCriterio
     //
     this.repCriterio.AutoHeight = false;
     this.repCriterio.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repCriterio.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcriterio", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre_criterio")});
     this.repCriterio.Name = "repCriterio";
     this.repCriterio.NullText = "";
     this.repCriterio.ShowFooter = false;
     this.repCriterio.ShowHeader = false;
     //
     // gcDec_Valor1
     //
     this.gcDec_Valor1.Caption = "Valor1";
     this.gcDec_Valor1.FieldName = "Valor1";
     this.gcDec_Valor1.Name = "gcDec_Valor1";
     this.gcDec_Valor1.Visible = true;
     this.gcDec_Valor1.VisibleIndex = 5;
     //
     // gcDec_Valor2
     //
     this.gcDec_Valor2.Caption = "Valor2";
     this.gcDec_Valor2.FieldName = "Valor2";
     this.gcDec_Valor2.Name = "gcDec_Valor2";
     this.gcDec_Valor2.Visible = true;
     this.gcDec_Valor2.VisibleIndex = 6;
     //
     // gcDec_Conclusion
     //
     this.gcDec_Conclusion.Caption = "Conclusion";
     this.gcDec_Conclusion.FieldName = "Conclusion";
     this.gcDec_Conclusion.Name = "gcDec_Conclusion";
     this.gcDec_Conclusion.Visible = true;
     this.gcDec_Conclusion.VisibleIndex = 7;
     //
     // panelControl5
     //
     this.panelControl5.Controls.Add(this.memoEdit3);
     this.panelControl5.Controls.Add(this.label23);
     this.panelControl5.Controls.Add(this.label24);
     this.panelControl5.Controls.Add(this.label29);
     this.panelControl5.Controls.Add(this.textEdit4);
     this.panelControl5.Controls.Add(this.textEdit6);
     this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl5.Location = new System.Drawing.Point(0, 0);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Size = new System.Drawing.Size(494, 61);
     this.panelControl5.TabIndex = 0;
     this.panelControl5.Text = "panelControl5";
     //
     // memoEdit3
     //
     this.memoEdit3.EditValue = resources.GetString("memoEdit3.EditValue");
     this.memoEdit3.Location = new System.Drawing.Point(426, 7);
     this.memoEdit3.Name = "memoEdit3";
     this.memoEdit3.Size = new System.Drawing.Size(523, 46);
     this.memoEdit3.TabIndex = 8;
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(355, 9);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(66, 13);
     this.label23.TabIndex = 5;
     this.label23.Text = "Descripción:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(9, 9);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(43, 13);
     this.label24.TabIndex = 6;
     this.label24.Text = "Codigo:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(9, 30);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(75, 13);
     this.label29.TabIndex = 7;
     this.label29.Text = "Denominación";
     //
     // textEdit4
     //
     this.textEdit4.EditValue = "DEC-13-001";
     this.textEdit4.Location = new System.Drawing.Point(90, 6);
     this.textEdit4.Name = "textEdit4";
     this.textEdit4.Size = new System.Drawing.Size(107, 20);
     this.textEdit4.TabIndex = 3;
     //
     // textEdit6
     //
     this.textEdit6.EditValue = "NTP N° 214.003";
     this.textEdit6.Location = new System.Drawing.Point(90, 27);
     this.textEdit6.Name = "textEdit6";
     this.textEdit6.Size = new System.Drawing.Size(230, 20);
     this.textEdit6.TabIndex = 4;
     //
     // panelControl6
     //
     this.panelControl6.Controls.Add(this.memoEdit4);
     this.panelControl6.Controls.Add(this.label22);
     this.panelControl6.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl6.Location = new System.Drawing.Point(0, -49);
     this.panelControl6.Name = "panelControl6";
     this.panelControl6.Size = new System.Drawing.Size(494, 49);
     this.panelControl6.TabIndex = 3;
     this.panelControl6.Text = "panelControl6";
     //
     // memoEdit4
     //
     this.memoEdit4.EditValue = "CUMPLE, NO CUMPLE, BLA BLA BLA";
     this.memoEdit4.Location = new System.Drawing.Point(77, 4);
     this.memoEdit4.Name = "memoEdit4";
     this.memoEdit4.Size = new System.Drawing.Size(872, 40);
     this.memoEdit4.TabIndex = 8;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(9, 9);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(62, 13);
     this.label22.TabIndex = 5;
     this.label22.Text = "Conclusión:";
     //
     // xtraTabPage5
     //
     this.xtraTabPage5.Name = "xtraTabPage5";
     this.xtraTabPage5.Size = new System.Drawing.Size(494, -21);
     this.xtraTabPage5.Text = "AG-03-00001 - D.S. N° 031-2010";
     //
     // xtraTabPage7
     //
     this.xtraTabPage7.Name = "xtraTabPage7";
     this.xtraTabPage7.Size = new System.Drawing.Size(494, -21);
     this.xtraTabPage7.Text = "AG-03-00001 - D.S. N° 002-2008";
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.lookUpEdit2);
     this.panelControl3.Controls.Add(this.label31);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(520, 30);
     this.panelControl3.TabIndex = 10;
     this.panelControl3.Text = "panelControl3";
     //
     // lookUpEdit2
     //
     this.lookUpEdit2.Location = new System.Drawing.Point(86, 5);
     this.lookUpEdit2.Name = "lookUpEdit2";
     this.lookUpEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEdit2.Properties.NullText = "AG-03-00001";
     this.lookUpEdit2.Size = new System.Drawing.Size(144, 20);
     this.lookUpEdit2.TabIndex = 10;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(32, 8);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(48, 13);
     this.label31.TabIndex = 9;
     this.label31.Text = "Muestra:";
     //
     // FormReception
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1013, 662);
     this.Name = "FormReception";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Recepción de Muestras";
     this.Controls.SetChildIndex(this.paSupBotones, 0);
     this.Controls.SetChildIndex(this.thePanelTab1, 0);
     this.paTitleSearch.ResumeLayout(false);
     this.paTopBasicButtons.ResumeLayout(false);
     this.paTopSearch.ResumeLayout(false);
     this.paBottomSearch.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.paSearchGen.ResumeLayout(false);
     this.paSearchGen.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.paInferior.ResumeLayout(false);
     this.paTitulo.ResumeLayout(false);
     this.paCentral.ResumeLayout(false);
     this.paSuperior.ResumeLayout(false);
     this.thePanelTab1.ResumeLayout(false);
     this.tpDatos.ResumeLayout(false);
     this.paSupBotones.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcShowColumns)).EndInit();
     this.gcShowColumns.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).EndInit();
     this.panel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbResidue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmortization.Properties)).EndInit();
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalIgv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbTotalAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSubTotalAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcReception)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReception)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDescription)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repEnvelope_sealed)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSelect)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repResult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSendReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repLink)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDesLink)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repSample)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientPhone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientRuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbClientDomicile.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).EndInit();
     this.xtraTabPage6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPerson_type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCellPhone)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNum)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchFax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchPerson.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchTransport.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckDispatchCurier.Properties)).EndInit();
     this.expandablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabOptionRight)).EndInit();
     this.tabOptionRight.ResumeLayout(false);
     this.tpRightMethods.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcMethods)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvMethods)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAddColumn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     this.tpRightReports.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repStatusReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repReportOption)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTypeReport)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.tpRightAttach.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcAttachFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvAttachFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_file)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repAttach_status)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repButtons)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.tpRightProgram.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProgramButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDateProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repTimeProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.deReception.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deResult.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit();
     this.xtraTabControl2.ResumeLayout(false);
     this.tabDateRegRecep.ResumeLayout(false);
     this.tabDateRegRecep.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbNumDays.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourResult.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deHourReception.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txIdrecep_sample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAdministrativeExpense.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCod_recep_sample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     this.panel9.ResumeLayout(false);
     this.panel11.ResumeLayout(false);
     this.paTypeSample.ResumeLayout(false);
     this.paTypeSample.PerformLayout();
     this.paCodRegisterRecep.ResumeLayout(false);
     this.paCodRegisterRecep.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl3)).EndInit();
     this.xtraTabControl3.ResumeLayout(false);
     this.tpMuestras.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
     this.panelControl7.ResumeLayout(false);
     this.panelControl7.PerformLayout();
     this.tpAnexos.ResumeLayout(false);
     this.tpAnexos.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit5.Properties)).EndInit();
     this.tpReject.ResumeLayout(false);
     this.tpReject.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcRejection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bandedGridView1)).EndInit();
     this.tpDecree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl4)).EndInit();
     this.xtraTabControl4.ResumeLayout(false);
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridDecretos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repMetodo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repUnidadMedida)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCriterio)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     this.panelControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
     this.panelControl6.ResumeLayout(false);
     this.panelControl6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.panelControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit2.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     this.label4 = new System.Windows.Forms.Label();
     this.lkpEdtEmployeeID = new DevExpress.XtraEditors.LookUpEdit();
     this.lkpEdtBranchCode = new DevExpress.XtraEditors.LookUpEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.lkpEdtPackageID = new DevExpress.XtraEditors.LookUpEdit();
     this.dtEdtStartTime = new DevExpress.XtraEditors.DateEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.dtEditDate = new DevExpress.XtraEditors.DateEdit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtEmployeeID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtStartTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEditDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(188, 156);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex = 53;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(98, 156);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.TabIndex = 52;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(8, 112);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(93, 23);
     this.label4.TabIndex = 60;
     this.label4.Text = "Personal Trainer";
     //
     // lkpEdtEmployeeID
     //
     this.lkpEdtEmployeeID.EditValue = "";
     this.lkpEdtEmployeeID.Location = new System.Drawing.Point(124, 114);
     this.lkpEdtEmployeeID.Name = "lkpEdtEmployeeID";
     //
     // lkpEdtEmployeeID.Properties
     //
     this.lkpEdtEmployeeID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                              new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtEmployeeID.Size = new System.Drawing.Size(202, 20);
     this.lkpEdtEmployeeID.TabIndex = 59;
     this.lkpEdtEmployeeID.EditValueChanged += new System.EventHandler(this.lkpEdtEmployeeID_EditValueChanged);
     //
     // lkpEdtBranchCode
     //
     this.lkpEdtBranchCode.EditValue = "";
     this.lkpEdtBranchCode.Location = new System.Drawing.Point(124, 34);
     this.lkpEdtBranchCode.Name = "lkpEdtBranchCode";
     //
     // lkpEdtBranchCode.Properties
     //
     this.lkpEdtBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                              new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtBranchCode.Size = new System.Drawing.Size(202, 20);
     this.lkpEdtBranchCode.TabIndex = 57;
     this.lkpEdtBranchCode.EditValueChanged += new System.EventHandler(this.lkpEdtBranchCode_EditValueChanged);
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(8, 34);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(72, 23);
     this.label2.TabIndex = 55;
     this.label2.Text = "Branch";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 60);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(72, 23);
     this.label1.TabIndex = 54;
     this.label1.Text = "Date";
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(8, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(72, 23);
     this.label5.TabIndex = 62;
     this.label5.Text = "Package ID";
     //
     // lkpEdtPackageID
     //
     this.lkpEdtPackageID.EditValue = "";
     this.lkpEdtPackageID.Location = new System.Drawing.Point(124, 8);
     this.lkpEdtPackageID.Name = "lkpEdtPackageID";
     //
     // lkpEdtPackageID.Properties
     //
     this.lkpEdtPackageID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtPackageID.Size = new System.Drawing.Size(202, 20);
     this.lkpEdtPackageID.TabIndex = 63;
     //
     // dtEdtStartTime
     //
     this.dtEdtStartTime.EditValue = new System.DateTime(2006, 1, 1, 0, 0, 0, 0);
     this.dtEdtStartTime.Location = new System.Drawing.Point(124, 88);
     this.dtEdtStartTime.Name = "dtEdtStartTime";
     //
     // dtEdtStartTime.Properties
     //
     this.dtEdtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.dtEdtStartTime.Properties.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm tt";
     this.dtEdtStartTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtStartTime.Properties.EditFormat.FormatString = "T";
     this.dtEdtStartTime.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtStartTime.Properties.Mask.EditMask = "T";
     this.dtEdtStartTime.Size = new System.Drawing.Size(202, 20);
     this.dtEdtStartTime.TabIndex = 65;
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(8, 86);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(95, 23);
     this.label3.TabIndex = 64;
     this.label3.Text = "Session Time";
     //
     // dtEditDate
     //
     this.dtEditDate.EditValue = new System.DateTime(2005, 11, 23, 0, 0, 0, 0);
     this.dtEditDate.Location = new System.Drawing.Point(124, 60);
     this.dtEditDate.Name = "dtEditDate";
     //
     // dtEditDate.Properties
     //
     this.dtEditDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtEditDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEditDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEditDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtEditDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEditDate.Size = new System.Drawing.Size(202, 20);
     this.dtEditDate.TabIndex = 66;
     this.dtEditDate.EditValueChanged += new System.EventHandler(this.dtEditDate_EditValueChanged);
     //
     // FormUpdateServiceSessionPT
     //
     this.AcceptButton = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = new System.Drawing.Size(334, 192);
     this.Controls.Add(this.dtEditDate);
     this.Controls.Add(this.dtEdtStartTime);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.lkpEdtPackageID);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.lkpEdtEmployeeID);
     this.Controls.Add(this.lkpEdtBranchCode);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormUpdateServiceSessionPT";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Update PT Package";
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtEmployeeID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtStartTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEditDate.Properties)).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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmXuatNhapTon));
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatExcel = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.txtKhoHang = new DevExpress.XtraEditors.GridLookUpEdit();
     this.kHOHANGBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsKho = new Do_An_Quan_Ly_Kho.Kho.DS.dsKho();
     this.txtKhoHang_View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMa_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Kho1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDia_Chi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEmail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDien_Thoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colFax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDi_Dong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThu_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGhi_Chu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.dtDen = new DevExpress.XtraEditors.DateEdit();
     this.dtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbChonNgay = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.xuatNhapTonTheoNgayBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsXuatNhapTon = new Do_An_Quan_Ly_Kho.XuatNhapTon.DataSet.dsXuatNhapTon();
     this.gbList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMa_Hang_Hoa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDon_Vi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMa_Kho_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Kho = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Dau_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colSo_Luong_Nhap_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Xuat_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSo_Luong_Cuoi_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Dau_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Nhap_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Xuat_Trong_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThanh_Tien_Cuoi_Ky = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNhom_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTen_Nhom_Hang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.kHO_HANGTableAdapter = new Do_An_Quan_Ly_Kho.Kho.DS.dsKhoTableAdapters.KHO_HANGTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kHOHANGBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsKho)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang_View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xuatNhapTonTheoNgayBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsXuatNhapTon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     this.SuspendLayout();
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     this.img.Images.SetKeyName(54, "document-excel-icon.png");
     this.img.Images.SetKeyName(55, "Excel-icon (1).png");
     this.img.Images.SetKeyName(56, "Excel-icon (2).png");
     this.img.Images.SetKeyName(57, "Excel-icon.png");
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiXem,
     this.bbiSua,
     this.bbiXoa,
     this.bbiDong,
     this.bbiXuatExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 13;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(49, 160);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem, true),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.bbiSua, false),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, false, this.bbiXoa, false),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiXuatExcel, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 0;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXem_ItemClick);
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiSua.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 2;
     this.bbiXoa.ImageIndex = 16;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXoa.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiXuatExcel
     //
     this.bbiXuatExcel.Caption = "Xuất Excel";
     this.bbiXuatExcel.Id = 12;
     this.bbiXuatExcel.ImageIndex = 55;
     this.bbiXuatExcel.Name = "bbiXuatExcel";
     this.bbiXuatExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatExcel_ItemClick);
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 6;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1102, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 416);
     this.barDockControlBottom.Size = new System.Drawing.Size(1102, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 392);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1102, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 392);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.txtKhoHang);
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.dtDen);
     this.layoutControl1.Controls.Add(this.dtTu);
     this.layoutControl1.Controls.Add(this.cbChonNgay);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 24);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // txtKhoHang
     //
     this.txtKhoHang.EditValue = "";
     this.txtKhoHang.Location = new System.Drawing.Point(55, 2);
     this.txtKhoHang.MenuManager = this.bm;
     this.txtKhoHang.Name = "txtKhoHang";
     this.txtKhoHang.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFitResizePopup;
     this.txtKhoHang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtKhoHang.Properties.DataSource = this.kHOHANGBindingSource;
     this.txtKhoHang.Properties.DisplayMember = "Ten_Kho";
     this.txtKhoHang.Properties.NullText = "";
     this.txtKhoHang.Properties.NullValuePrompt = "(Kho Hàng)";
     this.txtKhoHang.Properties.NullValuePromptShowForEmptyValue = true;
     this.txtKhoHang.Properties.ValueMember = "Ma_Kho";
     this.txtKhoHang.Properties.View = this.txtKhoHang_View;
     this.txtKhoHang.Size = new System.Drawing.Size(121, 20);
     this.txtKhoHang.StyleController = this.layoutControl1;
     this.txtKhoHang.TabIndex = 9;
     this.txtKhoHang.EditValueChanged += new System.EventHandler(this.txtKhoHang_EditValueChanged);
     //
     // kHOHANGBindingSource
     //
     this.kHOHANGBindingSource.DataMember = "KHO_HANG";
     this.kHOHANGBindingSource.DataSource = this.dsKho;
     //
     // dsKho
     //
     this.dsKho.DataSetName = "dsKho";
     this.dsKho.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // txtKhoHang_View
     //
     this.txtKhoHang_View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMa_Kho,
     this.colTen_Kho1,
     this.colDia_Chi,
     this.colEmail,
     this.colDien_Thoai,
     this.colFax,
     this.colDi_Dong,
     this.colThu_Kho,
     this.colGhi_Chu});
     this.txtKhoHang_View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.txtKhoHang_View.Name = "txtKhoHang_View";
     this.txtKhoHang_View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.txtKhoHang_View.OptionsView.ShowAutoFilterRow = true;
     this.txtKhoHang_View.OptionsView.ShowGroupPanel = false;
     //
     // colMa_Kho
     //
     this.colMa_Kho.Caption = "Mã Kho";
     this.colMa_Kho.FieldName = "Ma_Kho";
     this.colMa_Kho.Name = "colMa_Kho";
     this.colMa_Kho.OptionsColumn.ReadOnly = true;
     this.colMa_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Kho.Visible = true;
     this.colMa_Kho.VisibleIndex = 0;
     //
     // colTen_Kho1
     //
     this.colTen_Kho1.Caption = "Tên Kho";
     this.colTen_Kho1.FieldName = "Ten_Kho";
     this.colTen_Kho1.Name = "colTen_Kho1";
     this.colTen_Kho1.OptionsColumn.ReadOnly = true;
     this.colTen_Kho1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Kho1.Visible = true;
     this.colTen_Kho1.VisibleIndex = 1;
     //
     // colDia_Chi
     //
     this.colDia_Chi.Caption = "Địa Chỉ";
     this.colDia_Chi.FieldName = "Dia_Chi";
     this.colDia_Chi.Name = "colDia_Chi";
     this.colDia_Chi.OptionsColumn.ReadOnly = true;
     this.colDia_Chi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDia_Chi.Visible = true;
     this.colDia_Chi.VisibleIndex = 2;
     //
     // colEmail
     //
     this.colEmail.Caption = "Email";
     this.colEmail.FieldName = "Email";
     this.colEmail.Name = "colEmail";
     this.colEmail.OptionsColumn.ReadOnly = true;
     this.colEmail.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colEmail.Visible = true;
     this.colEmail.VisibleIndex = 3;
     //
     // colDien_Thoai
     //
     this.colDien_Thoai.Caption = "Điện Thoại";
     this.colDien_Thoai.FieldName = "Dien_Thoai";
     this.colDien_Thoai.Name = "colDien_Thoai";
     this.colDien_Thoai.OptionsColumn.ReadOnly = true;
     this.colDien_Thoai.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDien_Thoai.Visible = true;
     this.colDien_Thoai.VisibleIndex = 4;
     //
     // colFax
     //
     this.colFax.Caption = "Fax";
     this.colFax.FieldName = "Fax";
     this.colFax.Name = "colFax";
     this.colFax.OptionsColumn.ReadOnly = true;
     this.colFax.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colFax.Visible = true;
     this.colFax.VisibleIndex = 5;
     //
     // colDi_Dong
     //
     this.colDi_Dong.Caption = "Di Động";
     this.colDi_Dong.FieldName = "Di_Dong";
     this.colDi_Dong.Name = "colDi_Dong";
     this.colDi_Dong.OptionsColumn.ReadOnly = true;
     this.colDi_Dong.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDi_Dong.Visible = true;
     this.colDi_Dong.VisibleIndex = 6;
     //
     // colThu_Kho
     //
     this.colThu_Kho.Caption = "Thủ Kho";
     this.colThu_Kho.FieldName = "Thu_Kho";
     this.colThu_Kho.Name = "colThu_Kho";
     this.colThu_Kho.OptionsColumn.ReadOnly = true;
     this.colThu_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThu_Kho.Visible = true;
     this.colThu_Kho.VisibleIndex = 7;
     //
     // colGhi_Chu
     //
     this.colGhi_Chu.Caption = "Ghi Chú";
     this.colGhi_Chu.FieldName = "Ghi_Chu";
     this.colGhi_Chu.Name = "colGhi_Chu";
     this.colGhi_Chu.OptionsColumn.ReadOnly = true;
     this.colGhi_Chu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colGhi_Chu.Visible = true;
     this.colGhi_Chu.VisibleIndex = 8;
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(613, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(487, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(487, 20);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // dtDen
     //
     this.dtDen.EditValue = null;
     this.dtDen.Location = new System.Drawing.Point(523, 2);
     this.dtDen.MenuManager = this.bm;
     this.dtDen.Name = "dtDen";
     this.dtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDen.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtDen.Size = new System.Drawing.Size(86, 20);
     this.dtDen.StyleController = this.layoutControl1;
     this.dtDen.TabIndex = 7;
     //
     // dtTu
     //
     this.dtTu.EditValue = null;
     this.dtTu.Location = new System.Drawing.Point(383, 2);
     this.dtTu.MenuManager = this.bm;
     this.dtTu.Name = "dtTu";
     this.dtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtTu.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtTu.Size = new System.Drawing.Size(83, 20);
     this.dtTu.StyleController = this.layoutControl1;
     this.dtTu.TabIndex = 6;
     //
     // cbChonNgay
     //
     this.cbChonNgay.Location = new System.Drawing.Point(235, 2);
     this.cbChonNgay.MenuManager = this.bm;
     this.cbChonNgay.Name = "cbChonNgay";
     this.cbChonNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbChonNgay.Properties.Items.AddRange(new object[] {
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbChonNgay.Size = new System.Drawing.Size(91, 20);
     this.cbChonNgay.StyleController = this.layoutControl1;
     this.cbChonNgay.TabIndex = 5;
     this.cbChonNgay.SelectedIndexChanged += new System.EventHandler(this.cbChonNgay_SelectedIndexChanged);
     //
     // gcList
     //
     this.gcList.Cursor = System.Windows.Forms.Cursors.Default;
     this.gcList.DataSource = this.xuatNhapTonTheoNgayBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh});
     this.gcList.Size = new System.Drawing.Size(1098, 364);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // xuatNhapTonTheoNgayBindingSource
     //
     this.xuatNhapTonTheoNgayBindingSource.DataMember = "Xuat_Nhap_Ton_Theo_Ngay";
     this.xuatNhapTonTheoNgayBindingSource.DataSource = this.dsXuatNhapTon;
     //
     // dsXuatNhapTon
     //
     this.dsXuatNhapTon.DataSetName = "dsXuatNhapTon";
     this.dsXuatNhapTon.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gbList.Appearance.GroupRow.ForeColor = System.Drawing.Color.Red;
     this.gbList.Appearance.GroupRow.Options.UseFont = true;
     this.gbList.Appearance.GroupRow.Options.UseForeColor = true;
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMa_Hang_Hoa,
     this.colTen_Hang,
     this.colDon_Vi,
     this.colMa_Kho_Hang,
     this.colTen_Kho,
     this.colSo_Luong_Dau_Ky,
     this.colSo_Luong_Nhap_Trong_Ky,
     this.colSo_Luong_Xuat_Trong_Ky,
     this.colSo_Luong_Cuoi_Ky,
     this.colThanh_Tien_Dau_Ky,
     this.colThanh_Tien_Nhap_Trong_Ky,
     this.colThanh_Tien_Xuat_Trong_Ky,
     this.colThanh_Tien_Cuoi_Ky,
     this.colNhom_Hang,
     this.colTen_Nhom_Hang});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupCount = 1;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Dau_Ky", this.colSo_Luong_Dau_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Nhap_Trong_Ky", this.colSo_Luong_Nhap_Trong_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Xuat_Trong_Ky", this.colSo_Luong_Xuat_Trong_Ky, "{0:##,##0.###}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Cuoi_Ky", this.colSo_Luong_Cuoi_Ky, "{0:##,##0.###}")});
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AutoExpandAllGroups = true;
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ColumnHeaderAutoHeight = DevExpress.Utils.DefaultBoolean.True;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colTen_Nhom_Hang, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // colMa_Hang_Hoa
     //
     this.colMa_Hang_Hoa.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Hang_Hoa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Hang_Hoa.Caption = "Mã Hàng Hóa";
     this.colMa_Hang_Hoa.FieldName = "Ma_Hang_Hoa";
     this.colMa_Hang_Hoa.Name = "colMa_Hang_Hoa";
     this.colMa_Hang_Hoa.OptionsColumn.ReadOnly = true;
     this.colMa_Hang_Hoa.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Hang_Hoa.Visible = true;
     this.colMa_Hang_Hoa.VisibleIndex = 0;
     this.colMa_Hang_Hoa.Width = 89;
     //
     // colTen_Hang
     //
     this.colTen_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Hang.Caption = "Tên Hàng";
     this.colTen_Hang.FieldName = "Ten_Hang";
     this.colTen_Hang.Name = "colTen_Hang";
     this.colTen_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Hang.Visible = true;
     this.colTen_Hang.VisibleIndex = 1;
     //
     // colDon_Vi
     //
     this.colDon_Vi.AppearanceHeader.Options.UseTextOptions = true;
     this.colDon_Vi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDon_Vi.Caption = "Đơn Vị";
     this.colDon_Vi.FieldName = "Don_Vi";
     this.colDon_Vi.Name = "colDon_Vi";
     this.colDon_Vi.OptionsColumn.ReadOnly = true;
     this.colDon_Vi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDon_Vi.Visible = true;
     this.colDon_Vi.VisibleIndex = 2;
     //
     // colMa_Kho_Hang
     //
     this.colMa_Kho_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Kho_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Kho_Hang.FieldName = "Ma_Kho_Hang";
     this.colMa_Kho_Hang.Name = "colMa_Kho_Hang";
     this.colMa_Kho_Hang.OptionsColumn.ReadOnly = true;
     this.colMa_Kho_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colTen_Kho
     //
     this.colTen_Kho.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Kho.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Kho.Caption = "Kho Hàng";
     this.colTen_Kho.FieldName = "Ten_Kho";
     this.colTen_Kho.Name = "colTen_Kho";
     this.colTen_Kho.OptionsColumn.ReadOnly = true;
     this.colTen_Kho.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Kho.Visible = true;
     this.colTen_Kho.VisibleIndex = 3;
     //
     // colSo_Luong_Dau_Ky
     //
     this.colSo_Luong_Dau_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Dau_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Dau_Ky.Caption = "Đầu Kỳ / Số Lượng";
     this.colSo_Luong_Dau_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Dau_Ky.FieldName = "So_Luong_Dau_Ky";
     this.colSo_Luong_Dau_Ky.Name = "colSo_Luong_Dau_Ky";
     this.colSo_Luong_Dau_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Dau_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Dau_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Dau_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Dau_Ky.Visible = true;
     this.colSo_Luong_Dau_Ky.VisibleIndex = 4;
     this.colSo_Luong_Dau_Ky.Width = 109;
     //
     // rptMayTinh
     //
     this.rptMayTinh.AutoHeight = false;
     this.rptMayTinh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinh.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.Name = "rptMayTinh";
     //
     // colSo_Luong_Nhap_Trong_Ky
     //
     this.colSo_Luong_Nhap_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Nhap_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Nhap_Trong_Ky.Caption = "Trong Kỳ / Số Lượng Nhập";
     this.colSo_Luong_Nhap_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Nhap_Trong_Ky.FieldName = "So_Luong_Nhap_Trong_Ky";
     this.colSo_Luong_Nhap_Trong_Ky.Name = "colSo_Luong_Nhap_Trong_Ky";
     this.colSo_Luong_Nhap_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Nhap_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Nhap_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Nhap_Trong_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Nhap_Trong_Ky.Visible = true;
     this.colSo_Luong_Nhap_Trong_Ky.VisibleIndex = 5;
     this.colSo_Luong_Nhap_Trong_Ky.Width = 149;
     //
     // colSo_Luong_Xuat_Trong_Ky
     //
     this.colSo_Luong_Xuat_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Xuat_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Xuat_Trong_Ky.Caption = "Trong Kỳ / Số Lượng Xuât";
     this.colSo_Luong_Xuat_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Xuat_Trong_Ky.FieldName = "So_Luong_Xuat_Trong_Ky";
     this.colSo_Luong_Xuat_Trong_Ky.Name = "colSo_Luong_Xuat_Trong_Ky";
     this.colSo_Luong_Xuat_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Xuat_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Xuat_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Xuat_Trong_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Xuat_Trong_Ky.Visible = true;
     this.colSo_Luong_Xuat_Trong_Ky.VisibleIndex = 6;
     this.colSo_Luong_Xuat_Trong_Ky.Width = 146;
     //
     // colSo_Luong_Cuoi_Ky
     //
     this.colSo_Luong_Cuoi_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Luong_Cuoi_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Luong_Cuoi_Ky.Caption = "Cuối Kỳ / Số Lượng";
     this.colSo_Luong_Cuoi_Ky.ColumnEdit = this.rptMayTinh;
     this.colSo_Luong_Cuoi_Ky.FieldName = "So_Luong_Cuoi_Ky";
     this.colSo_Luong_Cuoi_Ky.Name = "colSo_Luong_Cuoi_Ky";
     this.colSo_Luong_Cuoi_Ky.OptionsColumn.ReadOnly = true;
     this.colSo_Luong_Cuoi_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Luong_Cuoi_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "So_Luong_Cuoi_Ky", "{0:##,##0.###}")});
     this.colSo_Luong_Cuoi_Ky.Visible = true;
     this.colSo_Luong_Cuoi_Ky.VisibleIndex = 7;
     this.colSo_Luong_Cuoi_Ky.Width = 111;
     //
     // colThanh_Tien_Dau_Ky
     //
     this.colThanh_Tien_Dau_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Dau_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Dau_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Dau_Ky.FieldName = "Thanh_Tien_Dau_Ky";
     this.colThanh_Tien_Dau_Ky.Name = "colThanh_Tien_Dau_Ky";
     this.colThanh_Tien_Dau_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Dau_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Dau_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Dau_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Nhap_Trong_Ky
     //
     this.colThanh_Tien_Nhap_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Nhap_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Nhap_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Nhap_Trong_Ky.FieldName = "Thanh_Tien_Nhap_Trong_Ky";
     this.colThanh_Tien_Nhap_Trong_Ky.Name = "colThanh_Tien_Nhap_Trong_Ky";
     this.colThanh_Tien_Nhap_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Nhap_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Nhap_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Nhap_Trong_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Xuat_Trong_Ky
     //
     this.colThanh_Tien_Xuat_Trong_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Xuat_Trong_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Xuat_Trong_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Xuat_Trong_Ky.FieldName = "Thanh_Tien_Xuat_Trong_Ky";
     this.colThanh_Tien_Xuat_Trong_Ky.Name = "colThanh_Tien_Xuat_Trong_Ky";
     this.colThanh_Tien_Xuat_Trong_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Xuat_Trong_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Xuat_Trong_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Xuat_Trong_Ky", "{0:##,##0.###}")});
     //
     // colThanh_Tien_Cuoi_Ky
     //
     this.colThanh_Tien_Cuoi_Ky.AppearanceHeader.Options.UseTextOptions = true;
     this.colThanh_Tien_Cuoi_Ky.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colThanh_Tien_Cuoi_Ky.ColumnEdit = this.rptMayTinh;
     this.colThanh_Tien_Cuoi_Ky.FieldName = "Thanh_Tien_Cuoi_Ky";
     this.colThanh_Tien_Cuoi_Ky.Name = "colThanh_Tien_Cuoi_Ky";
     this.colThanh_Tien_Cuoi_Ky.OptionsColumn.ReadOnly = true;
     this.colThanh_Tien_Cuoi_Ky.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colThanh_Tien_Cuoi_Ky.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien_Cuoi_Ky", "{0:##,##0.###}")});
     //
     // colNhom_Hang
     //
     this.colNhom_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colNhom_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNhom_Hang.FieldName = "Nhom_Hang";
     this.colNhom_Hang.Name = "colNhom_Hang";
     this.colNhom_Hang.OptionsColumn.ReadOnly = true;
     this.colNhom_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colTen_Nhom_Hang
     //
     this.colTen_Nhom_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Nhom_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Nhom_Hang.Caption = "Nhóm Hàng";
     this.colTen_Nhom_Hang.FieldName = "Ten_Nhom_Hang";
     this.colTen_Nhom_Hang.Name = "colTen_Nhom_Hang";
     this.colTen_Nhom_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Nhom_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Nhom_Hang.Visible = true;
     this.colTen_Nhom_Hang.VisibleIndex = 4;
     this.colTen_Nhom_Hang.Width = 101;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5,
     this.layoutControlItem6});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1102, 392);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 368);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbChonNgay;
     this.layoutControlItem2.CustomizationFormText = "Tùy Chọn:";
     this.layoutControlItem2.Location = new System.Drawing.Point(178, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(328, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(140, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(50, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(468, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(143, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(50, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(611, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(491, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.txtKhoHang;
     this.layoutControlItem6.CustomizationFormText = "Kho Hàng:";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(178, 24);
     this.layoutControlItem6.Text = "Kho Hàng:";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(50, 13);
     //
     // kHO_HANGTableAdapter
     //
     this.kHO_HANGTableAdapter.ClearBeforeFill = true;
     //
     // frmXuatNhapTon
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1102, 416);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmXuatNhapTon";
     this.Text = "Xuất Nhập Tồn";
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kHOHANGBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsKho)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtKhoHang_View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xuatNhapTonTheoNgayBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsXuatNhapTon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTestList));
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.dtDen = new DevExpress.XtraEditors.DateEdit();
     this.dtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbChonNgay = new DevExpress.XtraEditors.ComboBoxEdit();
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.sTOCKOUTWARDDETAILBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsTEST = new Do_An_Quan_Ly_Kho.Test.DS.dsTEST();
     this.gbList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOutward_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStock_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRefType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProduct_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProductName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colVat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colLev4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnitConvert = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCurrentQty = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUnitPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colQtyConvert = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCharge = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProfit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBatch = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSerial = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChassyNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colIME = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWidth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colHeight = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colOrgin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSize = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStoreID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSorted = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colActive = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.sTOCK_OUTWARD_DETAILTableAdapter = new Do_An_Quan_Ly_Kho.Test.DS.dsTESTTableAdapters.STOCK_OUTWARD_DETAILTableAdapter();
     this.bbiExportExcel = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sTOCKOUTWARDDETAILBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsTEST)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     this.SuspendLayout();
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiXem,
     this.bbiSua,
     this.bbiXoa,
     this.bbiDong,
     this.bbiExportExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 13;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(49, 160);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiSua),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXoa),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiExportExcel)});
     this.bar2.OptionsBar.AllowDelete = true;
     this.bar2.OptionsBar.DrawSizeGrip = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 0;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiXoa
     //
     this.bbiXoa.Caption = "Xóa";
     this.bbiXoa.Id = 2;
     this.bbiXoa.ImageIndex = 16;
     this.bbiXoa.Name = "bbiXoa";
     this.bbiXoa.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 6;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.dtDen);
     this.layoutControl1.Controls.Add(this.dtTu);
     this.layoutControl1.Controls.Add(this.cbChonNgay);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 26);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1102, 390);
     this.layoutControl1.TabIndex = 4;
     this.layoutControl1.Text = "layoutControl1";
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(452, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(648, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(648, 20);
     this.layoutControlGroup2.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // dtDen
     //
     this.dtDen.EditValue = null;
     this.dtDen.Location = new System.Drawing.Point(326, 2);
     this.dtDen.MenuManager = this.bm;
     this.dtDen.Name = "dtDen";
     this.dtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtDen.Size = new System.Drawing.Size(122, 20);
     this.dtDen.StyleController = this.layoutControl1;
     this.dtDen.TabIndex = 7;
     //
     // dtTu
     //
     this.dtTu.EditValue = null;
     this.dtTu.Location = new System.Drawing.Point(176, 2);
     this.dtTu.MenuManager = this.bm;
     this.dtTu.Name = "dtTu";
     this.dtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtTu.Size = new System.Drawing.Size(122, 20);
     this.dtTu.StyleController = this.layoutControl1;
     this.dtTu.TabIndex = 6;
     //
     // cbChonNgay
     //
     this.cbChonNgay.Location = new System.Drawing.Point(57, 2);
     this.cbChonNgay.MenuManager = this.bm;
     this.cbChonNgay.Name = "cbChonNgay";
     this.cbChonNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbChonNgay.Properties.Items.AddRange(new object[] {
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbChonNgay.Size = new System.Drawing.Size(91, 20);
     this.cbChonNgay.StyleController = this.layoutControl1;
     this.cbChonNgay.TabIndex = 5;
     this.cbChonNgay.SelectedIndexChanged += new System.EventHandler(this.cbChonNgay_SelectedIndexChanged);
     //
     // gcList
     //
     this.gcList.DataSource = this.sTOCKOUTWARDDETAILBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.Size = new System.Drawing.Size(1098, 362);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // sTOCKOUTWARDDETAILBindingSource
     //
     this.sTOCKOUTWARDDETAILBindingSource.DataMember = "STOCK_OUTWARD_DETAIL";
     this.sTOCKOUTWARDDETAILBindingSource.DataSource = this.dsTEST;
     //
     // dsTEST
     //
     this.dsTEST.DataSetName = "dsTEST";
     this.dsTEST.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colID,
     this.colOutward_ID,
     this.colStock_ID,
     this.colRefType,
     this.colProduct_ID,
     this.colProductName,
     this.colVat,
     this.colLev1,
     this.colLev2,
     this.colLev3,
     this.colLev4,
     this.colUnit,
     this.colUnitConvert,
     this.colCurrentQty,
     this.colQuantity,
     this.colUnitPrice,
     this.colAmount,
     this.colQtyConvert,
     this.colDiscount,
     this.colCharge,
     this.colCost,
     this.colProfit,
     this.colBatch,
     this.colSerial,
     this.colChassyNo,
     this.colIME,
     this.colWidth,
     this.colHeight,
     this.colOrgin,
     this.colSize,
     this.colStoreID,
     this.colDescription,
     this.colSorted,
     this.colActive});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // colID
     //
     this.colID.AppearanceHeader.Options.UseTextOptions = true;
     this.colID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colID.FieldName = "ID";
     this.colID.Name = "colID";
     this.colID.OptionsColumn.ReadOnly = true;
     this.colID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colID.Visible = true;
     this.colID.VisibleIndex = 0;
     this.colID.Width = 33;
     //
     // colOutward_ID
     //
     this.colOutward_ID.AppearanceHeader.Options.UseTextOptions = true;
     this.colOutward_ID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colOutward_ID.FieldName = "Outward_ID";
     this.colOutward_ID.Name = "colOutward_ID";
     this.colOutward_ID.OptionsColumn.ReadOnly = true;
     this.colOutward_ID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colOutward_ID.Visible = true;
     this.colOutward_ID.VisibleIndex = 1;
     this.colOutward_ID.Width = 81;
     //
     // colStock_ID
     //
     this.colStock_ID.AppearanceHeader.Options.UseTextOptions = true;
     this.colStock_ID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colStock_ID.FieldName = "Stock_ID";
     this.colStock_ID.Name = "colStock_ID";
     this.colStock_ID.OptionsColumn.ReadOnly = true;
     this.colStock_ID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colStock_ID.Visible = true;
     this.colStock_ID.VisibleIndex = 2;
     this.colStock_ID.Width = 65;
     //
     // colRefType
     //
     this.colRefType.AppearanceHeader.Options.UseTextOptions = true;
     this.colRefType.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRefType.FieldName = "RefType";
     this.colRefType.Name = "colRefType";
     this.colRefType.OptionsColumn.ReadOnly = true;
     this.colRefType.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colRefType.Visible = true;
     this.colRefType.VisibleIndex = 3;
     this.colRefType.Width = 66;
     //
     // colProduct_ID
     //
     this.colProduct_ID.AppearanceHeader.Options.UseTextOptions = true;
     this.colProduct_ID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colProduct_ID.FieldName = "Product_ID";
     this.colProduct_ID.Name = "colProduct_ID";
     this.colProduct_ID.OptionsColumn.ReadOnly = true;
     this.colProduct_ID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colProduct_ID.Visible = true;
     this.colProduct_ID.VisibleIndex = 4;
     this.colProduct_ID.Width = 76;
     //
     // colProductName
     //
     this.colProductName.AppearanceHeader.Options.UseTextOptions = true;
     this.colProductName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colProductName.FieldName = "ProductName";
     this.colProductName.Name = "colProductName";
     this.colProductName.OptionsColumn.ReadOnly = true;
     this.colProductName.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colProductName.Visible = true;
     this.colProductName.VisibleIndex = 5;
     this.colProductName.Width = 89;
     //
     // colVat
     //
     this.colVat.AppearanceHeader.Options.UseTextOptions = true;
     this.colVat.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colVat.FieldName = "Vat";
     this.colVat.Name = "colVat";
     this.colVat.OptionsColumn.ReadOnly = true;
     this.colVat.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colVat.Visible = true;
     this.colVat.VisibleIndex = 6;
     this.colVat.Width = 38;
     //
     // colLev1
     //
     this.colLev1.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev1.FieldName = "Lev1";
     this.colLev1.Name = "colLev1";
     this.colLev1.OptionsColumn.ReadOnly = true;
     this.colLev1.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev1.Visible = true;
     this.colLev1.VisibleIndex = 7;
     this.colLev1.Width = 45;
     //
     // colLev2
     //
     this.colLev2.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev2.FieldName = "Lev2";
     this.colLev2.Name = "colLev2";
     this.colLev2.OptionsColumn.ReadOnly = true;
     this.colLev2.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev2.Visible = true;
     this.colLev2.VisibleIndex = 8;
     this.colLev2.Width = 45;
     //
     // colLev3
     //
     this.colLev3.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev3.FieldName = "Lev3";
     this.colLev3.Name = "colLev3";
     this.colLev3.OptionsColumn.ReadOnly = true;
     this.colLev3.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev3.Visible = true;
     this.colLev3.VisibleIndex = 9;
     this.colLev3.Width = 45;
     //
     // colLev4
     //
     this.colLev4.AppearanceHeader.Options.UseTextOptions = true;
     this.colLev4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLev4.FieldName = "Lev4";
     this.colLev4.Name = "colLev4";
     this.colLev4.OptionsColumn.ReadOnly = true;
     this.colLev4.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLev4.Visible = true;
     this.colLev4.VisibleIndex = 10;
     this.colLev4.Width = 45;
     //
     // colUnit
     //
     this.colUnit.AppearanceHeader.Options.UseTextOptions = true;
     this.colUnit.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colUnit.FieldName = "Unit";
     this.colUnit.Name = "colUnit";
     this.colUnit.OptionsColumn.ReadOnly = true;
     this.colUnit.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colUnit.Visible = true;
     this.colUnit.VisibleIndex = 11;
     this.colUnit.Width = 41;
     //
     // colUnitConvert
     //
     this.colUnitConvert.AppearanceHeader.Options.UseTextOptions = true;
     this.colUnitConvert.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colUnitConvert.FieldName = "UnitConvert";
     this.colUnitConvert.Name = "colUnitConvert";
     this.colUnitConvert.OptionsColumn.ReadOnly = true;
     this.colUnitConvert.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colUnitConvert.Visible = true;
     this.colUnitConvert.VisibleIndex = 12;
     this.colUnitConvert.Width = 83;
     //
     // colCurrentQty
     //
     this.colCurrentQty.AppearanceHeader.Options.UseTextOptions = true;
     this.colCurrentQty.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCurrentQty.FieldName = "CurrentQty";
     this.colCurrentQty.Name = "colCurrentQty";
     this.colCurrentQty.OptionsColumn.ReadOnly = true;
     this.colCurrentQty.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCurrentQty.Visible = true;
     this.colCurrentQty.VisibleIndex = 13;
     this.colCurrentQty.Width = 80;
     //
     // colQuantity
     //
     this.colQuantity.AppearanceHeader.Options.UseTextOptions = true;
     this.colQuantity.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colQuantity.FieldName = "Quantity";
     this.colQuantity.Name = "colQuantity";
     this.colQuantity.OptionsColumn.ReadOnly = true;
     this.colQuantity.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colQuantity.Visible = true;
     this.colQuantity.VisibleIndex = 14;
     this.colQuantity.Width = 64;
     //
     // colUnitPrice
     //
     this.colUnitPrice.AppearanceHeader.Options.UseTextOptions = true;
     this.colUnitPrice.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colUnitPrice.FieldName = "UnitPrice";
     this.colUnitPrice.Name = "colUnitPrice";
     this.colUnitPrice.OptionsColumn.ReadOnly = true;
     this.colUnitPrice.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colUnitPrice.Visible = true;
     this.colUnitPrice.VisibleIndex = 15;
     this.colUnitPrice.Width = 67;
     //
     // colAmount
     //
     this.colAmount.AppearanceHeader.Options.UseTextOptions = true;
     this.colAmount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAmount.FieldName = "Amount";
     this.colAmount.Name = "colAmount";
     this.colAmount.OptionsColumn.ReadOnly = true;
     this.colAmount.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colAmount.Visible = true;
     this.colAmount.VisibleIndex = 16;
     this.colAmount.Width = 59;
     //
     // colQtyConvert
     //
     this.colQtyConvert.AppearanceHeader.Options.UseTextOptions = true;
     this.colQtyConvert.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colQtyConvert.FieldName = "QtyConvert";
     this.colQtyConvert.Name = "colQtyConvert";
     this.colQtyConvert.OptionsColumn.ReadOnly = true;
     this.colQtyConvert.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colQtyConvert.Visible = true;
     this.colQtyConvert.VisibleIndex = 17;
     this.colQtyConvert.Width = 82;
     //
     // colDiscount
     //
     this.colDiscount.AppearanceHeader.Options.UseTextOptions = true;
     this.colDiscount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDiscount.FieldName = "Discount";
     this.colDiscount.Name = "colDiscount";
     this.colDiscount.OptionsColumn.ReadOnly = true;
     this.colDiscount.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDiscount.Visible = true;
     this.colDiscount.VisibleIndex = 18;
     this.colDiscount.Width = 63;
     //
     // colCharge
     //
     this.colCharge.AppearanceHeader.Options.UseTextOptions = true;
     this.colCharge.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCharge.FieldName = "Charge";
     this.colCharge.Name = "colCharge";
     this.colCharge.OptionsColumn.ReadOnly = true;
     this.colCharge.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCharge.Visible = true;
     this.colCharge.VisibleIndex = 19;
     this.colCharge.Width = 57;
     //
     // colCost
     //
     this.colCost.AppearanceHeader.Options.UseTextOptions = true;
     this.colCost.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colCost.FieldName = "Cost";
     this.colCost.Name = "colCost";
     this.colCost.OptionsColumn.ReadOnly = true;
     this.colCost.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colCost.Visible = true;
     this.colCost.VisibleIndex = 20;
     this.colCost.Width = 44;
     //
     // colProfit
     //
     this.colProfit.AppearanceHeader.Options.UseTextOptions = true;
     this.colProfit.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colProfit.FieldName = "Profit";
     this.colProfit.Name = "colProfit";
     this.colProfit.OptionsColumn.ReadOnly = true;
     this.colProfit.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colProfit.Visible = true;
     this.colProfit.VisibleIndex = 21;
     this.colProfit.Width = 48;
     //
     // colBatch
     //
     this.colBatch.AppearanceHeader.Options.UseTextOptions = true;
     this.colBatch.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBatch.FieldName = "Batch";
     this.colBatch.Name = "colBatch";
     this.colBatch.OptionsColumn.ReadOnly = true;
     this.colBatch.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colBatch.Visible = true;
     this.colBatch.VisibleIndex = 22;
     this.colBatch.Width = 49;
     //
     // colSerial
     //
     this.colSerial.AppearanceHeader.Options.UseTextOptions = true;
     this.colSerial.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSerial.FieldName = "Serial";
     this.colSerial.Name = "colSerial";
     this.colSerial.OptionsColumn.ReadOnly = true;
     this.colSerial.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSerial.Visible = true;
     this.colSerial.VisibleIndex = 23;
     this.colSerial.Width = 48;
     //
     // colChassyNo
     //
     this.colChassyNo.AppearanceHeader.Options.UseTextOptions = true;
     this.colChassyNo.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChassyNo.FieldName = "ChassyNo";
     this.colChassyNo.Name = "colChassyNo";
     this.colChassyNo.OptionsColumn.ReadOnly = true;
     this.colChassyNo.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colChassyNo.Visible = true;
     this.colChassyNo.VisibleIndex = 24;
     this.colChassyNo.Width = 73;
     //
     // colIME
     //
     this.colIME.AppearanceHeader.Options.UseTextOptions = true;
     this.colIME.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colIME.FieldName = "IME";
     this.colIME.Name = "colIME";
     this.colIME.OptionsColumn.ReadOnly = true;
     this.colIME.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colIME.Visible = true;
     this.colIME.VisibleIndex = 25;
     this.colIME.Width = 40;
     //
     // colWidth
     //
     this.colWidth.AppearanceHeader.Options.UseTextOptions = true;
     this.colWidth.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWidth.FieldName = "Width";
     this.colWidth.Name = "colWidth";
     this.colWidth.OptionsColumn.ReadOnly = true;
     this.colWidth.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colWidth.Visible = true;
     this.colWidth.VisibleIndex = 26;
     this.colWidth.Width = 50;
     //
     // colHeight
     //
     this.colHeight.AppearanceHeader.Options.UseTextOptions = true;
     this.colHeight.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colHeight.FieldName = "Height";
     this.colHeight.Name = "colHeight";
     this.colHeight.OptionsColumn.ReadOnly = true;
     this.colHeight.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colHeight.Visible = true;
     this.colHeight.VisibleIndex = 27;
     this.colHeight.Width = 53;
     //
     // colOrgin
     //
     this.colOrgin.AppearanceHeader.Options.UseTextOptions = true;
     this.colOrgin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colOrgin.FieldName = "Orgin";
     this.colOrgin.Name = "colOrgin";
     this.colOrgin.OptionsColumn.ReadOnly = true;
     this.colOrgin.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colOrgin.Visible = true;
     this.colOrgin.VisibleIndex = 28;
     this.colOrgin.Width = 48;
     //
     // colSize
     //
     this.colSize.AppearanceHeader.Options.UseTextOptions = true;
     this.colSize.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSize.FieldName = "Size";
     this.colSize.Name = "colSize";
     this.colSize.OptionsColumn.ReadOnly = true;
     this.colSize.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSize.Visible = true;
     this.colSize.VisibleIndex = 29;
     this.colSize.Width = 41;
     //
     // colStoreID
     //
     this.colStoreID.AppearanceHeader.Options.UseTextOptions = true;
     this.colStoreID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colStoreID.FieldName = "StoreID";
     this.colStoreID.Name = "colStoreID";
     this.colStoreID.OptionsColumn.ReadOnly = true;
     this.colStoreID.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colStoreID.Visible = true;
     this.colStoreID.VisibleIndex = 30;
     this.colStoreID.Width = 62;
     //
     // colDescription
     //
     this.colDescription.AppearanceHeader.Options.UseTextOptions = true;
     this.colDescription.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDescription.FieldName = "Description";
     this.colDescription.Name = "colDescription";
     this.colDescription.OptionsColumn.ReadOnly = true;
     this.colDescription.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDescription.Visible = true;
     this.colDescription.VisibleIndex = 31;
     //
     // colSorted
     //
     this.colSorted.AppearanceHeader.Options.UseTextOptions = true;
     this.colSorted.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSorted.FieldName = "Sorted";
     this.colSorted.Name = "colSorted";
     this.colSorted.OptionsColumn.ReadOnly = true;
     this.colSorted.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSorted.Visible = true;
     this.colSorted.VisibleIndex = 32;
     this.colSorted.Width = 54;
     //
     // colActive
     //
     this.colActive.AppearanceHeader.Options.UseTextOptions = true;
     this.colActive.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colActive.FieldName = "Active";
     this.colActive.Name = "colActive";
     this.colActive.OptionsColumn.ReadOnly = true;
     this.colActive.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colActive.Visible = true;
     this.colActive.VisibleIndex = 33;
     this.colActive.Width = 52;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1102, 390);
     this.layoutControlGroup1.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1102, 366);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbChonNgay;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(150, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(20, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(300, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(78, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(150, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(20, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(450, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(652, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // sTOCK_OUTWARD_DETAILTableAdapter
     //
     this.sTOCK_OUTWARD_DETAILTableAdapter.ClearBeforeFill = true;
     //
     // bbiExportExcel
     //
     this.bbiExportExcel.Caption = "Xuất Excel";
     this.bbiExportExcel.Id = 12;
     this.bbiExportExcel.ImageIndex = 52;
     this.bbiExportExcel.Name = "bbiExportExcel";
     this.bbiExportExcel.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiExportExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiExportExcel_ItemClick);
     //
     // frmTestList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1102, 416);
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmTestList";
     this.Text = "Form1";
     this.Load += new System.EventHandler(this.frmTestList_Load);
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbChonNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sTOCKOUTWARDDETAILBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsTEST)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.txtContactPerson = new DevExpress.XtraEditors.TextEdit();
     this.txtMobileNo = new DevExpress.XtraEditors.TextEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.txtEmail = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.sbtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.txtBranchCode = new DevExpress.XtraEditors.TextEdit();
     this.rbFemale = new System.Windows.Forms.RadioButton();
     this.rbMale = new System.Windows.Forms.RadioButton();
     this.luedtMediaSource = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtMediaSourceCategory = new DevExpress.XtraEditors.LookUpEdit();
     this.label47 = new System.Windows.Forms.Label();
     this.txtNRICFIN = new DevExpress.XtraEditors.TextEdit();
     this.dateedtDOB = new DevExpress.XtraEditors.DateEdit();
     this.label4 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.txtMediaSource = new DevExpress.XtraEditors.TextEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.luedtAssigntoStaff = new DevExpress.XtraEditors.LookUpEdit();
     this.rtxtRemarks = new DevExpress.XtraEditors.MemoEdit();
     this.label9 = new System.Windows.Forms.Label();
     this.cbStatus = new System.Windows.Forms.ComboBox();
     this.label10 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.cbPhoneCall = new System.Windows.Forms.CheckBox();
     this.cbSMS = new System.Windows.Forms.CheckBox();
     this.cbEmail = new System.Windows.Forms.CheckBox();
     this.label12 = new System.Windows.Forms.Label();
     this.rbDNCYes = new System.Windows.Forms.RadioButton();
     this.rbDNCNo = new System.Windows.Forms.RadioButton();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label13 = new System.Windows.Forms.Label();
     this.gbAppt = new System.Windows.Forms.GroupBox();
     this.luedtServedBy = new DevExpress.XtraEditors.LookUpEdit();
     this.label17 = new System.Windows.Forms.Label();
     this.dateedtEndTime = new DevExpress.XtraEditors.DateEdit();
     this.dateedtStartTime = new DevExpress.XtraEditors.DateEdit();
     this.dateedtDate = new DevExpress.XtraEditors.DateEdit();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.chkMakeAppt = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobileNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtMediaSource.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtMediaSourceCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNRICFIN.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDOB.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDOB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMediaSource.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtAssigntoStaff.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rtxtRemarks.Properties)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.gbAppt.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtServedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 18);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(90, 18);
     this.label1.TabIndex = 214;
     this.label1.Text = "Contact Person:";
     //
     // txtContactPerson
     //
     this.txtContactPerson.EditValue = "";
     this.txtContactPerson.Location = new System.Drawing.Point(121, 15);
     this.txtContactPerson.Name = "txtContactPerson";
     this.txtContactPerson.Properties.MaxLength = 50;
     this.txtContactPerson.Size = new System.Drawing.Size(442, 20);
     this.txtContactPerson.TabIndex = 0;
     //
     // txtMobileNo
     //
     this.txtMobileNo.EditValue = "";
     this.txtMobileNo.Location = new System.Drawing.Point(121, 67);
     this.txtMobileNo.Name = "txtMobileNo";
     this.txtMobileNo.Properties.MaxLength = 50;
     this.txtMobileNo.Size = new System.Drawing.Size(148, 20);
     this.txtMobileNo.TabIndex = 2;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10, 70);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(90, 18);
     this.label2.TabIndex = 220;
     this.label2.Text = "Contact No:";
     //
     // txtEmail
     //
     this.txtEmail.EditValue = "";
     this.txtEmail.Location = new System.Drawing.Point(121, 93);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Properties.Appearance.BackColor = System.Drawing.Color.LightYellow;
     this.txtEmail.Properties.Appearance.Options.UseBackColor = true;
     this.txtEmail.Properties.MaxLength = 50;
     this.txtEmail.Size = new System.Drawing.Size(280, 20);
     this.txtEmail.TabIndex = 3;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 96);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(90, 18);
     this.label3.TabIndex = 241;
     this.label3.Text = "Email Address:";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(10, 308);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(90, 18);
     this.label5.TabIndex = 228;
     this.label5.Text = "Remarks:";
     //
     // sbtnSave
     //
     this.sbtnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.sbtnSave.Location = new System.Drawing.Point(121, 581);
     this.sbtnSave.Name = "sbtnSave";
     this.sbtnSave.Size = new System.Drawing.Size(75, 23);
     this.sbtnSave.TabIndex = 17;
     this.sbtnSave.Text = "Save";
     this.sbtnSave.Click += new System.EventHandler(this.sbtnSave_Click);
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location = new System.Drawing.Point(202, 581);
     this.sbtnCancel.Name = "sbtnCancel";
     this.sbtnCancel.Size = new System.Drawing.Size(75, 23);
     this.sbtnCancel.TabIndex = 18;
     this.sbtnCancel.Text = "Cancel";
     //
     // txtBranchCode
     //
     this.txtBranchCode.EditValue = "";
     this.txtBranchCode.Enabled = false;
     this.txtBranchCode.Location = new System.Drawing.Point(121, 227);
     this.txtBranchCode.Name = "txtBranchCode";
     this.txtBranchCode.Properties.MaxLength = 50;
     this.txtBranchCode.Size = new System.Drawing.Size(100, 20);
     this.txtBranchCode.TabIndex = 12;
     //
     // rbFemale
     //
     this.rbFemale.AutoSize = true;
     this.rbFemale.Location = new System.Drawing.Point(55, 4);
     this.rbFemale.Name = "rbFemale";
     this.rbFemale.Size = new System.Drawing.Size(59, 17);
     this.rbFemale.TabIndex = 5;
     this.rbFemale.Text = "Female";
     this.rbFemale.UseVisualStyleBackColor = true;
     //
     // rbMale
     //
     this.rbMale.AutoSize = true;
     this.rbMale.Location = new System.Drawing.Point(1, 4);
     this.rbMale.Name = "rbMale";
     this.rbMale.Size = new System.Drawing.Size(48, 17);
     this.rbMale.TabIndex = 4;
     this.rbMale.Text = "Male";
     this.rbMale.UseVisualStyleBackColor = true;
     //
     // luedtMediaSource
     //
     this.luedtMediaSource.EditValue = "";
     this.luedtMediaSource.Location = new System.Drawing.Point(242, 252);
     this.luedtMediaSource.Name = "luedtMediaSource";
     this.luedtMediaSource.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtMediaSource.Properties.PopupWidth = 200;
     this.luedtMediaSource.Size = new System.Drawing.Size(120, 20);
     this.luedtMediaSource.TabIndex = 13;
     //
     // luedtMediaSourceCategory
     //
     this.luedtMediaSourceCategory.EditValue = "";
     this.luedtMediaSourceCategory.Location = new System.Drawing.Point(121, 252);
     this.luedtMediaSourceCategory.Name = "luedtMediaSourceCategory";
     this.luedtMediaSourceCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtMediaSourceCategory.Properties.PopupWidth = 200;
     this.luedtMediaSourceCategory.Size = new System.Drawing.Size(120, 20);
     this.luedtMediaSourceCategory.TabIndex = 13;
     this.luedtMediaSourceCategory.EditValueChanged += new System.EventHandler(this.luedtMediaSourceCategory_EditValueChanged);
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label47.Location = new System.Drawing.Point(10, 256);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(73, 13);
     this.label47.TabIndex = 107;
     this.label47.Text = "Media Source";
     //
     // txtNRICFIN
     //
     this.txtNRICFIN.EditValue = "";
     this.txtNRICFIN.Location = new System.Drawing.Point(121, 41);
     this.txtNRICFIN.Name = "txtNRICFIN";
     this.txtNRICFIN.Properties.Appearance.BackColor = System.Drawing.Color.LightYellow;
     this.txtNRICFIN.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNRICFIN.Properties.Appearance.Options.UseBackColor = true;
     this.txtNRICFIN.Properties.Appearance.Options.UseFont = true;
     this.txtNRICFIN.Properties.MaxLength = 50;
     this.txtNRICFIN.Size = new System.Drawing.Size(280, 20);
     this.txtNRICFIN.TabIndex = 1;
     //
     // dateedtDOB
     //
     this.dateedtDOB.EditValue = null;
     this.dateedtDOB.Location = new System.Drawing.Point(121, 202);
     this.dateedtDOB.Name = "dateedtDOB";
     this.dateedtDOB.Properties.Appearance.BackColor = System.Drawing.Color.LightYellow;
     this.dateedtDOB.Properties.Appearance.Options.UseBackColor = true;
     this.dateedtDOB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateedtDOB.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtDOB.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateedtDOB.Size = new System.Drawing.Size(98, 20);
     this.dateedtDOB.TabIndex = 11;
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(10, 203);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(98, 18);
     this.label4.TabIndex = 105;
     this.label4.Text = "Date-of-Birth:";
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(10, 44);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(98, 18);
     this.label6.TabIndex = 104;
     this.label6.Text = "NRIC/FIN No:";
     //
     // txtMediaSource
     //
     this.txtMediaSource.EditValue = "";
     this.txtMediaSource.Location = new System.Drawing.Point(247, 252);
     this.txtMediaSource.Name = "txtMediaSource";
     this.txtMediaSource.Properties.MaxLength = 50;
     this.txtMediaSource.Size = new System.Drawing.Size(154, 20);
     this.txtMediaSource.TabIndex = 108;
     this.txtMediaSource.Visible = false;
     //
     // label7
     //
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(10, 229);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(102, 18);
     this.label7.TabIndex = 109;
     this.label7.Text = "Branch Code :";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label8.Location = new System.Drawing.Point(10, 283);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(75, 13);
     this.label8.TabIndex = 110;
     this.label8.Text = "Assign to Staff";
     //
     // luedtAssigntoStaff
     //
     this.luedtAssigntoStaff.EditValue = "";
     this.luedtAssigntoStaff.Location = new System.Drawing.Point(121, 279);
     this.luedtAssigntoStaff.Name = "luedtAssigntoStaff";
     this.luedtAssigntoStaff.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtAssigntoStaff.Properties.PopupWidth = 200;
     this.luedtAssigntoStaff.Size = new System.Drawing.Size(280, 20);
     this.luedtAssigntoStaff.TabIndex = 14;
     //
     // rtxtRemarks
     //
     this.rtxtRemarks.EditValue = "";
     this.rtxtRemarks.Location = new System.Drawing.Point(121, 305);
     this.rtxtRemarks.Name = "rtxtRemarks";
     this.rtxtRemarks.Properties.Appearance.BackColor = System.Drawing.Color.LightYellow;
     this.rtxtRemarks.Properties.Appearance.Options.UseBackColor = true;
     this.rtxtRemarks.Properties.MaxLength = 1000;
     this.rtxtRemarks.Size = new System.Drawing.Size(442, 93);
     this.rtxtRemarks.TabIndex = 15;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label9.Location = new System.Drawing.Point(12, 411);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(43, 13);
     this.label9.TabIndex = 112;
     this.label9.Text = "Status :";
     //
     // cbStatus
     //
     this.cbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbStatus.FormattingEnabled = true;
     this.cbStatus.Items.AddRange(new object[] {
     "Active",
     "InActive"});
     this.cbStatus.Location = new System.Drawing.Point(121, 406);
     this.cbStatus.Name = "cbStatus";
     this.cbStatus.Size = new System.Drawing.Size(121, 21);
     this.cbStatus.TabIndex = 16;
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(10, 121);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(90, 18);
     this.label10.TabIndex = 114;
     this.label10.Text = "Gender:";
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(10, 148);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(112, 18);
     this.label11.TabIndex = 115;
     this.label11.Text = "Media Preference:";
     //
     // cbPhoneCall
     //
     this.cbPhoneCall.AutoSize = true;
     this.cbPhoneCall.Location = new System.Drawing.Point(121, 147);
     this.cbPhoneCall.Name = "cbPhoneCall";
     this.cbPhoneCall.Size = new System.Drawing.Size(77, 17);
     this.cbPhoneCall.TabIndex = 6;
     this.cbPhoneCall.Text = "Phone Call";
     this.cbPhoneCall.UseVisualStyleBackColor = true;
     //
     // cbSMS
     //
     this.cbSMS.AutoSize = true;
     this.cbSMS.Location = new System.Drawing.Point(204, 147);
     this.cbSMS.Name = "cbSMS";
     this.cbSMS.Size = new System.Drawing.Size(49, 17);
     this.cbSMS.TabIndex = 7;
     this.cbSMS.Text = "SMS";
     this.cbSMS.UseVisualStyleBackColor = true;
     //
     // cbEmail
     //
     this.cbEmail.AutoSize = true;
     this.cbEmail.Location = new System.Drawing.Point(257, 147);
     this.cbEmail.Name = "cbEmail";
     this.cbEmail.Size = new System.Drawing.Size(51, 17);
     this.cbEmail.TabIndex = 8;
     this.cbEmail.Text = "Email";
     this.cbEmail.UseVisualStyleBackColor = true;
     //
     // label12
     //
     this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label12.Location = new System.Drawing.Point(10, 175);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(96, 18);
     this.label12.TabIndex = 119;
     this.label12.Text = "DNC Registrant?:";
     //
     // rbDNCYes
     //
     this.rbDNCYes.AutoSize = true;
     this.rbDNCYes.Location = new System.Drawing.Point(3, 3);
     this.rbDNCYes.Name = "rbDNCYes";
     this.rbDNCYes.Size = new System.Drawing.Size(43, 17);
     this.rbDNCYes.TabIndex = 9;
     this.rbDNCYes.Text = "Yes";
     this.rbDNCYes.UseVisualStyleBackColor = true;
     //
     // rbDNCNo
     //
     this.rbDNCNo.AutoSize = true;
     this.rbDNCNo.Location = new System.Drawing.Point(57, 3);
     this.rbDNCNo.Name = "rbDNCNo";
     this.rbDNCNo.Size = new System.Drawing.Size(39, 17);
     this.rbDNCNo.TabIndex = 10;
     this.rbDNCNo.TabStop = true;
     this.rbDNCNo.Text = "No";
     this.rbDNCNo.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.rbDNCYes);
     this.panel1.Controls.Add(this.rbDNCNo);
     this.panel1.Location = new System.Drawing.Point(121, 171);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(148, 22);
     this.panel1.TabIndex = 9;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.rbFemale);
     this.panel2.Controls.Add(this.rbMale);
     this.panel2.Location = new System.Drawing.Point(121, 114);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(200, 24);
     this.panel2.TabIndex = 4;
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(273, 70);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(270, 18);
     this.label13.TabIndex = 124;
     this.label13.Text = "(eg. 81234567, 63366822)";
     //
     // gbAppt
     //
     this.gbAppt.Controls.Add(this.luedtServedBy);
     this.gbAppt.Controls.Add(this.label17);
     this.gbAppt.Controls.Add(this.dateedtEndTime);
     this.gbAppt.Controls.Add(this.dateedtStartTime);
     this.gbAppt.Controls.Add(this.dateedtDate);
     this.gbAppt.Controls.Add(this.label14);
     this.gbAppt.Controls.Add(this.label15);
     this.gbAppt.Controls.Add(this.label16);
     this.gbAppt.Location = new System.Drawing.Point(15, 454);
     this.gbAppt.Name = "gbAppt";
     this.gbAppt.Size = new System.Drawing.Size(548, 121);
     this.gbAppt.TabIndex = 248;
     this.gbAppt.TabStop = false;
     this.gbAppt.Visible = false;
     //
     // luedtServedBy
     //
     this.luedtServedBy.EditValue = "";
     this.luedtServedBy.Location = new System.Drawing.Point(222, 95);
     this.luedtServedBy.Name = "luedtServedBy";
     this.luedtServedBy.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.luedtServedBy.Properties.PopupWidth = 200;
     this.luedtServedBy.Size = new System.Drawing.Size(280, 20);
     this.luedtServedBy.TabIndex = 254;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label17.Location = new System.Drawing.Point(106, 98);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(56, 13);
     this.label17.TabIndex = 255;
     this.label17.Text = "Served By";
     //
     // dateedtEndTime
     //
     this.dateedtEndTime.EditValue = new System.DateTime(2013, 1, 1, 13, 0, 0, 0);
     this.dateedtEndTime.Location = new System.Drawing.Point(222, 69);
     this.dateedtEndTime.Name = "dateedtEndTime";
     this.dateedtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null)});
     this.dateedtEndTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dateedtEndTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateedtEndTime.Properties.EditFormat.FormatString = "hh:mm tt";
     this.dateedtEndTime.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateedtEndTime.Properties.Mask.EditMask = "hh:mm tt";
     this.dateedtEndTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtEndTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateedtEndTime.Size = new System.Drawing.Size(100, 20);
     this.dateedtEndTime.TabIndex = 253;
     //
     // dateedtStartTime
     //
     this.dateedtStartTime.EditValue = new System.DateTime(2013, 1, 1, 13, 0, 0, 0);
     this.dateedtStartTime.Location = new System.Drawing.Point(222, 41);
     this.dateedtStartTime.Name = "dateedtStartTime";
     this.dateedtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null)});
     this.dateedtStartTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dateedtStartTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateedtStartTime.Properties.EditFormat.FormatString = "hh:mm tt";
     this.dateedtStartTime.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateedtStartTime.Properties.Mask.EditMask = "hh:mm tt";
     this.dateedtStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtStartTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateedtStartTime.Size = new System.Drawing.Size(100, 20);
     this.dateedtStartTime.TabIndex = 252;
     //
     // dateedtDate
     //
     this.dateedtDate.EditValue = new System.DateTime(2006, 1, 28, 0, 0, 0, 0);
     this.dateedtDate.Location = new System.Drawing.Point(222, 13);
     this.dateedtDate.Name = "dateedtDate";
     this.dateedtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateedtDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateedtDate.Size = new System.Drawing.Size(152, 20);
     this.dateedtDate.TabIndex = 249;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(106, 71);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(100, 18);
     this.label14.TabIndex = 251;
     this.label14.Text = "End time:";
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(106, 43);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(100, 18);
     this.label15.TabIndex = 250;
     this.label15.Text = "Start time:";
     //
     // label16
     //
     this.label16.Location = new System.Drawing.Point(106, 15);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(100, 18);
     this.label16.TabIndex = 248;
     this.label16.Text = "Date:";
     //
     // chkMakeAppt
     //
     this.chkMakeAppt.AutoSize = true;
     this.chkMakeAppt.Location = new System.Drawing.Point(16, 441);
     this.chkMakeAppt.Name = "chkMakeAppt";
     this.chkMakeAppt.Size = new System.Drawing.Size(115, 17);
     this.chkMakeAppt.TabIndex = 249;
     this.chkMakeAppt.Text = "Make Appointment";
     this.chkMakeAppt.UseVisualStyleBackColor = true;
     this.chkMakeAppt.CheckedChanged += new System.EventHandler(this.chkMakeAppt_CheckedChanged);
     //
     // frmContacts
     //
     this.AcceptButton = this.sbtnSave;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.sbtnCancel;
     this.ClientSize = new System.Drawing.Size(571, 610);
     this.Controls.Add(this.chkMakeAppt);
     this.Controls.Add(this.gbAppt);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.cbEmail);
     this.Controls.Add(this.cbSMS);
     this.Controls.Add(this.cbPhoneCall);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.cbStatus);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.rtxtRemarks);
     this.Controls.Add(this.luedtAssigntoStaff);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.txtMediaSource);
     this.Controls.Add(this.luedtMediaSource);
     this.Controls.Add(this.luedtMediaSourceCategory);
     this.Controls.Add(this.label47);
     this.Controls.Add(this.txtNRICFIN);
     this.Controls.Add(this.dateedtDOB);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.txtBranchCode);
     this.Controls.Add(this.sbtnSave);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.txtEmail);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtMobileNo);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.txtContactPerson);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label7);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmContacts";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "{0} Call List";
     this.Load += new System.EventHandler(this.frmContacts_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMobileNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtMediaSource.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtMediaSourceCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNRICFIN.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDOB.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDOB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMediaSource.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtAssigntoStaff.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rtxtRemarks.Properties)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.gbAppt.ResumeLayout(false);
     this.gbAppt.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.luedtServedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblBranch     = new System.Windows.Forms.Label();
     this.label4        = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.txtRemarks    = new DevExpress.XtraEditors.MemoEdit();
     this.lblRemarks    = new System.Windows.Forms.Label();
     this.lbldate       = new System.Windows.Forms.Label();
     this.dtDate        = new DevExpress.XtraEditors.DateEdit();
     this.label3        = new System.Windows.Forms.Label();
     this.cbEmployee    = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label2        = new System.Windows.Forms.Label();
     this.cbBranch      = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label1        = new System.Windows.Forms.Label();
     this.lblStartTime  = new System.Windows.Forms.Label();
     this.dtEndTime     = new DevExpress.XtraEditors.TimeEdit();
     this.dtStartTime   = new DevExpress.XtraEditors.TimeEdit();
     this.btnSave       = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel     = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEmployee.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartTime.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // lblBranch
     //
     this.lblBranch.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblBranch.Location = new System.Drawing.Point(-58, 142);
     this.lblBranch.Name     = "lblBranch";
     this.lblBranch.Size     = new System.Drawing.Size(58, 16);
     this.lblBranch.TabIndex = 186;
     this.lblBranch.Text     = "Branch";
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(16, 8);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(112, 16);
     this.label4.TabIndex = 191;
     this.label4.Text     = "New Roster";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.txtRemarks);
     this.groupControl1.Controls.Add(this.lblRemarks);
     this.groupControl1.Controls.Add(this.lbldate);
     this.groupControl1.Controls.Add(this.dtDate);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.cbEmployee);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.cbBranch);
     this.groupControl1.Controls.Add(this.label1);
     this.groupControl1.Controls.Add(this.lblStartTime);
     this.groupControl1.Controls.Add(this.dtEndTime);
     this.groupControl1.Controls.Add(this.dtStartTime);
     this.groupControl1.Location    = new System.Drawing.Point(16, 32);
     this.groupControl1.Name        = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size        = new System.Drawing.Size(280, 256);
     this.groupControl1.TabIndex    = 192;
     this.groupControl1.Text        = "groupControl1";
     //
     // txtRemarks
     //
     this.txtRemarks.EditValue = "";
     this.txtRemarks.Location  = new System.Drawing.Point(16, 184);
     this.txtRemarks.Name      = "txtRemarks";
     //
     // txtRemarks.Properties
     //
     this.txtRemarks.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtRemarks.Size     = new System.Drawing.Size(232, 64);
     this.txtRemarks.TabIndex = 6;
     //
     // lblRemarks
     //
     this.lblRemarks.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblRemarks.Location = new System.Drawing.Point(16, 168);
     this.lblRemarks.Name     = "lblRemarks";
     this.lblRemarks.Size     = new System.Drawing.Size(80, 16);
     this.lblRemarks.TabIndex = 201;
     this.lblRemarks.Text     = "Remarks";
     //
     // lbldate
     //
     this.lbldate.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lbldate.Location = new System.Drawing.Point(16, 80);
     this.lbldate.Name     = "lbldate";
     this.lbldate.Size     = new System.Drawing.Size(80, 16);
     this.lbldate.TabIndex = 200;
     this.lbldate.Text     = "Date";
     //
     // dtDate
     //
     this.dtDate.EditValue = null;
     this.dtDate.Location  = new System.Drawing.Point(104, 80);
     this.dtDate.Name      = "dtDate";
     //
     // dtDate.Properties
     //
     this.dtDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtDate.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.dtDate.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.dtDate.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.Custom;
     this.dtDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dtDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dtDate.Size     = new System.Drawing.Size(100, 22);
     this.dtDate.TabIndex = 3;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(16, 48);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(80, 16);
     this.label3.TabIndex = 198;
     this.label3.Text     = "Employee";
     //
     // cbEmployee
     //
     this.cbEmployee.Location = new System.Drawing.Point(104, 48);
     this.cbEmployee.Name     = "cbEmployee";
     //
     // cbEmployee.Properties
     //
     this.cbEmployee.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbEmployee.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbEmployee.Size     = new System.Drawing.Size(144, 22);
     this.cbEmployee.TabIndex = 2;
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(16, 16);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(80, 16);
     this.label2.TabIndex = 196;
     this.label2.Text     = "Branch";
     //
     // cbBranch
     //
     this.cbBranch.Location = new System.Drawing.Point(104, 16);
     this.cbBranch.Name     = "cbBranch";
     //
     // cbBranch.Properties
     //
     this.cbBranch.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbBranch.Size                  = new System.Drawing.Size(144, 22);
     this.cbBranch.TabIndex              = 1;
     this.cbBranch.SelectedIndexChanged += new System.EventHandler(this.cbBranch_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(144, 112);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(80, 16);
     this.label1.TabIndex = 194;
     this.label1.Text     = "End Time";
     //
     // lblStartTime
     //
     this.lblStartTime.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblStartTime.Location = new System.Drawing.Point(16, 112);
     this.lblStartTime.Name     = "lblStartTime";
     this.lblStartTime.Size     = new System.Drawing.Size(80, 16);
     this.lblStartTime.TabIndex = 193;
     this.lblStartTime.Text     = "Start Time";
     //
     // dtEndTime
     //
     this.dtEndTime.EditValue = null;
     this.dtEndTime.Location  = new System.Drawing.Point(144, 136);
     this.dtEndTime.Name      = "dtEndTime";
     //
     // dtEndTime.Properties
     //
     this.dtEndTime.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.dtEndTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dtEndTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.dtEndTime.Properties.EditFormat.FormatString    = "hh:mm tt";
     this.dtEndTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.Custom;
     this.dtEndTime.Size     = new System.Drawing.Size(104, 22);
     this.dtEndTime.TabIndex = 5;
     //
     // dtStartTime
     //
     this.dtStartTime.EditValue = null;
     this.dtStartTime.Location  = new System.Drawing.Point(16, 136);
     this.dtStartTime.Name      = "dtStartTime";
     //
     // dtStartTime.Properties
     //
     this.dtStartTime.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.dtStartTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dtStartTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.dtStartTime.Properties.EditFormat.FormatString    = "hh:mm tt";
     this.dtStartTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.Custom;
     this.dtStartTime.Size     = new System.Drawing.Size(104, 22);
     this.dtStartTime.TabIndex = 4;
     //
     // btnSave
     //
     this.btnSave.Appearance.Font            = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.Location = new System.Drawing.Point(128, 296);
     this.btnSave.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnSave.Name     = "btnSave";
     this.btnSave.TabIndex = 7;
     this.btnSave.Text     = "Save";
     this.btnSave.Click   += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Appearance.Font            = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.Location = new System.Drawing.Point(208, 296);
     this.btnCancel.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.TabIndex = 8;
     this.btnCancel.Text     = "Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // frmRosterNew
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(306, 327);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.lblBranch);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmRosterNew";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Add New Roster";
     this.Load           += new System.EventHandler(this.frmRosterNew_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEmployee.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartTime.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.chkEdtFree              = new DevExpress.XtraEditors.CheckEdit();
     this.label4                  = new System.Windows.Forms.Label();
     this.dtEdtPurchaseDate       = new DevExpress.XtraEditors.DateEdit();
     this.label1                  = new System.Windows.Forms.Label();
     this.label3                  = new System.Windows.Forms.Label();
     this.lkpEdtCreditPackageCode = new DevExpress.XtraEditors.LookUpEdit();
     this.label2                  = new System.Windows.Forms.Label();
     this.lkpEdtCategoryID        = new DevExpress.XtraEditors.LookUpEdit();
     this.simpleButtonCancel      = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK          = new DevExpress.XtraEditors.SimpleButton();
     this.lkpEdtReceiptNo         = new DevExpress.XtraEditors.LookUpEdit();
     this.label5                  = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.chkEdtFree.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtPurchaseDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCreditPackageCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCategoryID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtReceiptNo.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // chkEdtFree
     //
     this.chkEdtFree.Location = new System.Drawing.Point(132, 130);
     this.chkEdtFree.Name     = "chkEdtFree";
     //
     // chkEdtFree.Properties
     //
     this.chkEdtFree.Properties.Caption   = "";
     this.chkEdtFree.Properties.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.chkEdtFree.Size     = new System.Drawing.Size(20, 18);
     this.chkEdtFree.TabIndex = 6;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(16, 96);
     this.label4.Name     = "label4";
     this.label4.TabIndex = 22;
     this.label4.Text     = "Receipt";
     //
     // dtEdtPurchaseDate
     //
     this.dtEdtPurchaseDate.EditValue = new System.DateTime(2005, 10, 10, 0, 0, 0, 0);
     this.dtEdtPurchaseDate.Location  = new System.Drawing.Point(130, 66);
     this.dtEdtPurchaseDate.Name      = "dtEdtPurchaseDate";
     //
     // dtEdtPurchaseDate.Properties
     //
     this.dtEdtPurchaseDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtEdtPurchaseDate.Size     = new System.Drawing.Size(224, 20);
     this.dtEdtPurchaseDate.TabIndex = 3;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 66);
     this.label1.Name     = "label1";
     this.label1.TabIndex = 20;
     this.label1.Text     = "Purchase Date";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(16, 36);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(112, 23);
     this.label3.TabIndex = 19;
     this.label3.Text     = "Credit Package Code";
     //
     // lkpEdtCreditPackageCode
     //
     this.lkpEdtCreditPackageCode.EditValue = "";
     this.lkpEdtCreditPackageCode.Location  = new System.Drawing.Point(130, 36);
     this.lkpEdtCreditPackageCode.Name      = "lkpEdtCreditPackageCode";
     //
     // lkpEdtCreditPackageCode.Properties
     //
     this.lkpEdtCreditPackageCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtCreditPackageCode.Properties.NullText = "";
     this.lkpEdtCreditPackageCode.Size     = new System.Drawing.Size(224, 20);
     this.lkpEdtCreditPackageCode.TabIndex = 2;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(16, 6);
     this.label2.Name     = "label2";
     this.label2.TabIndex = 17;
     this.label2.Text     = "Category";
     //
     // lkpEdtCategoryID
     //
     this.lkpEdtCategoryID.EditValue = "";
     this.lkpEdtCategoryID.Location  = new System.Drawing.Point(130, 8);
     this.lkpEdtCategoryID.Name      = "lkpEdtCategoryID";
     //
     // lkpEdtCategoryID.Properties
     //
     this.lkpEdtCategoryID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtCategoryID.Size              = new System.Drawing.Size(224, 20);
     this.lkpEdtCategoryID.TabIndex          = 1;
     this.lkpEdtCategoryID.EditValueChanged += new System.EventHandler(this.lkpEdtCategoryID_EditValueChanged);
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(194, 174);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex     = 8;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(98, 174);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.TabIndex     = 7;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // lkpEdtReceiptNo
     //
     this.lkpEdtReceiptNo.EditValue = "";
     this.lkpEdtReceiptNo.Location  = new System.Drawing.Point(130, 96);
     this.lkpEdtReceiptNo.Name      = "lkpEdtReceiptNo";
     //
     // lkpEdtReceiptNo.Properties
     //
     this.lkpEdtReceiptNo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtReceiptNo.Size     = new System.Drawing.Size(224, 20);
     this.lkpEdtReceiptNo.TabIndex = 4;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(16, 128);
     this.label5.Name     = "label5";
     this.label5.TabIndex = 25;
     this.label5.Text     = "Free";
     //
     // FormNewCreditPackage
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(368, 210);
     this.Controls.Add(this.lkpEdtReceiptNo);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.Controls.Add(this.lkpEdtCategoryID);
     this.Controls.Add(this.lkpEdtCreditPackageCode);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.chkEdtFree);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.dtEdtPurchaseDate);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormNewCreditPackage";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "New Credit Package";
     this.Load           += new System.EventHandler(this.FormNewCreditPackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chkEdtFree.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtPurchaseDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCreditPackageCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCategoryID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtReceiptNo.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK     = new DevExpress.XtraEditors.SimpleButton();
     this.label4             = new System.Windows.Forms.Label();
     this.lkpEdtEmployeeID   = new DevExpress.XtraEditors.LookUpEdit();
     this.label3             = new System.Windows.Forms.Label();
     this.lkpEdtBranchCode   = new DevExpress.XtraEditors.LookUpEdit();
     this.label2             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.label5             = new System.Windows.Forms.Label();
     this.lkpEdtPackageID    = new DevExpress.XtraEditors.LookUpEdit();
     this.label6             = new System.Windows.Forms.Label();
     this.lkpEdtServiceCode  = new DevExpress.XtraEditors.LookUpEdit();
     this.label7             = new System.Windows.Forms.Label();
     this.memoEdit1          = new DevExpress.XtraEditors.MemoEdit();
     this.dtEdtStartTime     = new DevExpress.XtraEditors.DateEdit();
     this.dtEditDate         = new DevExpress.XtraEditors.DateEdit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtEmployeeID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtServiceCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtStartTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEditDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(234, 270);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex     = 53;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(144, 270);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.TabIndex     = 52;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 138);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(93, 23);
     this.label4.TabIndex = 60;
     this.label4.Text     = "Therapist";
     //
     // lkpEdtEmployeeID
     //
     this.lkpEdtEmployeeID.EditValue = "";
     this.lkpEdtEmployeeID.Location  = new System.Drawing.Point(110, 142);
     this.lkpEdtEmployeeID.Name      = "lkpEdtEmployeeID";
     //
     // lkpEdtEmployeeID.Properties
     //
     this.lkpEdtEmployeeID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtEmployeeID.Size              = new System.Drawing.Size(202, 20);
     this.lkpEdtEmployeeID.TabIndex          = 59;
     this.lkpEdtEmployeeID.EditValueChanged += new System.EventHandler(this.lkpEdtEmployeeID_EditValueChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(8, 86);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(93, 23);
     this.label3.TabIndex = 58;
     this.label3.Text     = "Time";
     //
     // lkpEdtBranchCode
     //
     this.lkpEdtBranchCode.EditValue = "";
     this.lkpEdtBranchCode.Location  = new System.Drawing.Point(110, 34);
     this.lkpEdtBranchCode.Name      = "lkpEdtBranchCode";
     //
     // lkpEdtBranchCode.Properties
     //
     this.lkpEdtBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtBranchCode.Size              = new System.Drawing.Size(202, 20);
     this.lkpEdtBranchCode.TabIndex          = 57;
     this.lkpEdtBranchCode.EditValueChanged += new System.EventHandler(this.lkpEdtBranchCode_EditValueChanged);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 34);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(72, 23);
     this.label2.TabIndex = 55;
     this.label2.Text     = "Branch";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 60);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(72, 23);
     this.label1.TabIndex = 54;
     this.label1.Text     = "Date";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(8, 8);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(72, 23);
     this.label5.TabIndex = 62;
     this.label5.Text     = "Package ID";
     //
     // lkpEdtPackageID
     //
     this.lkpEdtPackageID.EditValue = "";
     this.lkpEdtPackageID.Location  = new System.Drawing.Point(110, 8);
     this.lkpEdtPackageID.Name      = "lkpEdtPackageID";
     //
     // lkpEdtPackageID.Properties
     //
     this.lkpEdtPackageID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtPackageID.Size              = new System.Drawing.Size(202, 20);
     this.lkpEdtPackageID.TabIndex          = 63;
     this.lkpEdtPackageID.EditValueChanged += new System.EventHandler(this.lkpEdtPackageID_EditValueChanged);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(8, 112);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(93, 23);
     this.label6.TabIndex = 65;
     this.label6.Text     = "Treatment";
     //
     // lkpEdtServiceCode
     //
     this.lkpEdtServiceCode.EditValue = "";
     this.lkpEdtServiceCode.Location  = new System.Drawing.Point(110, 114);
     this.lkpEdtServiceCode.Name      = "lkpEdtServiceCode";
     //
     // lkpEdtServiceCode.Properties
     //
     this.lkpEdtServiceCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtServiceCode.Size              = new System.Drawing.Size(202, 20);
     this.lkpEdtServiceCode.TabIndex          = 64;
     this.lkpEdtServiceCode.EditValueChanged += new System.EventHandler(this.lkpEdtServiceCode_EditValueChanged);
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(8, 164);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(93, 23);
     this.label7.TabIndex = 66;
     this.label7.Text     = "Remark";
     //
     // memoEdit1
     //
     this.memoEdit1.EditValue = "";
     this.memoEdit1.Location  = new System.Drawing.Point(112, 168);
     this.memoEdit1.Name      = "memoEdit1";
     this.memoEdit1.Size      = new System.Drawing.Size(198, 96);
     this.memoEdit1.TabIndex  = 67;
     //
     // dtEdtStartTime
     //
     this.dtEdtStartTime.EditValue = new System.DateTime(2006, 1, 1, 0, 0, 0, 0);
     this.dtEdtStartTime.Location  = new System.Drawing.Point(110, 88);
     this.dtEdtStartTime.Name      = "dtEdtStartTime";
     //
     // dtEdtStartTime.Properties
     //
     this.dtEdtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)
     });
     this.dtEdtStartTime.Properties.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm tt";
     this.dtEdtStartTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtStartTime.Properties.EditFormat.FormatString    = "T";
     this.dtEdtStartTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtStartTime.Properties.Mask.EditMask = "T";
     this.dtEdtStartTime.Size     = new System.Drawing.Size(202, 20);
     this.dtEdtStartTime.TabIndex = 68;
     //
     // dtEditDate
     //
     this.dtEditDate.EditValue = new System.DateTime(2005, 11, 23, 0, 0, 0, 0);
     this.dtEditDate.Location  = new System.Drawing.Point(110, 62);
     this.dtEditDate.Name      = "dtEditDate";
     //
     // dtEditDate.Properties
     //
     this.dtEditDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtEditDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEditDate.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEditDate.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.dtEditDate.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dtEditDate.Size              = new System.Drawing.Size(202, 20);
     this.dtEditDate.TabIndex          = 69;
     this.dtEditDate.EditValueChanged += new System.EventHandler(this.dtEditDate_EditValueChanged);
     //
     // FormUpdateServiceSessionSPA_IPL
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(328, 302);
     this.Controls.Add(this.dtEditDate);
     this.Controls.Add(this.dtEdtStartTime);
     this.Controls.Add(this.memoEdit1);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.lkpEdtServiceCode);
     this.Controls.Add(this.lkpEdtPackageID);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.lkpEdtEmployeeID);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.lkpEdtBranchCode);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormUpdateServiceSessionSPA_IPL";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Update SPA/IPL Package";
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtEmployeeID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtServiceCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtStartTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEditDate.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 17
0
        /// <summary>
        /// 为控件赋值
        /// </summary>
        /// <param name="dr"></param>
        /// <returns></returns>
        protected bool SetControlData(DataRow dr)
        {
            try
            {
                List <Control> listControl = DSCommon.FindControl(panelControlMain);
                foreach (Control ctrl in listControl)
                {
                    string fieldName = ctrl.Name;

                    if (!dr.Table.Columns.Contains(fieldName))
                    {
                        continue;                                         //跳过不在表中的控件
                    }
                    object fieldValue = dr[fieldName];
                    if (ctrl is Label)
                    {
                        ((Label)ctrl).Text = fieldValue == null ? null : fieldValue.ToString();
                    }
                    else if (ctrl is TextBox)
                    {
                        TextBox tb = (TextBox)ctrl;
                        tb.Text = fieldValue == null ? null : fieldValue.ToString();
                        if (dbOperaType == DbOperateType.View)
                        {
                            tb.ReadOnly = true;
                        }
                    }
                    else if (ctrl is ComboBox)
                    {
                        ComboBox cb = (ComboBox)ctrl;
                        cb.SelectedItem = fieldValue;
                    }
                    else if (ctrl is DevExpress.XtraEditors.DateEdit)
                    {
                        DevExpress.XtraEditors.DateEdit de = (DevExpress.XtraEditors.DateEdit)ctrl;
                        de.EditValue = fieldValue;
                        if (dbOperaType == DbOperateType.View)
                        {
                            de.ReadOnly = true;
                        }
                    }
                    else if (ctrl is DevExpress.XtraEditors.LabelControl)
                    {
                        ((DevExpress.XtraEditors.LabelControl)ctrl).Text = fieldValue.ToString();
                    }
                    else if (ctrl is DevExpress.XtraEditors.BaseEdit)
                    {
                        DevExpress.XtraEditors.BaseEdit be = (DevExpress.XtraEditors.BaseEdit)ctrl;
                        be.EditValue = fieldValue;
                        if (dbOperaType == DbOperateType.View)
                        {
                            be.ReadOnly = true;
                        }
                    }
                    else
                    {
                    }
                }
                string[] other = { "province_id", "city_id", "eare_id" };
                foreach (string item in other)
                {
                    Control ctrl = listControl.Find((Control x) => x.Name == item);
                    if (ctrl != null)
                    {
                        if (ctrl is DevExpress.XtraEditors.BaseEdit)
                        {
                            ((DevExpress.XtraEditors.BaseEdit)ctrl).EditValue = dr[item].ToString();
                        }
                    }
                }

                return(true);
            }
            catch (Exception ex)
            {
                return(false);
            }
        }
Ejemplo n.º 18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     this.label1 = new System.Windows.Forms.Label();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.label2 = new System.Windows.Forms.Label();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.label9 = new System.Windows.Forms.Label();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.dateEdit2 = new DevExpress.XtraEditors.DateEdit();
     this.label8 = new System.Windows.Forms.Label();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.gridControl2 = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcmrp_no = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gc_par_no = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gc_sec = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(5, 14);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(51, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Cari No :";
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(62, 11);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(96, 20);
     this.textEdit1.TabIndex = 2;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.simpleButton2);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Controls.Add(this.textEdit2);
     this.panelControl1.Controls.Add(this.textEdit1);
     this.panelControl1.Location = new System.Drawing.Point(12, 12);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(467, 63);
     this.panelControl1.TabIndex = 3;
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(164, 8);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(55, 23);
     this.simpleButton2.TabIndex = 3;
     this.simpleButton2.Text = "Firma Seç";
     //
     // simpleButton1
     //
     this.simpleButton1.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.simpleButton1.Location = new System.Drawing.Point(375, 5);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(87, 53);
     this.simpleButton1.TabIndex = 3;
     this.simpleButton1.Text = "Firma Ayrıntıları";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(15, 40);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(41, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "Firma :";
     //
     // textEdit2
     //
     this.textEdit2.Location = new System.Drawing.Point(62, 37);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Size = new System.Drawing.Size(307, 20);
     this.textEdit2.TabIndex = 2;
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.label9);
     this.panelControl2.Controls.Add(this.panelControl3);
     this.panelControl2.Controls.Add(this.dateEdit2);
     this.panelControl2.Controls.Add(this.label8);
     this.panelControl2.Controls.Add(this.dateEdit1);
     this.panelControl2.Controls.Add(this.label7);
     this.panelControl2.Location = new System.Drawing.Point(485, 12);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(343, 163);
     this.panelControl2.TabIndex = 5;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label9.Font = new System.Drawing.Font("Segoe UI Semibold", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.label9.ForeColor = System.Drawing.Color.White;
     this.label9.Location = new System.Drawing.Point(18, 50);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(102, 13);
     this.label9.TabIndex = 0;
     this.label9.Text = "Malzeme Detayları";
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.checkEdit1);
     this.panelControl3.Controls.Add(this.checkEdit4);
     this.panelControl3.Controls.Add(this.checkEdit2);
     this.panelControl3.Controls.Add(this.checkEdit3);
     this.panelControl3.Location = new System.Drawing.Point(14, 56);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(164, 95);
     this.panelControl3.TabIndex = 3;
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(5, 13);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "Tedarikci Temini.";
     this.checkEdit1.Size = new System.Drawing.Size(126, 19);
     this.checkEdit1.TabIndex = 2;
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(24, 70);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "Bedelsiz";
     this.checkEdit4.Size = new System.Drawing.Size(126, 19);
     this.checkEdit4.TabIndex = 2;
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(5, 33);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "Asıl Firma Tenimi";
     this.checkEdit2.Size = new System.Drawing.Size(126, 19);
     this.checkEdit2.TabIndex = 2;
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(24, 52);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "Satış";
     this.checkEdit3.Size = new System.Drawing.Size(126, 19);
     this.checkEdit3.TabIndex = 2;
     //
     // dateEdit2
     //
     this.dateEdit2.EditValue = null;
     this.dateEdit2.Location = new System.Drawing.Point(235, 15);
     this.dateEdit2.Name = "dateEdit2";
     this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit2.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit2.Size = new System.Drawing.Size(85, 20);
     this.dateEdit2.TabIndex = 1;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(180, 18);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(55, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Bitiş Tar  :";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location = new System.Drawing.Point(93, 15);
     this.dateEdit1.Name = "dateEdit1";
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Size = new System.Drawing.Size(85, 20);
     this.dateEdit1.TabIndex = 1;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(11, 18);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(82, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Başlangıç Tar  :";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.label6.ForeColor = System.Drawing.Color.White;
     this.label6.Location = new System.Drawing.Point(489, 6);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(90, 13);
     this.label6.TabIndex = 0;
     this.label6.Text = "Hizmet Detayları";
     //
     // gridControl2
     //
     this.gridControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.gridControl2.Cursor = System.Windows.Forms.Cursors.Default;
     this.gridControl2.Location = new System.Drawing.Point(12, 82);
     this.gridControl2.MainView = this.gridView2;
     this.gridControl2.Name = "gridControl2";
     this.gridControl2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit2});
     this.gridControl2.Size = new System.Drawing.Size(467, 400);
     this.gridControl2.TabIndex = 6;
     this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     this.gridControl2.Click += new System.EventHandler(this.gridControl2_Click);
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcmrp_no,
     this.gc_par_no,
     this.gridColumn10,
     this.gc_sec});
     this.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gcmrp_no
     //
     this.gcmrp_no.AppearanceCell.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.gcmrp_no.AppearanceCell.Options.UseFont = true;
     this.gcmrp_no.AppearanceHeader.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.gcmrp_no.AppearanceHeader.Options.UseFont = true;
     this.gcmrp_no.Caption = "Mrp No";
     this.gcmrp_no.FieldName = "MRP_NO";
     this.gcmrp_no.Name = "gcmrp_no";
     this.gcmrp_no.Visible = true;
     this.gcmrp_no.VisibleIndex = 0;
     this.gcmrp_no.Width = 78;
     //
     // gc_par_no
     //
     this.gc_par_no.AppearanceCell.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.gc_par_no.AppearanceCell.Options.UseFont = true;
     this.gc_par_no.AppearanceHeader.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.gc_par_no.AppearanceHeader.Options.UseFont = true;
     this.gc_par_no.Caption = "Parça No";
     this.gc_par_no.FieldName = "PARCA_NO";
     this.gc_par_no.Name = "gc_par_no";
     this.gc_par_no.Visible = true;
     this.gc_par_no.VisibleIndex = 1;
     this.gc_par_no.Width = 78;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceCell.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.gridColumn10.AppearanceCell.Options.UseFont = true;
     this.gridColumn10.AppearanceHeader.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.gridColumn10.AppearanceHeader.Options.UseFont = true;
     this.gridColumn10.Caption = "Parça Adı";
     this.gridColumn10.FieldName = "Parca_adi";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 2;
     this.gridColumn10.Width = 173;
     //
     // gc_sec
     //
     this.gc_sec.AppearanceCell.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.gc_sec.AppearanceCell.Options.UseFont = true;
     this.gc_sec.AppearanceHeader.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.gc_sec.AppearanceHeader.Options.UseFont = true;
     this.gc_sec.Caption = "Sec";
     this.gc_sec.ColumnEdit = this.repositoryItemButtonEdit2;
     this.gc_sec.FieldName = "Sec";
     this.gc_sec.MaxWidth = 40;
     this.gc_sec.MinWidth = 40;
     this.gc_sec.Name = "gc_sec";
     this.gc_sec.OptionsColumn.AllowEdit = false;
     this.gc_sec.Visible = true;
     this.gc_sec.VisibleIndex = 3;
     this.gc_sec.Width = 40;
     //
     // repositoryItemButtonEdit2
     //
     this.repositoryItemButtonEdit2.AutoHeight = false;
     serializableAppearanceObject3.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     serializableAppearanceObject3.Image = ((System.Drawing.Image)(resources.GetObject("serializableAppearanceObject3.Image")));
     serializableAppearanceObject3.Options.UseFont = true;
     serializableAppearanceObject3.Options.UseImage = true;
     this.repositoryItemButtonEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, ((System.Drawing.Image)(resources.GetObject("repositoryItemButtonEdit2.Buttons"))), new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
     this.repositoryItemButtonEdit2.Name = "repositoryItemButtonEdit2";
     this.repositoryItemButtonEdit2.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1350, 494);
     this.Controls.Add(this.gridControl2);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.Name = "Form1";
     this.Text = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 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.DocManagement_DocModify_TabContr = new DevExpress.XtraTab.XtraTabControl();
     this.DocManagement_DocModify_TabContr_BasicInfo = new DevExpress.XtraTab.XtraTabPage();
     this.btnCannel = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.ckAuto = new DevExpress.XtraEditors.CheckEdit();
     this.ckFlow = new DevExpress.XtraEditors.CheckEdit();
     this.cbxDocDense = new DevExpress.XtraEditors.ComboBoxEdit();
     this.DocManagement_DocModify_GroupControl_PartsRelated = new DevExpress.XtraEditors.GroupControl();
     this.listBoxControl1 = new DevExpress.XtraEditors.ListBoxControl();
     this.btnPartsDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnPartsAdd = new DevExpress.XtraEditors.SimpleButton();
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo = new DevExpress.XtraTab.XtraTabControl();
     this.DocManagement_DocModify_XtraTabPage_Remark = new DevExpress.XtraTab.XtraTabPage();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.DocManagement_DocModify_XtraTabPage_KeyWords = new DevExpress.XtraTab.XtraTabPage();
     this.txtKey = new DevExpress.XtraEditors.MemoEdit();
     this.DocManagement_DocModify_XtraTabPage_Summary = new DevExpress.XtraTab.XtraTabPage();
     this.txtAbstract = new DevExpress.XtraEditors.MemoEdit();
     this.txtDocModel = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocUpload = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocFlow = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocCategory = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocNumber = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManagement_DocModify_Label_SecurityLevel = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_InValidTime = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_ValidTime = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocModel = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocUpload = new DevExpress.XtraEditors.LabelControl();
     this.txtDocPage = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_DocPage = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocFlow = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_ModifyTime = new DevExpress.XtraEditors.LabelControl();
     this.txtModifyTime = new DevExpress.XtraEditors.TextEdit();
     this.txtModifyCount = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_ModifyCount = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocCategory = new DevExpress.XtraEditors.LabelControl();
     this.txtDocFormat = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_DocFormat = new DevExpress.XtraEditors.LabelControl();
     this.txtEnName = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_EnglishName = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocName = new DevExpress.XtraEditors.LabelControl();
     this.txtDocName = new DevExpress.XtraEditors.TextEdit();
     this.txtDocVersion = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_DocVersion = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocNumber = new DevExpress.XtraEditors.LabelControl();
     this.txtInValidTime = new DevExpress.XtraEditors.DateEdit();
     this.txtValidTime = new DevExpress.XtraEditors.DateEdit();
     this.DocManagement_DocModify_tabContr_AdditionalInfor = new DevExpress.XtraTab.XtraTabPage();
     this.DocManagement_DocModify_TabContr_ApproInfo = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList = new DevExpress.XtraTreeList.TreeList();
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_TabContr_DocAssociated = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_TabContr)).BeginInit();
     this.DocManagement_DocModify_TabContr.SuspendLayout();
     this.DocManagement_DocModify_TabContr_BasicInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckAuto.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckFlow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxDocDense.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_GroupControl_PartsRelated)).BeginInit();
     this.DocManagement_DocModify_GroupControl_PartsRelated.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_XtraTabControl_DocBasicInfo)).BeginInit();
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.SuspendLayout();
     this.DocManagement_DocModify_XtraTabPage_Remark.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     this.DocManagement_DocModify_XtraTabPage_KeyWords.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtKey.Properties)).BeginInit();
     this.DocManagement_DocModify_XtraTabPage_Summary.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtAbstract.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocModel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocUpload.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFlow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocPage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyCount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFormat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEnName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocVersion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties)).BeginInit();
     this.DocManagement_DocModify_TabContr_ApproInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Properties)).BeginInit();
     this.DocManagement_DocModify_TabContr_DocAssociated.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // DocManagement_DocModify_TabContr
     //
     this.DocManagement_DocModify_TabContr.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.DocManagement_DocModify_TabContr.Location = new System.Drawing.Point(-4, -2);
     this.DocManagement_DocModify_TabContr.Name = "DocManagement_DocModify_TabContr";
     this.DocManagement_DocModify_TabContr.SelectedTabPage = this.DocManagement_DocModify_TabContr_BasicInfo;
     this.DocManagement_DocModify_TabContr.Size = new System.Drawing.Size(777, 604);
     this.DocManagement_DocModify_TabContr.TabIndex = 0;
     this.DocManagement_DocModify_TabContr.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.DocManagement_DocModify_TabContr_BasicInfo,
     this.DocManagement_DocModify_tabContr_AdditionalInfor,
     this.DocManagement_DocModify_TabContr_ApproInfo,
     this.DocManagement_DocModify_TabContr_DocAssociated});
     //
     // DocManagement_DocModify_TabContr_BasicInfo
     //
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.btnCannel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.btnSave);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.ckAuto);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.ckFlow);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.cbxDocDense);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_GroupControl_PartsRelated);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_XtraTabControl_DocBasicInfo);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocModel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocUpload);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocFlow);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocCategory);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocNumber);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_SecurityLevel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_InValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_ValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocModel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocUpload);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocPage);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocPage);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocFlow);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_ModifyTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtModifyTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtModifyCount);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_ModifyCount);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocCategory);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocFormat);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocFormat);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtEnName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_EnglishName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocVersion);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocVersion);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocNumber);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtInValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Name = "DocManagement_DocModify_TabContr_BasicInfo";
     this.DocManagement_DocModify_TabContr_BasicInfo.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_TabContr_BasicInfo.Text = "文档基本信息";
     //
     // btnCannel
     //
     this.btnCannel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCannel.Location = new System.Drawing.Point(646, 512);
     this.btnCannel.Name = "btnCannel";
     this.btnCannel.Size = new System.Drawing.Size(75, 23);
     this.btnCannel.TabIndex = 76;
     this.btnCannel.Text = "取消";
     this.btnCannel.Click += new System.EventHandler(this.btnCannel_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSave.Location = new System.Drawing.Point(551, 512);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 75;
     this.btnSave.Text = "确定";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // ckAuto
     //
     this.ckAuto.Location = new System.Drawing.Point(498, 199);
     this.ckAuto.Name = "ckAuto";
     this.ckAuto.Properties.Caption = "自动归档";
     this.ckAuto.Size = new System.Drawing.Size(87, 19);
     this.ckAuto.TabIndex = 74;
     //
     // ckFlow
     //
     this.ckFlow.Location = new System.Drawing.Point(300, 119);
     this.ckFlow.Name = "ckFlow";
     this.ckFlow.Properties.Caption = "不需要审签";
     this.ckFlow.Size = new System.Drawing.Size(87, 19);
     this.ckFlow.TabIndex = 73;
     //
     // cbxDocDense
     //
     this.cbxDocDense.Location = new System.Drawing.Point(108, 198);
     this.cbxDocDense.Name = "cbxDocDense";
     this.cbxDocDense.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbxDocDense.Properties.Items.AddRange(new object[] {
     "绝密",
     "机密",
     "秘密",
     "一般"});
     this.cbxDocDense.Size = new System.Drawing.Size(279, 20);
     this.cbxDocDense.TabIndex = 72;
     //
     // DocManagement_DocModify_GroupControl_PartsRelated
     //
     this.DocManagement_DocModify_GroupControl_PartsRelated.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.DocManagement_DocModify_GroupControl_PartsRelated.Controls.Add(this.listBoxControl1);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Controls.Add(this.btnPartsDel);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Controls.Add(this.btnPartsAdd);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Location = new System.Drawing.Point(32, 371);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Name = "DocManagement_DocModify_GroupControl_PartsRelated";
     this.DocManagement_DocModify_GroupControl_PartsRelated.Size = new System.Drawing.Size(731, 135);
     this.DocManagement_DocModify_GroupControl_PartsRelated.TabIndex = 38;
     this.DocManagement_DocModify_GroupControl_PartsRelated.Text = "关联零部件";
     //
     // listBoxControl1
     //
     this.listBoxControl1.Location = new System.Drawing.Point(10, 25);
     this.listBoxControl1.Name = "listBoxControl1";
     this.listBoxControl1.Size = new System.Drawing.Size(601, 105);
     this.listBoxControl1.TabIndex = 2;
     //
     // btnPartsDel
     //
     this.btnPartsDel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnPartsDel.Location = new System.Drawing.Point(649, 95);
     this.btnPartsDel.Name = "btnPartsDel";
     this.btnPartsDel.Size = new System.Drawing.Size(75, 23);
     this.btnPartsDel.TabIndex = 1;
     this.btnPartsDel.Text = "删除";
     this.btnPartsDel.Click += new System.EventHandler(this.btnPartsDel_Click);
     //
     // btnPartsAdd
     //
     this.btnPartsAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnPartsAdd.Location = new System.Drawing.Point(649, 43);
     this.btnPartsAdd.Name = "btnPartsAdd";
     this.btnPartsAdd.Size = new System.Drawing.Size(75, 23);
     this.btnPartsAdd.TabIndex = 0;
     this.btnPartsAdd.Text = "添加";
     this.btnPartsAdd.Click += new System.EventHandler(this.btnPartsAdd_Click);
     //
     // DocManagement_DocModify_XtraTabControl_DocBasicInfo
     //
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.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.DocManagement_DocModify_XtraTabControl_DocBasicInfo.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Left;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Horizontal;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.Location = new System.Drawing.Point(32, 224);
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.Name = "DocManagement_DocModify_XtraTabControl_DocBasicInfo";
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.SelectedTabPage = this.DocManagement_DocModify_XtraTabPage_Remark;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.Size = new System.Drawing.Size(736, 144);
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.TabIndex = 37;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.DocManagement_DocModify_XtraTabPage_Remark,
     this.DocManagement_DocModify_XtraTabPage_KeyWords,
     this.DocManagement_DocModify_XtraTabPage_Summary});
     //
     // DocManagement_DocModify_XtraTabPage_Remark
     //
     this.DocManagement_DocModify_XtraTabPage_Remark.Controls.Add(this.txtRemark);
     this.DocManagement_DocModify_XtraTabPage_Remark.Name = "DocManagement_DocModify_XtraTabPage_Remark";
     this.DocManagement_DocModify_XtraTabPage_Remark.Size = new System.Drawing.Size(680, 138);
     this.DocManagement_DocModify_XtraTabPage_Remark.Text = "备注";
     //
     // txtRemark
     //
     this.txtRemark.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtRemark.Location = new System.Drawing.Point(0, 0);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Size = new System.Drawing.Size(680, 138);
     this.txtRemark.TabIndex = 0;
     //
     // DocManagement_DocModify_XtraTabPage_KeyWords
     //
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Controls.Add(this.txtKey);
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Name = "DocManagement_DocModify_XtraTabPage_KeyWords";
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Size = new System.Drawing.Size(680, 138);
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Text = "关键字";
     //
     // txtKey
     //
     this.txtKey.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtKey.Location = new System.Drawing.Point(0, 0);
     this.txtKey.Name = "txtKey";
     this.txtKey.Size = new System.Drawing.Size(680, 138);
     this.txtKey.TabIndex = 0;
     //
     // DocManagement_DocModify_XtraTabPage_Summary
     //
     this.DocManagement_DocModify_XtraTabPage_Summary.Controls.Add(this.txtAbstract);
     this.DocManagement_DocModify_XtraTabPage_Summary.Name = "DocManagement_DocModify_XtraTabPage_Summary";
     this.DocManagement_DocModify_XtraTabPage_Summary.Size = new System.Drawing.Size(680, 138);
     this.DocManagement_DocModify_XtraTabPage_Summary.Text = "摘要";
     //
     // txtAbstract
     //
     this.txtAbstract.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtAbstract.Location = new System.Drawing.Point(0, 0);
     this.txtAbstract.Name = "txtAbstract";
     this.txtAbstract.Size = new System.Drawing.Size(680, 138);
     this.txtAbstract.TabIndex = 0;
     //
     // txtDocModel
     //
     this.txtDocModel.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.txtDocModel.Location = new System.Drawing.Point(498, 140);
     this.txtDocModel.Name = "txtDocModel";
     this.txtDocModel.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocModel.Size = new System.Drawing.Size(265, 20);
     this.txtDocModel.TabIndex = 35;
     this.txtDocModel.Click += new System.EventHandler(this.txtDocModel_Click);
     //
     // txtDocUpload
     //
     this.txtDocUpload.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocUpload.Location = new System.Drawing.Point(108, 146);
     this.txtDocUpload.Name = "txtDocUpload";
     this.txtDocUpload.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocUpload.Size = new System.Drawing.Size(279, 20);
     this.txtDocUpload.TabIndex = 33;
     this.txtDocUpload.Click += new System.EventHandler(this.docUpload_ButtonClick);
     //
     // txtDocFlow
     //
     this.txtDocFlow.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocFlow.Location = new System.Drawing.Point(108, 117);
     this.txtDocFlow.Name = "txtDocFlow";
     this.txtDocFlow.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocFlow.Size = new System.Drawing.Size(160, 20);
     this.txtDocFlow.TabIndex = 32;
     this.txtDocFlow.Click += new System.EventHandler(this.txtDocFlow_Click);
     //
     // txtDocCategory
     //
     this.txtDocCategory.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.txtDocCategory.Location = new System.Drawing.Point(498, 60);
     this.txtDocCategory.Name = "txtDocCategory";
     this.txtDocCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocCategory.Size = new System.Drawing.Size(265, 20);
     this.txtDocCategory.TabIndex = 31;
     this.txtDocCategory.Click += new System.EventHandler(this.txtDocCategory_Click);
     //
     // txtDocNumber
     //
     this.txtDocNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocNumber.Location = new System.Drawing.Point(108, 6);
     this.txtDocNumber.Name = "txtDocNumber";
     this.txtDocNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocNumber.Size = new System.Drawing.Size(279, 20);
     this.txtDocNumber.TabIndex = 30;
     this.txtDocNumber.Click += new System.EventHandler(this.txtDocNumber_Click);
     //
     // DocManagement_DocModify_Label_SecurityLevel
     //
     this.DocManagement_DocModify_Label_SecurityLevel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_SecurityLevel.Location = new System.Drawing.Point(32, 201);
     this.DocManagement_DocModify_Label_SecurityLevel.Name = "DocManagement_DocModify_Label_SecurityLevel";
     this.DocManagement_DocModify_Label_SecurityLevel.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_SecurityLevel.TabIndex = 28;
     this.DocManagement_DocModify_Label_SecurityLevel.Text = "文档密级:";
     //
     // DocManagement_DocModify_Label_InValidTime
     //
     this.DocManagement_DocModify_Label_InValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_InValidTime.Location = new System.Drawing.Point(427, 173);
     this.DocManagement_DocModify_Label_InValidTime.Name = "DocManagement_DocModify_Label_InValidTime";
     this.DocManagement_DocModify_Label_InValidTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_InValidTime.TabIndex = 26;
     this.DocManagement_DocModify_Label_InValidTime.Text = "失效时间:";
     //
     // DocManagement_DocModify_Label_ValidTime
     //
     this.DocManagement_DocModify_Label_ValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_ValidTime.Location = new System.Drawing.Point(32, 175);
     this.DocManagement_DocModify_Label_ValidTime.Name = "DocManagement_DocModify_Label_ValidTime";
     this.DocManagement_DocModify_Label_ValidTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_ValidTime.TabIndex = 24;
     this.DocManagement_DocModify_Label_ValidTime.Text = "生效时间:";
     //
     // DocManagement_DocModify_Label_DocModel
     //
     this.DocManagement_DocModify_Label_DocModel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocModel.Location = new System.Drawing.Point(427, 146);
     this.DocManagement_DocModify_Label_DocModel.Name = "DocManagement_DocModify_Label_DocModel";
     this.DocManagement_DocModify_Label_DocModel.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocModel.TabIndex = 22;
     this.DocManagement_DocModify_Label_DocModel.Text = "文档模板:";
     //
     // DocManagement_DocModify_Label_DocUpload
     //
     this.DocManagement_DocModify_Label_DocUpload.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocUpload.Location = new System.Drawing.Point(32, 149);
     this.DocManagement_DocModify_Label_DocUpload.Name = "DocManagement_DocModify_Label_DocUpload";
     this.DocManagement_DocModify_Label_DocUpload.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocUpload.TabIndex = 19;
     this.DocManagement_DocModify_Label_DocUpload.Text = "上传文件:";
     //
     // txtDocPage
     //
     this.txtDocPage.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.txtDocPage.Location = new System.Drawing.Point(498, 115);
     this.txtDocPage.Name = "txtDocPage";
     this.txtDocPage.Size = new System.Drawing.Size(265, 20);
     this.txtDocPage.TabIndex = 18;
     //
     // DocManagement_DocModify_Label_DocPage
     //
     this.DocManagement_DocModify_Label_DocPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocPage.Location = new System.Drawing.Point(427, 120);
     this.DocManagement_DocModify_Label_DocPage.Name = "DocManagement_DocModify_Label_DocPage";
     this.DocManagement_DocModify_Label_DocPage.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocPage.TabIndex = 17;
     this.DocManagement_DocModify_Label_DocPage.Text = "文档页面:";
     //
     // DocManagement_DocModify_Label_DocFlow
     //
     this.DocManagement_DocModify_Label_DocFlow.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocFlow.Location = new System.Drawing.Point(32, 120);
     this.DocManagement_DocModify_Label_DocFlow.Name = "DocManagement_DocModify_Label_DocFlow";
     this.DocManagement_DocModify_Label_DocFlow.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocFlow.TabIndex = 16;
     this.DocManagement_DocModify_Label_DocFlow.Text = "文档流程:";
     //
     // DocManagement_DocModify_Label_ModifyTime
     //
     this.DocManagement_DocModify_Label_ModifyTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_ModifyTime.Location = new System.Drawing.Point(427, 92);
     this.DocManagement_DocModify_Label_ModifyTime.Name = "DocManagement_DocModify_Label_ModifyTime";
     this.DocManagement_DocModify_Label_ModifyTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_ModifyTime.TabIndex = 15;
     this.DocManagement_DocModify_Label_ModifyTime.Text = "修改时间:";
     //
     // txtModifyTime
     //
     this.txtModifyTime.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.txtModifyTime.Location = new System.Drawing.Point(499, 86);
     this.txtModifyTime.Name = "txtModifyTime";
     this.txtModifyTime.Size = new System.Drawing.Size(264, 20);
     this.txtModifyTime.TabIndex = 14;
     //
     // txtModifyCount
     //
     this.txtModifyCount.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtModifyCount.Location = new System.Drawing.Point(108, 91);
     this.txtModifyCount.Name = "txtModifyCount";
     this.txtModifyCount.Size = new System.Drawing.Size(279, 20);
     this.txtModifyCount.TabIndex = 13;
     //
     // DocManagement_DocModify_Label_ModifyCount
     //
     this.DocManagement_DocModify_Label_ModifyCount.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_ModifyCount.Location = new System.Drawing.Point(32, 94);
     this.DocManagement_DocModify_Label_ModifyCount.Name = "DocManagement_DocModify_Label_ModifyCount";
     this.DocManagement_DocModify_Label_ModifyCount.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_ModifyCount.TabIndex = 12;
     this.DocManagement_DocModify_Label_ModifyCount.Text = "修改次数:";
     //
     // DocManagement_DocModify_Label_DocCategory
     //
     this.DocManagement_DocModify_Label_DocCategory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocCategory.Location = new System.Drawing.Point(427, 63);
     this.DocManagement_DocModify_Label_DocCategory.Name = "DocManagement_DocModify_Label_DocCategory";
     this.DocManagement_DocModify_Label_DocCategory.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocCategory.TabIndex = 10;
     this.DocManagement_DocModify_Label_DocCategory.Text = "文档分类:";
     //
     // txtDocFormat
     //
     this.txtDocFormat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocFormat.Location = new System.Drawing.Point(108, 63);
     this.txtDocFormat.Name = "txtDocFormat";
     this.txtDocFormat.Size = new System.Drawing.Size(279, 20);
     this.txtDocFormat.TabIndex = 9;
     //
     // DocManagement_DocModify_Label_DocFormat
     //
     this.DocManagement_DocModify_Label_DocFormat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocFormat.Location = new System.Drawing.Point(32, 65);
     this.DocManagement_DocModify_Label_DocFormat.Name = "DocManagement_DocModify_Label_DocFormat";
     this.DocManagement_DocModify_Label_DocFormat.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocFormat.TabIndex = 8;
     this.DocManagement_DocModify_Label_DocFormat.Text = "文档格式:";
     //
     // txtEnName
     //
     this.txtEnName.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.txtEnName.Location = new System.Drawing.Point(498, 34);
     this.txtEnName.Name = "txtEnName";
     this.txtEnName.Size = new System.Drawing.Size(265, 20);
     this.txtEnName.TabIndex = 7;
     //
     // DocManagement_DocModify_Label_EnglishName
     //
     this.DocManagement_DocModify_Label_EnglishName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_EnglishName.Location = new System.Drawing.Point(427, 37);
     this.DocManagement_DocModify_Label_EnglishName.Name = "DocManagement_DocModify_Label_EnglishName";
     this.DocManagement_DocModify_Label_EnglishName.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_EnglishName.TabIndex = 6;
     this.DocManagement_DocModify_Label_EnglishName.Text = "英文名称:";
     //
     // DocManagement_DocModify_Label_DocName
     //
     this.DocManagement_DocModify_Label_DocName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocName.Location = new System.Drawing.Point(25, 40);
     this.DocManagement_DocModify_Label_DocName.Name = "DocManagement_DocModify_Label_DocName";
     this.DocManagement_DocModify_Label_DocName.Size = new System.Drawing.Size(59, 14);
     this.DocManagement_DocModify_Label_DocName.TabIndex = 5;
     this.DocManagement_DocModify_Label_DocName.Text = "*文档名称:";
     //
     // txtDocName
     //
     this.txtDocName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocName.Location = new System.Drawing.Point(108, 37);
     this.txtDocName.Name = "txtDocName";
     this.txtDocName.Size = new System.Drawing.Size(279, 20);
     this.txtDocName.TabIndex = 4;
     //
     // txtDocVersion
     //
     this.txtDocVersion.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.txtDocVersion.Location = new System.Drawing.Point(499, 7);
     this.txtDocVersion.Name = "txtDocVersion";
     this.txtDocVersion.Size = new System.Drawing.Size(264, 20);
     this.txtDocVersion.TabIndex = 3;
     //
     // DocManagement_DocModify_Label_DocVersion
     //
     this.DocManagement_DocModify_Label_DocVersion.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocVersion.Location = new System.Drawing.Point(412, 10);
     this.DocManagement_DocModify_Label_DocVersion.Name = "DocManagement_DocModify_Label_DocVersion";
     this.DocManagement_DocModify_Label_DocVersion.Size = new System.Drawing.Size(67, 14);
     this.DocManagement_DocModify_Label_DocVersion.TabIndex = 2;
     this.DocManagement_DocModify_Label_DocVersion.Text = "*文档版本:";
     //
     // DocManagement_DocModify_Label_DocNumber
     //
     this.DocManagement_DocModify_Label_DocNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocNumber.Location = new System.Drawing.Point(25, 10);
     this.DocManagement_DocModify_Label_DocNumber.Name = "DocManagement_DocModify_Label_DocNumber";
     this.DocManagement_DocModify_Label_DocNumber.Size = new System.Drawing.Size(59, 14);
     this.DocManagement_DocModify_Label_DocNumber.TabIndex = 1;
     this.DocManagement_DocModify_Label_DocNumber.Text = "*文档编码:";
     //
     // txtInValidTime
     //
     this.txtInValidTime.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.txtInValidTime.EditValue = null;
     this.txtInValidTime.Location = new System.Drawing.Point(498, 167);
     this.txtInValidTime.Name = "txtInValidTime";
     this.txtInValidTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtInValidTime.Properties.Mask.EditMask = "F";
     this.txtInValidTime.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtInValidTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtInValidTime.Size = new System.Drawing.Size(265, 20);
     this.txtInValidTime.TabIndex = 36;
     //
     // txtValidTime
     //
     this.txtValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtValidTime.EditValue = null;
     this.txtValidTime.Location = new System.Drawing.Point(108, 172);
     this.txtValidTime.Name = "txtValidTime";
     this.txtValidTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtValidTime.Properties.Mask.EditMask = "F";
     this.txtValidTime.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtValidTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtValidTime.Size = new System.Drawing.Size(279, 20);
     this.txtValidTime.TabIndex = 34;
     //
     // DocManagement_DocModify_tabContr_AdditionalInfor
     //
     this.DocManagement_DocModify_tabContr_AdditionalInfor.Name = "DocManagement_DocModify_tabContr_AdditionalInfor";
     this.DocManagement_DocModify_tabContr_AdditionalInfor.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_tabContr_AdditionalInfor.Text = "文档附加信息";
     //
     // DocManagement_DocModify_TabContr_ApproInfo
     //
     this.DocManagement_DocModify_TabContr_ApproInfo.Controls.Add(this.panelControl3);
     this.DocManagement_DocModify_TabContr_ApproInfo.Name = "DocManagement_DocModify_TabContr_ApproInfo";
     this.DocManagement_DocModify_TabContr_ApproInfo.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_TabContr_ApproInfo.Text = "文档审签信息";
     //
     // panelControl3
     //
     this.panelControl3.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.panelControl3.Controls.Add(this.panelControl4);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_Query_SimpleButton);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit);
     this.panelControl3.Controls.Add(this.checkEdit4);
     this.panelControl3.Controls.Add(this.checkEdit3);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl);
     this.panelControl3.Location = new System.Drawing.Point(1, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(770, 531);
     this.panelControl3.TabIndex = 7;
     //
     // panelControl4
     //
     this.panelControl4.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.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl);
     this.panelControl4.Location = new System.Drawing.Point(218, 1);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(552, 530);
     this.panelControl4.TabIndex = 27;
     //
     // DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Location = new System.Drawing.Point(274, 502);
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Name = "DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton";
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.TabIndex = 32;
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Text = "删除";
     //
     // DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Location = new System.Drawing.Point(331, 502);
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Name = "DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton";
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.TabIndex = 31;
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Text = "修改";
     //
     // DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.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.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Location = new System.Drawing.Point(2, 225);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Name = "DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl";
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Size = new System.Drawing.Size(550, 271);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.TabIndex = 9;
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Text = "文档审签详细信息";
     //
     // DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList
     //
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.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.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.Location = new System.Drawing.Point(-2, 22);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.Name = "DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList";
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.OptionsPrint.UsePrintStyles = true;
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.Size = new System.Drawing.Size(552, 249);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.TabIndex = 0;
     //
     // DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Location = new System.Drawing.Point(217, 502);
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Name = "DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton";
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.TabIndex = 30;
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Text = "添加";
     //
     // DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.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.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Location = new System.Drawing.Point(0, -1);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Name = "DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl";
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Size = new System.Drawing.Size(552, 220);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Text = "文档查询结果";
     //
     // DocManage_DocManageTool_DocModify_DocQueryValue_GridControl
     //
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.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.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.Location = new System.Drawing.Point(1, 21);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.MainView = this.gridView2;
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.Name = "DocManage_DocManageTool_DocModify_DocQueryValue_GridControl";
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.Size = new System.Drawing.Size(551, 197);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.TabIndex = 0;
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13});
     this.gridView2.GridControl = this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "文档名称";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "文档编号";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 1;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "文档版本";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 2;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "审签状态";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 3;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "申请人";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 4;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "申请日期";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 5;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "审签人";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 6;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "审签日期";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 7;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "备注";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 8;
     //
     // DocManage_DocManageTool_DocModify_Query_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Location = new System.Drawing.Point(158, 204);
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Name = "DocManage_DocManageTool_DocModify_Query_SimpleButton";
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Size = new System.Drawing.Size(59, 23);
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.TabIndex = 26;
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Text = "查询(Q)";
     //
     // DocManage_DocManageTool_DocModify_Proposer_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Location = new System.Drawing.Point(70, 141);
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Proposer_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.TabIndex = 20;
     //
     // DocManage_DocManageTool_DocModify_Approver_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Location = new System.Drawing.Point(70, 178);
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Approver_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.TabIndex = 19;
     //
     // checkEdit4
     //
     this.checkEdit4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.checkEdit4.Location = new System.Drawing.Point(2, 141);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "申请人:";
     this.checkEdit4.Size = new System.Drawing.Size(62, 19);
     this.checkEdit4.TabIndex = 11;
     //
     // checkEdit3
     //
     this.checkEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.checkEdit3.Location = new System.Drawing.Point(2, 178);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "审签人:";
     this.checkEdit3.Size = new System.Drawing.Size(62, 19);
     this.checkEdit3.TabIndex = 10;
     //
     // DocManage_DocManageTool_DocModify_DocMessage_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocName_TextEdit);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.labelControl4);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.labelControl5);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.labelControl6);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Location = new System.Drawing.Point(5, 5);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Name = "DocManage_DocManageTool_DocModify_DocMessage_GroupControl";
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Size = new System.Drawing.Size(212, 122);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.TabIndex = 9;
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Text = "文档信息";
     //
     // DocManage_DocManageTool_DocModify_DocRelease_TextEdit
     //
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.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.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Location = new System.Drawing.Point(65, 96);
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Name = "DocManage_DocManageTool_DocModify_DocRelease_TextEdit";
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.TabIndex = 13;
     //
     // DocManage_DocManageTool_DocModify_DocNumber_TextEdit
     //
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.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.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Location = new System.Drawing.Point(65, 62);
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Name = "DocManage_DocManageTool_DocModify_DocNumber_TextEdit";
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.TabIndex = 14;
     //
     // DocManage_DocManageTool_DocModify_DocName_TextEdit
     //
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Location = new System.Drawing.Point(65, 25);
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Name = "DocManage_DocManageTool_DocModify_DocName_TextEdit";
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.TabIndex = 15;
     //
     // labelControl4
     //
     this.labelControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl4.Location = new System.Drawing.Point(7, 28);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(52, 14);
     this.labelControl4.TabIndex = 8;
     this.labelControl4.Text = "文档名称:";
     //
     // labelControl5
     //
     this.labelControl5.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.labelControl5.Location = new System.Drawing.Point(7, 64);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(52, 14);
     this.labelControl5.TabIndex = 7;
     this.labelControl5.Text = "文档编号:";
     //
     // labelControl6
     //
     this.labelControl6.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.labelControl6.Location = new System.Drawing.Point(7, 99);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(52, 14);
     this.labelControl6.TabIndex = 6;
     this.labelControl6.Text = "文档版本:";
     //
     // DocManagement_DocModify_TabContr_DocAssociated
     //
     this.DocManagement_DocModify_TabContr_DocAssociated.Controls.Add(this.panelControl1);
     this.DocManagement_DocModify_TabContr_DocAssociated.Name = "DocManagement_DocModify_TabContr_DocAssociated";
     this.DocManagement_DocModify_TabContr_DocAssociated.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_TabContr_DocAssociated.Text = "关联文档";
     //
     // panelControl1
     //
     this.panelControl1.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.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton);
     this.panelControl1.Controls.Add(this.panelControl2);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl);
     this.panelControl1.Location = new System.Drawing.Point(3, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(773, 531);
     this.panelControl1.TabIndex = 7;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Location = new System.Drawing.Point(156, 214);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Size = new System.Drawing.Size(59, 23);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.TabIndex = 25;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Text = "查询(Q)";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton_Click);
     //
     // panelControl2
     //
     this.panelControl2.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.panelControl2.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl);
     this.panelControl2.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl);
     this.panelControl2.Location = new System.Drawing.Point(218, 2);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(555, 529);
     this.panelControl2.TabIndex = 23;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.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.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Location = new System.Drawing.Point(5, 202);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Size = new System.Drawing.Size(550, 327);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.TabIndex = 9;
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Text = "关联文档列表区";
     //
     // DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Location = new System.Drawing.Point(294, 299);
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Name = "DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton";
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.TabIndex = 29;
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Text = "删除";
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton_Click);
     //
     // DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Location = new System.Drawing.Point(221, 299);
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Name = "DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton";
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.TabIndex = 26;
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Text = "添加";
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton_Click);
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.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.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn2,
     this.treeListColumn3,
     this.treeListColumn4});
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Location = new System.Drawing.Point(0, 23);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Name = "DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList";
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.OptionsPrint.UsePrintStyles = true;
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Size = new System.Drawing.Size(545, 273);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.TabIndex = 0;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "文档名称";
     this.treeListColumn1.FieldName = "cn_name";
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "文档编号";
     this.treeListColumn2.FieldName = "number";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 1;
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "文档版本";
     this.treeListColumn3.FieldName = "version";
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.Visible = true;
     this.treeListColumn3.VisibleIndex = 2;
     //
     // treeListColumn4
     //
     this.treeListColumn4.Caption = "文档类型";
     this.treeListColumn4.FieldName = "document_type_name";
     this.treeListColumn4.Name = "treeListColumn4";
     this.treeListColumn4.Visible = true;
     this.treeListColumn4.VisibleIndex = 3;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.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.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Location = new System.Drawing.Point(3, 1);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Size = new System.Drawing.Size(552, 195);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Text = "关联文档查询结果";
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.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.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Location = new System.Drawing.Point(0, 21);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.MainView = this.gridView1;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Size = new System.Drawing.Size(547, 174);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.TabIndex = 0;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4});
     this.gridView1.GridControl = this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "文档名称";
     this.gridColumn1.FieldName = "cn_name";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "文档编号";
     this.gridColumn2.FieldName = "number";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "文档版本";
     this.gridColumn3.FieldName = "version";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "文档类型";
     this.gridColumn4.FieldName = "document_type_name";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // DocManage_DocManageTool_DocModify_Creater_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Location = new System.Drawing.Point(68, 141);
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Creater_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.TabIndex = 20;
     //
     // DocManage_DocManageTool_DocModify_Modifier_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Location = new System.Drawing.Point(68, 179);
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Modifier_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.TabIndex = 19;
     //
     // DocManage_DocManageTool_DocModify_Creater_CheckEdit
     //
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Location = new System.Drawing.Point(1, 141);
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Name = "DocManage_DocManageTool_DocModify_Creater_CheckEdit";
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties.Caption = "创建人:";
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Size = new System.Drawing.Size(61, 19);
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.TabIndex = 10;
     //
     // DocManage_DocManageTool_DocModify_Modifier_CheckEdit
     //
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Location = new System.Drawing.Point(1, 179);
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Name = "DocManage_DocManageTool_DocModify_Modifier_CheckEdit";
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties.Caption = "修改人:";
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Size = new System.Drawing.Size(61, 19);
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.TabIndex = 9;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl3);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl2);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl1);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Location = new System.Drawing.Point(3, 3);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Size = new System.Drawing.Size(212, 122);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Text = "关联文档信息";
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Location = new System.Drawing.Point(65, 96);
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.TabIndex = 13;
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Location = new System.Drawing.Point(65, 62);
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.TabIndex = 14;
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Location = new System.Drawing.Point(65, 25);
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.TabIndex = 15;
     //
     // labelControl3
     //
     this.labelControl3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl3.Location = new System.Drawing.Point(7, 28);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(52, 14);
     this.labelControl3.TabIndex = 8;
     this.labelControl3.Text = "文档名称:";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(7, 64);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 14);
     this.labelControl2.TabIndex = 7;
     this.labelControl2.Text = "文档编号:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(7, 99);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 14);
     this.labelControl1.TabIndex = 6;
     this.labelControl1.Text = "文档版本:";
     //
     // DocModify
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(772, 567);
     this.Controls.Add(this.DocManagement_DocModify_TabContr);
     this.IsMdiContainer = true;
     this.Name = "DocModify";
     this.Text = "修改文档";
     this.Load += new System.EventHandler(this.docManagement_Load);
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_TabContr)).EndInit();
     this.DocManagement_DocModify_TabContr.ResumeLayout(false);
     this.DocManagement_DocModify_TabContr_BasicInfo.ResumeLayout(false);
     this.DocManagement_DocModify_TabContr_BasicInfo.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckAuto.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckFlow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxDocDense.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_GroupControl_PartsRelated)).EndInit();
     this.DocManagement_DocModify_GroupControl_PartsRelated.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_XtraTabControl_DocBasicInfo)).EndInit();
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.ResumeLayout(false);
     this.DocManagement_DocModify_XtraTabPage_Remark.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     this.DocManagement_DocModify_XtraTabPage_KeyWords.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtKey.Properties)).EndInit();
     this.DocManagement_DocModify_XtraTabPage_Summary.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtAbstract.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocModel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocUpload.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFlow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocPage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyCount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFormat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEnName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocVersion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties)).EndInit();
     this.DocManagement_DocModify_TabContr_ApproInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.ResumeLayout(false);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Properties)).EndInit();
     this.DocManagement_DocModify_TabContr_DocAssociated.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.ResumeLayout(false);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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.label10          = new System.Windows.Forms.Label();
     this.txtSubject       = new DevExpress.XtraEditors.TextEdit();
     this.dateEdit1        = new DevExpress.XtraEditors.DateEdit();
     this.lkpEdtBranchCode = new DevExpress.XtraEditors.LookUpEdit();
     this.lkpEdtDeptID     = new DevExpress.XtraEditors.LookUpEdit();
     this.lkpEdtCaseType   = new DevExpress.XtraEditors.LookUpEdit();
     this.mmEdtDetail      = new DevExpress.XtraEditors.MemoEdit();
     this.sbtnSave         = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCancel       = new DevExpress.XtraEditors.SimpleButton();
     this.lkpEdtCategory   = new DevExpress.XtraEditors.LookUpEdit();
     this.label11          = new System.Windows.Forms.Label();
     this.ucMemberID1      = new ACMS.ucMemberID();
     ((System.ComponentModel.ISupportInitialize)(this.txtSubject.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtDeptID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCaseType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mmEdtDetail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCategory.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(18, 12);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 20);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Subject";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(18, 40);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 20);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Date";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(18, 68);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(100, 20);
     this.label3.TabIndex = 2;
     this.label3.Text     = "Branch Code";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(18, 96);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(100, 20);
     this.label4.TabIndex = 3;
     this.label4.Text     = "Department ID";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(18, 152);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(100, 20);
     this.label5.TabIndex = 4;
     this.label5.Text     = "CVF Type";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(18, 182);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(100, 20);
     this.label6.TabIndex = 5;
     this.label6.Text     = "Membership ID";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(18, 212);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(100, 20);
     this.label10.TabIndex = 9;
     this.label10.Text     = "Detail";
     //
     // txtSubject
     //
     this.txtSubject.EditValue = "";
     this.txtSubject.Location  = new System.Drawing.Point(142, 10);
     this.txtSubject.Name      = "txtSubject";
     //
     // txtSubject.Properties
     //
     this.txtSubject.Properties.MaxLength = 255;
     this.txtSubject.Size     = new System.Drawing.Size(236, 20);
     this.txtSubject.TabIndex = 0;
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = new System.DateTime(2005, 10, 21, 0, 0, 0, 0);
     this.dateEdit1.Location  = new System.Drawing.Point(142, 38);
     this.dateEdit1.Name      = "dateEdit1";
     //
     // dateEdit1.Properties
     //
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateEdit1.Size     = new System.Drawing.Size(236, 20);
     this.dateEdit1.TabIndex = 1;
     //
     // lkpEdtBranchCode
     //
     this.lkpEdtBranchCode.Location = new System.Drawing.Point(142, 66);
     this.lkpEdtBranchCode.Name     = "lkpEdtBranchCode";
     //
     // lkpEdtBranchCode.Properties
     //
     this.lkpEdtBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtBranchCode.Size     = new System.Drawing.Size(236, 20);
     this.lkpEdtBranchCode.TabIndex = 2;
     //
     // lkpEdtDeptID
     //
     this.lkpEdtDeptID.Location = new System.Drawing.Point(142, 94);
     this.lkpEdtDeptID.Name     = "lkpEdtDeptID";
     //
     // lkpEdtDeptID.Properties
     //
     this.lkpEdtDeptID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtDeptID.Size     = new System.Drawing.Size(236, 20);
     this.lkpEdtDeptID.TabIndex = 3;
     //
     // lkpEdtCaseType
     //
     this.lkpEdtCaseType.Location = new System.Drawing.Point(142, 150);
     this.lkpEdtCaseType.Name     = "lkpEdtCaseType";
     //
     // lkpEdtCaseType.Properties
     //
     this.lkpEdtCaseType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtCaseType.Size     = new System.Drawing.Size(236, 20);
     this.lkpEdtCaseType.TabIndex = 5;
     //
     // mmEdtDetail
     //
     this.mmEdtDetail.EditValue = "";
     this.mmEdtDetail.Location  = new System.Drawing.Point(142, 212);
     this.mmEdtDetail.Name      = "mmEdtDetail";
     //
     // mmEdtDetail.Properties
     //
     this.mmEdtDetail.Properties.MaxLength = 1000;
     this.mmEdtDetail.Size     = new System.Drawing.Size(236, 102);
     this.mmEdtDetail.TabIndex = 7;
     //
     // sbtnSave
     //
     this.sbtnSave.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.sbtnSave.Location     = new System.Drawing.Point(226, 322);
     this.sbtnSave.Name         = "sbtnSave";
     this.sbtnSave.Size         = new System.Drawing.Size(72, 20);
     this.sbtnSave.TabIndex     = 8;
     this.sbtnSave.Text         = "Save";
     this.sbtnSave.Click       += new System.EventHandler(this.sbtnSave_Click);
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location     = new System.Drawing.Point(306, 322);
     this.sbtnCancel.Name         = "sbtnCancel";
     this.sbtnCancel.Size         = new System.Drawing.Size(72, 20);
     this.sbtnCancel.TabIndex     = 9;
     this.sbtnCancel.Text         = "Cancel";
     //
     // lkpEdtCategory
     //
     this.lkpEdtCategory.Location = new System.Drawing.Point(142, 122);
     this.lkpEdtCategory.Name     = "lkpEdtCategory";
     //
     // lkpEdtCategory.Properties
     //
     this.lkpEdtCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtCategory.Size     = new System.Drawing.Size(236, 20);
     this.lkpEdtCategory.TabIndex = 4;
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(18, 124);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(100, 20);
     this.label11.TabIndex = 28;
     this.label11.Text     = "Case Category";
     //
     // ucMemberID1
     //
     this.ucMemberID1.EditValue        = "";
     this.ucMemberID1.EditValueChanged = null;
     this.ucMemberID1.Location         = new System.Drawing.Point(142, 182);
     this.ucMemberID1.Name             = "ucMemberID1";
     this.ucMemberID1.Size             = new System.Drawing.Size(240, 20);
     this.ucMemberID1.StrBranchCode    = null;
     this.ucMemberID1.TabIndex         = 6;
     //
     // frmNewCV
     //
     this.AcceptButton      = this.sbtnSave;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.sbtnCancel;
     this.ClientSize        = new System.Drawing.Size(394, 352);
     this.Controls.Add(this.ucMemberID1);
     this.Controls.Add(this.lkpEdtCategory);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.sbtnSave);
     this.Controls.Add(this.mmEdtDetail);
     this.Controls.Add(this.lkpEdtCaseType);
     this.Controls.Add(this.lkpEdtDeptID);
     this.Controls.Add(this.lkpEdtBranchCode);
     this.Controls.Add(this.dateEdit1);
     this.Controls.Add(this.txtSubject);
     this.Controls.Add(this.label10);
     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.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmNewCV";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "New Customer Voice";
     ((System.ComponentModel.ISupportInitialize)(this.txtSubject.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtDeptID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCaseType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mmEdtDetail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCategory.Properties)).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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChuongTrinh));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnDeleteRealy = new DevExpress.XtraEditors.SimpleButton();
     this.btnRestore = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.InPhieu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuInPhieu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.NghiepVu = new DevExpress.XtraEditors.DropDownButton();
     this.ctMnuNghiepVu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.Duyet = new ProtocolVN.Framework.Win.PLDuyetCombobox();
     this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
     this.label7 = new DevExpress.XtraEditors.LabelControl();
     this.label8 = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuPhanLoai = new DevExpress.XtraEditors.TextEdit();
     this.label21 = new DevExpress.XtraEditors.LabelControl();
     this.label22 = new DevExpress.XtraEditors.LabelControl();
     this.label2 = new DevExpress.XtraEditors.LabelControl();
     this.label4 = new DevExpress.XtraEditors.LabelControl();
     this.label5 = new DevExpress.XtraEditors.LabelControl();
     this.label15 = new DevExpress.XtraEditors.LabelControl();
     this.lblTitle = new DevExpress.XtraEditors.LabelControl();
     this.KyHieuXepKho_KHPL = new DevExpress.XtraEditors.TextEdit();
     this.groupControlThongTinPhatSong = new DevExpress.XtraEditors.GroupControl();
     this.ReleaseDate = new DevExpress.XtraEditors.DateEdit();
     this.SoRunConlai = new DevExpress.XtraEditors.SpinEdit();
     this.ReleaseRun = new DevExpress.XtraEditors.SpinEdit();
     this.Release = new DevExpress.XtraEditors.SpinEdit();
     this.SoDaRun = new DevExpress.XtraEditors.SpinEdit();
     this.gridControlPhatSongKhac = new DevExpress.XtraGrid.GridControl();
     this.gridviewPhatSongKhac = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColPSK_Kenh = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_TuNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_DenNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColPSK_LanPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlNgayPhatDauTien = new DevExpress.XtraGrid.GridControl();
     this.gridViewNgayPhatDauTien = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColKenhPhatSong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColIsPhatLai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayPhatStart = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayPhatEnd = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColTimeSlot = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColLanPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.RunThu = new DevExpress.XtraEditors.SpinEdit();
     this.TongSoRun = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.ReleaseRule = new DevExpress.XtraEditors.MemoEdit();
     this.MuaKem = new DevExpress.XtraEditors.MemoEdit();
     this.Rating = new DevExpress.XtraEditors.CalcEdit();
     this.DoiTuongKhanGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label14 = new DevExpress.XtraEditors.LabelControl();
     this.groupControlNguonGoc = new DevExpress.XtraEditors.GroupControl();
     this.NoteBQ = new DevExpress.XtraEditors.MemoEdit();
     this.gridControlThongTinBan = new DevExpress.XtraGrid.GridControl();
     this.gridViewThongTinBan = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ColKenhBan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayBanTu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColNgayBanDen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
     this.DonViHauKy = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.HangSanXuat = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DonViSoHuu = new ProtocolVN.Framework.Win.PLDMGrid();
     this.NamSanXuat = new DevExpress.XtraEditors.PLSpinEdit();
     this.labelControl33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.label25 = new DevExpress.XtraEditors.LabelControl();
     this.KenhHanCheBan = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.BanQuyenHTV = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDIDEnd = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDTNNEnd = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDIDStart = new DevExpress.XtraEditors.DateEdit();
     this.BanQuyenDTNNStart = new DevExpress.XtraEditors.DateEdit();
     this.ChanelRight = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl27 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl28 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl29 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl30 = new DevExpress.XtraEditors.LabelControl();
     this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl31 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.DaoDien = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.groupControlThongTin = new DevExpress.XtraEditors.GroupControl();
     this.gridControlGhiChu = new DevExpress.XtraGrid.GridControl();
     this.gridViewGhiChu = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.colLoaiGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNoiDungGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl34 = new DevExpress.XtraEditors.LabelControl();
     this.PhanLoaiDrama = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.NguonTrading = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.ClassName = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.Code = new DevExpress.XtraEditors.TextEdit();
     this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.Period = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.TrailerGoc = new DevExpress.XtraEditors.CheckEdit();
     this.Photos = new DevExpress.XtraEditors.CheckEdit();
     this.Script = new DevExpress.XtraEditors.CheckEdit();
     this.ckcMoiTrenThiTruong = new DevExpress.XtraEditors.CheckEdit();
     this.ckcTrongKho = new DevExpress.XtraEditors.CheckEdit();
     this.ThanhLy = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
     this.KyHieuXepKho_NoiDung = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.Ranking = new ProtocolVN.Framework.Win.PLDMGrid();
     this.DienVien = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.label24 = new DevExpress.XtraEditors.LabelControl();
     this.TuKhoaSelect = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.NgayAWB = new DevExpress.XtraEditors.DateEdit();
     this.TomTatNoiDung = new DevExpress.XtraEditors.MemoEdit();
     this.GhiChu = new DevExpress.XtraEditors.MemoEdit();
     this.TuKhoaText = new DevExpress.XtraEditors.MemoEdit();
     this.label20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.label33 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.label36 = new DevExpress.XtraEditors.LabelControl();
     this.Info = new ProtocolVN.Framework.Win.PLInfoBoxEtx();
     this.TinhTrangBang = new ProtocolVN.Framework.Win.PLDMGrid();
     this.TietMuc = new ProtocolVN.Framework.Win.PLDMGrid();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.MaChuongTrinh = new DevExpress.XtraEditors.TextEdit();
     this.label42 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabControlMain = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageChuongTrinh = new DevExpress.XtraTab.XtraTabPage();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
     this.popupMenuTab = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.flowLayoutPanel1.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).BeginInit();
     this.groupControlThongTinPhatSong.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).BeginInit();
     this.groupControlNguonGoc.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
     this.groupControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).BeginInit();
     this.groupControlThongTin.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
     this.groupControl8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).BeginInit();
     this.xtraTabControlMain.SuspendLayout();
     this.xtraTabPageChuongTrinh.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).BeginInit();
     this.SuspendLayout();
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.flowLayoutPanel1.Controls.Add(this.btnClose);
     this.flowLayoutPanel1.Controls.Add(this.btnDelete);
     this.flowLayoutPanel1.Controls.Add(this.btnDeleteRealy);
     this.flowLayoutPanel1.Controls.Add(this.btnRestore);
     this.flowLayoutPanel1.Controls.Add(this.btnSave);
     this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
     this.flowLayoutPanel1.Location = new System.Drawing.Point(626, 716);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(415, 31);
     this.flowLayoutPanel1.TabIndex = 4;
     //
     // btnClose
     //
     this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.Location = new System.Drawing.Point(337, 3);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex = 2;
     this.btnClose.Text = "Đ&óng";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnDelete
     //
     this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.Location = new System.Drawing.Point(256, 3);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 1;
     this.btnDelete.Text = "&Xóa";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnDeleteRealy
     //
     this.btnDeleteRealy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDeleteRealy.Location = new System.Drawing.Point(175, 3);
     this.btnDeleteRealy.Name = "btnDeleteRealy";
     this.btnDeleteRealy.Size = new System.Drawing.Size(75, 23);
     this.btnDeleteRealy.TabIndex = 1;
     this.btnDeleteRealy.Text = "&Xóa hẳn";
     this.btnDeleteRealy.Visible = false;
     this.btnDeleteRealy.Click += new System.EventHandler(this.btnDeleteRealy_Click);
     //
     // btnRestore
     //
     this.btnRestore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnRestore.Location = new System.Drawing.Point(94, 3);
     this.btnRestore.Name = "btnRestore";
     this.btnRestore.Size = new System.Drawing.Size(75, 23);
     this.btnRestore.TabIndex = 1;
     this.btnRestore.Text = "&Phục hồi";
     this.btnRestore.Visible = false;
     this.btnRestore.Click += new System.EventHandler(this.btnRestore_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.Location = new System.Drawing.Point(13, 3);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 0;
     this.btnSave.Text = "&Lưu";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // InPhieu
     //
     this.InPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.InPhieu.Location = new System.Drawing.Point(30, 3);
     this.InPhieu.Name = "InPhieu";
     this.InPhieu.Size = new System.Drawing.Size(81, 23);
     this.InPhieu.TabIndex = 1;
     this.InPhieu.Text = "&In nhãn";
     //
     // ctMnuInPhieu
     //
     this.ctMnuInPhieu.Name = "contextMenuStrip2";
     this.ctMnuInPhieu.Size = new System.Drawing.Size(61, 4);
     //
     // NghiepVu
     //
     this.NghiepVu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.NghiepVu.Location = new System.Drawing.Point(117, 3);
     this.NghiepVu.Name = "NghiepVu";
     this.NghiepVu.Size = new System.Drawing.Size(81, 23);
     this.NghiepVu.TabIndex = 2;
     this.NghiepVu.Text = "Nghiệp vụ";
     this.NghiepVu.Visible = false;
     //
     // ctMnuNghiepVu
     //
     this.ctMnuNghiepVu.Name = "contextMenuStrip3";
     this.ctMnuNghiepVu.Size = new System.Drawing.Size(61, 4);
     //
     // Duyet
     //
     this.Duyet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.Duyet.Enabled = false;
     this.Duyet.Location = new System.Drawing.Point(3, 6);
     this.Duyet.Name = "Duyet";
     this.Duyet.Size = new System.Drawing.Size(21, 20);
     this.Duyet.TabIndex = 0;
     this.Duyet.Visible = false;
     //
     // flowLayoutPanel2
     //
     this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.flowLayoutPanel2.Controls.Add(this.Duyet);
     this.flowLayoutPanel2.Controls.Add(this.InPhieu);
     this.flowLayoutPanel2.Controls.Add(this.NghiepVu);
     this.flowLayoutPanel2.Location = new System.Drawing.Point(6, 716);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.flowLayoutPanel2.Size = new System.Drawing.Size(218, 31);
     this.flowLayoutPanel2.TabIndex = 3;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(638, 52);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(40, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Tiết mục";
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(9, 76);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(82, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Tên chương trình";
     //
     // KyHieuPhanLoai
     //
     this.KyHieuPhanLoai.Location = new System.Drawing.Point(405, 165);
     this.KyHieuPhanLoai.Name = "KyHieuPhanLoai";
     this.KyHieuPhanLoai.Properties.Appearance.Options.UseTextOptions = true;
     this.KyHieuPhanLoai.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuPhanLoai.Size = new System.Drawing.Size(227, 20);
     this.KyHieuPhanLoai.TabIndex = 11;
     this.KyHieuPhanLoai.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // label21
     //
     this.label21.Location = new System.Drawing.Point(343, 168);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(24, 13);
     this.label21.TabIndex = 0;
     this.label21.Text = "KHPL";
     this.label21.ToolTip = "Ký hiệu phân loại";
     //
     // label22
     //
     this.label22.Appearance.ForeColor = System.Drawing.Color.Blue;
     this.label22.Appearance.Options.UseForeColor = true;
     this.label22.Location = new System.Drawing.Point(345, 191);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(25, 13);
     this.label22.TabIndex = 0;
     this.label22.Text = "KHXK";
     this.label22.ToolTip = "Ký hiệu xếp kho";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(5, 33);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(67, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "Đơn vị sở hữu";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(5, 10);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "Đơn vị cung cấp";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(9, 100);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(43, 13);
     this.label5.TabIndex = 0;
     this.label5.Text = "Đạo diễn";
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(639, 122);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(46, 13);
     this.label15.TabIndex = 0;
     this.label15.Text = "Rating TB";
     this.label15.ToolTip = "Rating trung bình";
     //
     // lblTitle
     //
     this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitle.Appearance.Options.UseFont = true;
     this.lblTitle.Appearance.Options.UseTextOptions = true;
     this.lblTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.lblTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
     this.lblTitle.Location = new System.Drawing.Point(0, 0);
     this.lblTitle.Name = "lblTitle";
     this.lblTitle.Size = new System.Drawing.Size(1049, 38);
     this.lblTitle.TabIndex = 0;
     this.lblTitle.Text = "CHƯƠNG TRÌNH";
     //
     // KyHieuXepKho_KHPL
     //
     this.KyHieuXepKho_KHPL.Location = new System.Drawing.Point(3, 1);
     this.KyHieuXepKho_KHPL.Name = "KyHieuXepKho_KHPL";
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_KHPL.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_KHPL.Properties.ReadOnly = true;
     this.KyHieuXepKho_KHPL.Size = new System.Drawing.Size(221, 18);
     this.KyHieuXepKho_KHPL.TabIndex = 0;
     this.KyHieuXepKho_KHPL.TabStop = false;
     //
     // groupControlThongTinPhatSong
     //
     this.groupControlThongTinPhatSong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTinPhatSong.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTinPhatSong.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseDate);
     this.groupControlThongTinPhatSong.Controls.Add(this.SoRunConlai);
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.Release);
     this.groupControlThongTinPhatSong.Controls.Add(this.SoDaRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.gridControlPhatSongKhac);
     this.groupControlThongTinPhatSong.Controls.Add(this.gridControlNgayPhatDauTien);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl8);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl9);
     this.groupControlThongTinPhatSong.Controls.Add(this.RunThu);
     this.groupControlThongTinPhatSong.Controls.Add(this.TongSoRun);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl20);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl19);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl6);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl24);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl21);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl15);
     this.groupControlThongTinPhatSong.Controls.Add(this.labelControl10);
     this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRule);
     this.groupControlThongTinPhatSong.Controls.Add(this.MuaKem);
     this.groupControlThongTinPhatSong.Location = new System.Drawing.Point(3, 672);
     this.groupControlThongTinPhatSong.Name = "groupControlThongTinPhatSong";
     this.groupControlThongTinPhatSong.Size = new System.Drawing.Size(1000, 351);
     this.groupControlThongTinPhatSong.TabIndex = 2;
     this.groupControlThongTinPhatSong.Text = "Thông tin phát sóng";
     //
     // ReleaseDate
     //
     this.ReleaseDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseDate.EditValue = null;
     this.ReleaseDate.Location = new System.Drawing.Point(840, 150);
     this.ReleaseDate.Name = "ReleaseDate";
     this.ReleaseDate.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.ReleaseDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ReleaseDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ReleaseDate.Size = new System.Drawing.Size(155, 20);
     this.ReleaseDate.TabIndex = 5;
     //
     // SoRunConlai
     //
     this.SoRunConlai.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SoRunConlai.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoRunConlai.Location = new System.Drawing.Point(840, 102);
     this.SoRunConlai.Name = "SoRunConlai";
     this.SoRunConlai.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoRunConlai.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoRunConlai.Properties.ReadOnly = true;
     this.SoRunConlai.Size = new System.Drawing.Size(155, 20);
     this.SoRunConlai.TabIndex = 4;
     this.SoRunConlai.TabStop = false;
     //
     // ReleaseRun
     //
     this.ReleaseRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.ReleaseRun.Location = new System.Drawing.Point(841, 175);
     this.ReleaseRun.Name = "ReleaseRun";
     this.ReleaseRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.ReleaseRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.ReleaseRun.Size = new System.Drawing.Size(154, 20);
     this.ReleaseRun.TabIndex = 5;
     //
     // Release
     //
     this.Release.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.Release.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.Release.Location = new System.Drawing.Point(840, 125);
     this.Release.Name = "Release";
     this.Release.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Release.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Release.Size = new System.Drawing.Size(155, 20);
     this.Release.TabIndex = 5;
     //
     // SoDaRun
     //
     this.SoDaRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SoDaRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.SoDaRun.Location = new System.Drawing.Point(840, 78);
     this.SoDaRun.Name = "SoDaRun";
     this.SoDaRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.SoDaRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.SoDaRun.Size = new System.Drawing.Size(155, 20);
     this.SoDaRun.TabIndex = 3;
     this.SoDaRun.TabStop = false;
     this.SoDaRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // gridControlPhatSongKhac
     //
     this.gridControlPhatSongKhac.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlPhatSongKhac.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlPhatSongKhac.BackgroundImage")));
     this.gridControlPhatSongKhac.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlPhatSongKhac.Location = new System.Drawing.Point(450, 32);
     this.gridControlPhatSongKhac.MainView = this.gridviewPhatSongKhac;
     this.gridControlPhatSongKhac.Name = "gridControlPhatSongKhac";
     this.gridControlPhatSongKhac.Size = new System.Drawing.Size(305, 314);
     this.gridControlPhatSongKhac.TabIndex = 1;
     this.gridControlPhatSongKhac.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridviewPhatSongKhac});
     //
     // gridviewPhatSongKhac
     //
     this.gridviewPhatSongKhac.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridviewPhatSongKhac.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridviewPhatSongKhac.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColPSK_Kenh,
     this.ColPSK_TuNgay,
     this.ColPSK_DenNgay,
     this.ColPSK_LanPhat});
     this.gridviewPhatSongKhac.GridControl = this.gridControlPhatSongKhac;
     this.gridviewPhatSongKhac.GroupCount = 1;
     this.gridviewPhatSongKhac.IndicatorWidth = 40;
     this.gridviewPhatSongKhac.Name = "gridviewPhatSongKhac";
     this.gridviewPhatSongKhac.OptionsLayout.Columns.AddNewColumns = false;
     this.gridviewPhatSongKhac.OptionsNavigation.AutoFocusNewRow = true;
     this.gridviewPhatSongKhac.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridviewPhatSongKhac.OptionsPrint.UsePrintStyles = true;
     this.gridviewPhatSongKhac.OptionsView.EnableAppearanceEvenRow = true;
     this.gridviewPhatSongKhac.OptionsView.EnableAppearanceOddRow = true;
     this.gridviewPhatSongKhac.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridviewPhatSongKhac.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridviewPhatSongKhac.OptionsView.ShowFooter = true;
     this.gridviewPhatSongKhac.OptionsView.ShowGroupedColumns = true;
     this.gridviewPhatSongKhac.OptionsView.ShowGroupPanel = false;
     this.gridviewPhatSongKhac.OptionsView.ShowIndicator = false;
     this.gridviewPhatSongKhac.OptionsView.ShowViewCaption = true;
     this.gridviewPhatSongKhac.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColPSK_Kenh, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridviewPhatSongKhac.ViewCaption = "Thời gian phát sóng trên các kênh khác";
     this.gridviewPhatSongKhac.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewPhatSongKhac_ValidateRow);
     //
     // ColPSK_Kenh
     //
     this.ColPSK_Kenh.Caption = "Kênh phát sóng";
     this.ColPSK_Kenh.Name = "ColPSK_Kenh";
     this.ColPSK_Kenh.SummaryItem.DisplayFormat = "Số lần đã phát {0}";
     this.ColPSK_Kenh.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColPSK_Kenh.Visible = true;
     this.ColPSK_Kenh.VisibleIndex = 0;
     this.ColPSK_Kenh.Width = 100;
     //
     // ColPSK_TuNgay
     //
     this.ColPSK_TuNgay.Caption = "Từ ngày";
     this.ColPSK_TuNgay.Name = "ColPSK_TuNgay";
     this.ColPSK_TuNgay.Visible = true;
     this.ColPSK_TuNgay.VisibleIndex = 1;
     this.ColPSK_TuNgay.Width = 52;
     //
     // ColPSK_DenNgay
     //
     this.ColPSK_DenNgay.Caption = "Đến ngày";
     this.ColPSK_DenNgay.Name = "ColPSK_DenNgay";
     this.ColPSK_DenNgay.Visible = true;
     this.ColPSK_DenNgay.VisibleIndex = 2;
     this.ColPSK_DenNgay.Width = 59;
     //
     // ColPSK_LanPhat
     //
     this.ColPSK_LanPhat.Caption = "Run thứ";
     this.ColPSK_LanPhat.Name = "ColPSK_LanPhat";
     this.ColPSK_LanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}";
     this.ColPSK_LanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.ColPSK_LanPhat.Visible = true;
     this.ColPSK_LanPhat.VisibleIndex = 3;
     this.ColPSK_LanPhat.Width = 52;
     //
     // gridControlNgayPhatDauTien
     //
     this.gridControlNgayPhatDauTien.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlNgayPhatDauTien.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlNgayPhatDauTien.BackgroundImage")));
     this.gridControlNgayPhatDauTien.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlNgayPhatDauTien.Location = new System.Drawing.Point(6, 32);
     this.gridControlNgayPhatDauTien.MainView = this.gridViewNgayPhatDauTien;
     this.gridControlNgayPhatDauTien.Name = "gridControlNgayPhatDauTien";
     this.gridControlNgayPhatDauTien.Size = new System.Drawing.Size(436, 314);
     this.gridControlNgayPhatDauTien.TabIndex = 0;
     this.gridControlNgayPhatDauTien.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewNgayPhatDauTien});
     //
     // gridViewNgayPhatDauTien
     //
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewNgayPhatDauTien.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColKenhPhatSong,
     this.ColIsPhatLai,
     this.ColNgayPhatStart,
     this.ColNgayPhatEnd,
     this.ColTimeSlot,
     this.ColLanPhat});
     this.gridViewNgayPhatDauTien.GridControl = this.gridControlNgayPhatDauTien;
     this.gridViewNgayPhatDauTien.GroupCount = 1;
     this.gridViewNgayPhatDauTien.IndicatorWidth = 40;
     this.gridViewNgayPhatDauTien.Name = "gridViewNgayPhatDauTien";
     this.gridViewNgayPhatDauTien.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewNgayPhatDauTien.OptionsMenu.EnableFooterMenu = false;
     this.gridViewNgayPhatDauTien.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewNgayPhatDauTien.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewNgayPhatDauTien.OptionsPrint.UsePrintStyles = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewNgayPhatDauTien.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewNgayPhatDauTien.OptionsView.ShowFooter = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupedColumns = true;
     this.gridViewNgayPhatDauTien.OptionsView.ShowGroupPanel = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowIndicator = false;
     this.gridViewNgayPhatDauTien.OptionsView.ShowViewCaption = true;
     this.gridViewNgayPhatDauTien.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhPhatSong, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewNgayPhatDauTien.ViewCaption = "Ngày phát sóng đầu tiên";
     this.gridViewNgayPhatDauTien.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewNgayPhatDauTien_CustomDrawGroupRow);
     this.gridViewNgayPhatDauTien.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridViewNgayPhatDauTien_RowUpdated);
     this.gridViewNgayPhatDauTien.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewNgayPhatDauTien_ValidateRow);
     //
     // ColKenhPhatSong
     //
     this.ColKenhPhatSong.Caption = "Kênh";
     this.ColKenhPhatSong.Name = "ColKenhPhatSong";
     this.ColKenhPhatSong.SummaryItem.DisplayFormat = "Phát chính: {0} lần";
     this.ColKenhPhatSong.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColKenhPhatSong.Visible = true;
     this.ColKenhPhatSong.VisibleIndex = 0;
     this.ColKenhPhatSong.Width = 83;
     //
     // ColIsPhatLai
     //
     this.ColIsPhatLai.Caption = "Phát lại";
     this.ColIsPhatLai.Name = "ColIsPhatLai";
     this.ColIsPhatLai.SummaryItem.DisplayFormat = "Phát lại: {0} lần";
     this.ColIsPhatLai.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColIsPhatLai.Visible = true;
     this.ColIsPhatLai.VisibleIndex = 1;
     this.ColIsPhatLai.Width = 68;
     //
     // ColNgayPhatStart
     //
     this.ColNgayPhatStart.Caption = "Từ ngày";
     this.ColNgayPhatStart.Name = "ColNgayPhatStart";
     this.ColNgayPhatStart.Visible = true;
     this.ColNgayPhatStart.VisibleIndex = 2;
     this.ColNgayPhatStart.Width = 52;
     //
     // ColNgayPhatEnd
     //
     this.ColNgayPhatEnd.Caption = "Đến ngày";
     this.ColNgayPhatEnd.Name = "ColNgayPhatEnd";
     this.ColNgayPhatEnd.Visible = true;
     this.ColNgayPhatEnd.VisibleIndex = 3;
     this.ColNgayPhatEnd.Width = 59;
     //
     // ColTimeSlot
     //
     this.ColTimeSlot.Caption = "Timeslot";
     this.ColTimeSlot.Name = "ColTimeSlot";
     this.ColTimeSlot.Visible = true;
     this.ColTimeSlot.VisibleIndex = 4;
     this.ColTimeSlot.Width = 51;
     //
     // ColLanPhat
     //
     this.ColLanPhat.Caption = "Run thứ";
     this.ColLanPhat.Name = "ColLanPhat";
     this.ColLanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}";
     this.ColLanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.ColLanPhat.Visible = true;
     this.ColLanPhat.VisibleIndex = 5;
     this.ColLanPhat.Width = 52;
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl8.Location = new System.Drawing.Point(760, 105);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(52, 13);
     this.labelControl8.TabIndex = 137;
     this.labelControl8.Text = "Run còn lại";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.Location = new System.Drawing.Point(760, 81);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(49, 13);
     this.labelControl9.TabIndex = 137;
     this.labelControl9.Text = "Số đã Run";
     //
     // RunThu
     //
     this.RunThu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.RunThu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.RunThu.Location = new System.Drawing.Point(840, 32);
     this.RunThu.Name = "RunThu";
     this.RunThu.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.RunThu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.RunThu.Size = new System.Drawing.Size(155, 20);
     this.RunThu.TabIndex = 2;
     this.RunThu.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // TongSoRun
     //
     this.TongSoRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.TongSoRun.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.TongSoRun.Location = new System.Drawing.Point(840, 55);
     this.TongSoRun.Name = "TongSoRun";
     this.TongSoRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.TongSoRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TongSoRun.Size = new System.Drawing.Size(155, 20);
     this.TongSoRun.TabIndex = 2;
     this.TongSoRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged);
     //
     // labelControl20
     //
     this.labelControl20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl20.Location = new System.Drawing.Point(760, 178);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(57, 13);
     this.labelControl20.TabIndex = 129;
     this.labelControl20.Text = "Release run";
     //
     // labelControl19
     //
     this.labelControl19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl19.Location = new System.Drawing.Point(760, 151);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(63, 13);
     this.labelControl19.TabIndex = 129;
     this.labelControl19.Text = "Release date";
     //
     // labelControl6
     //
     this.labelControl6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl6.Location = new System.Drawing.Point(760, 127);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(74, 13);
     this.labelControl6.TabIndex = 129;
     this.labelControl6.Text = "Release (Ngày)";
     //
     // labelControl24
     //
     this.labelControl24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl24.Location = new System.Drawing.Point(760, 205);
     this.labelControl24.Name = "labelControl24";
     this.labelControl24.Size = new System.Drawing.Size(53, 13);
     this.labelControl24.TabIndex = 137;
     this.labelControl24.Text = "Realse rule";
     //
     // labelControl21
     //
     this.labelControl21.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl21.Location = new System.Drawing.Point(760, 276);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(42, 13);
     this.labelControl21.TabIndex = 137;
     this.labelControl21.Text = "Mua kèm";
     //
     // labelControl15
     //
     this.labelControl15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl15.Location = new System.Drawing.Point(760, 36);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(39, 13);
     this.labelControl15.TabIndex = 137;
     this.labelControl15.Text = "Run thứ";
     //
     // labelControl10
     //
     this.labelControl10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl10.Location = new System.Drawing.Point(760, 57);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(60, 13);
     this.labelControl10.TabIndex = 137;
     this.labelControl10.Text = "Tổng số Run";
     //
     // ReleaseRule
     //
     this.ReleaseRule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ReleaseRule.Location = new System.Drawing.Point(841, 201);
     this.ReleaseRule.Name = "ReleaseRule";
     this.ReleaseRule.Size = new System.Drawing.Size(152, 70);
     this.ReleaseRule.TabIndex = 6;
     //
     // MuaKem
     //
     this.MuaKem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.MuaKem.Location = new System.Drawing.Point(841, 277);
     this.MuaKem.Name = "MuaKem";
     this.MuaKem.Size = new System.Drawing.Size(155, 69);
     this.MuaKem.TabIndex = 6;
     //
     // Rating
     //
     this.Rating.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Rating.Location = new System.Drawing.Point(690, 120);
     this.Rating.Name = "Rating";
     this.Rating.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.Rating.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Rating.Size = new System.Drawing.Size(303, 20);
     this.Rating.TabIndex = 12;
     //
     // DoiTuongKhanGia
     //
     this.DoiTuongKhanGia.DataSource = null;
     this.DoiTuongKhanGia.DisplayField = null;
     this.DoiTuongKhanGia.EditValue = "";
     this.DoiTuongKhanGia.Location = new System.Drawing.Point(93, 120);
     this.DoiTuongKhanGia.Name = "DoiTuongKhanGia";
     this.DoiTuongKhanGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DoiTuongKhanGia.Size = new System.Drawing.Size(241, 20);
     this.DoiTuongKhanGia.TabIndex = 10;
     this.DoiTuongKhanGia.ValueField = null;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(9, 124);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(57, 13);
     this.label14.TabIndex = 0;
     this.label14.Text = "ĐT khán giả";
     //
     // groupControlNguonGoc
     //
     this.groupControlNguonGoc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlNguonGoc.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlNguonGoc.AppearanceCaption.Options.UseFont = true;
     this.groupControlNguonGoc.Controls.Add(this.NoteBQ);
     this.groupControlNguonGoc.Controls.Add(this.gridControlThongTinBan);
     this.groupControlNguonGoc.Controls.Add(this.groupControl7);
     this.groupControlNguonGoc.Controls.Add(this.labelControl17);
     this.groupControlNguonGoc.Controls.Add(this.groupControl1);
     this.groupControlNguonGoc.Controls.Add(this.labelControl14);
     this.groupControlNguonGoc.Location = new System.Drawing.Point(4, 425);
     this.groupControlNguonGoc.Name = "groupControlNguonGoc";
     this.groupControlNguonGoc.Size = new System.Drawing.Size(999, 228);
     this.groupControlNguonGoc.TabIndex = 1;
     this.groupControlNguonGoc.Text = "Nguồn gốc - bản quyền";
     //
     // NoteBQ
     //
     this.NoteBQ.Location = new System.Drawing.Point(95, 180);
     this.NoteBQ.Name = "NoteBQ";
     this.NoteBQ.Size = new System.Drawing.Size(539, 43);
     this.NoteBQ.TabIndex = 136;
     //
     // gridControlThongTinBan
     //
     this.gridControlThongTinBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlThongTinBan.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlThongTinBan.BackgroundImage")));
     this.gridControlThongTinBan.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlThongTinBan.Location = new System.Drawing.Point(645, 29);
     this.gridControlThongTinBan.MainView = this.gridViewThongTinBan;
     this.gridControlThongTinBan.Name = "gridControlThongTinBan";
     this.gridControlThongTinBan.Size = new System.Drawing.Size(350, 194);
     this.gridControlThongTinBan.TabIndex = 2;
     this.gridControlThongTinBan.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewThongTinBan});
     //
     // gridViewThongTinBan
     //
     this.gridViewThongTinBan.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewThongTinBan.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewThongTinBan.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColKenhBan,
     this.ColNgayBanTu,
     this.ColNgayBanDen});
     this.gridViewThongTinBan.GridControl = this.gridControlThongTinBan;
     this.gridViewThongTinBan.GroupCount = 1;
     this.gridViewThongTinBan.IndicatorWidth = 40;
     this.gridViewThongTinBan.Name = "gridViewThongTinBan";
     this.gridViewThongTinBan.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewThongTinBan.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewThongTinBan.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewThongTinBan.OptionsPrint.UsePrintStyles = true;
     this.gridViewThongTinBan.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewThongTinBan.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewThongTinBan.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewThongTinBan.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewThongTinBan.OptionsView.ShowGroupedColumns = true;
     this.gridViewThongTinBan.OptionsView.ShowGroupPanel = false;
     this.gridViewThongTinBan.OptionsView.ShowIndicator = false;
     this.gridViewThongTinBan.OptionsView.ShowViewCaption = true;
     this.gridViewThongTinBan.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhBan, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewThongTinBan.ViewCaption = "Thông tin bán";
     this.gridViewThongTinBan.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewThongTinBan_CustomDrawGroupRow);
     this.gridViewThongTinBan.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewThongTinBan_ValidateRow);
     //
     // ColKenhBan
     //
     this.ColKenhBan.Caption = "Kênh bán";
     this.ColKenhBan.Name = "ColKenhBan";
     this.ColKenhBan.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}";
     this.ColKenhBan.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.ColKenhBan.Visible = true;
     this.ColKenhBan.VisibleIndex = 0;
     this.ColKenhBan.Width = 70;
     //
     // ColNgayBanTu
     //
     this.ColNgayBanTu.Caption = "Từ ngày";
     this.ColNgayBanTu.Name = "ColNgayBanTu";
     this.ColNgayBanTu.Visible = true;
     this.ColNgayBanTu.VisibleIndex = 1;
     this.ColNgayBanTu.Width = 52;
     //
     // ColNgayBanDen
     //
     this.ColNgayBanDen.Caption = "Đên ngày";
     this.ColNgayBanDen.Name = "ColNgayBanDen";
     this.ColNgayBanDen.Visible = true;
     this.ColNgayBanDen.VisibleIndex = 2;
     this.ColNgayBanDen.Width = 59;
     //
     // groupControl7
     //
     this.groupControl7.Controls.Add(this.DonViHauKy);
     this.groupControl7.Controls.Add(this.HangSanXuat);
     this.groupControl7.Controls.Add(this.DonViSoHuu);
     this.groupControl7.Controls.Add(this.NamSanXuat);
     this.groupControl7.Controls.Add(this.label4);
     this.groupControl7.Controls.Add(this.label2);
     this.groupControl7.Controls.Add(this.labelControl33);
     this.groupControl7.Controls.Add(this.labelControl32);
     this.groupControl7.Controls.Add(this.labelControl4);
     this.groupControl7.Controls.Add(this.labelControl7);
     this.groupControl7.Controls.Add(this.QuocGia);
     this.groupControl7.Controls.Add(this.label25);
     this.groupControl7.Controls.Add(this.KenhHanCheBan);
     this.groupControl7.Controls.Add(this.DonViCungCap);
     this.groupControl7.Location = new System.Drawing.Point(2, 29);
     this.groupControl7.Name = "groupControl7";
     this.groupControl7.ShowCaption = false;
     this.groupControl7.Size = new System.Drawing.Size(338, 147);
     this.groupControl7.TabIndex = 0;
     this.groupControl7.Text = "groupControl7";
     //
     // DonViHauKy
     //
     this.DonViHauKy._DataSource = null;
     this.DonViHauKy._GetField = null;
     this.DonViHauKy.Location = new System.Drawing.Point(92, 53);
     this.DonViHauKy.Name = "DonViHauKy";
     this.DonViHauKy.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.DonViHauKy.Size = new System.Drawing.Size(241, 20);
     this.DonViHauKy.TabIndex = 133;
     //
     // HangSanXuat
     //
     this.HangSanXuat.Location = new System.Drawing.Point(92, 78);
     this.HangSanXuat.Name = "HangSanXuat";
     this.HangSanXuat.Size = new System.Drawing.Size(241, 20);
     this.HangSanXuat.TabIndex = 1;
     this.HangSanXuat.ZZZWidthFactor = 2F;
     //
     // DonViSoHuu
     //
     this.DonViSoHuu.Location = new System.Drawing.Point(92, 31);
     this.DonViSoHuu.Name = "DonViSoHuu";
     this.DonViSoHuu.Size = new System.Drawing.Size(241, 20);
     this.DonViSoHuu.TabIndex = 1;
     this.DonViSoHuu.ZZZWidthFactor = 2F;
     //
     // NamSanXuat
     //
     this.NamSanXuat.EditValue = new decimal(new int[] {
     1999,
     0,
     0,
     0});
     this.NamSanXuat.Location = new System.Drawing.Point(278, 101);
     this.NamSanXuat.Name = "NamSanXuat";
     this.NamSanXuat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSanXuat.Properties.Mask.EditMask = "n0";
     this.NamSanXuat.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.NamSanXuat.Properties.MaxValue = new decimal(new int[] {
     -1530494977,
     232830,
     0,
     0});
     this.NamSanXuat.Size = new System.Drawing.Size(55, 20);
     this.NamSanXuat.TabIndex = 3;
     //
     // labelControl33
     //
     this.labelControl33.Location = new System.Drawing.Point(6, 81);
     this.labelControl33.Name = "labelControl33";
     this.labelControl33.Size = new System.Drawing.Size(70, 13);
     this.labelControl33.TabIndex = 0;
     this.labelControl33.Text = "Hãng sản xuất";
     //
     // labelControl32
     //
     this.labelControl32.Location = new System.Drawing.Point(5, 55);
     this.labelControl32.Name = "labelControl32";
     this.labelControl32.Size = new System.Drawing.Size(66, 13);
     this.labelControl32.TabIndex = 0;
     this.labelControl32.Text = "Đơn vị hậu kỳ";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(5, 104);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(70, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "Nước sản xuất";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(5, 127);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(86, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "Kênh hạn chế bán";
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.EditValue = "";
     this.QuocGia.Location = new System.Drawing.Point(92, 101);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(137, 20);
     this.QuocGia.TabIndex = 2;
     this.QuocGia.ValueField = null;
     //
     // label25
     //
     this.label25.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Appearance.ForeColor = System.Drawing.Color.Black;
     this.label25.Appearance.Options.UseFont = true;
     this.label25.Appearance.Options.UseForeColor = true;
     this.label25.Location = new System.Drawing.Point(236, 104);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(36, 13);
     this.label25.TabIndex = 0;
     this.label25.Text = "Năm SX";
     //
     // KenhHanCheBan
     //
     this.KenhHanCheBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.KenhHanCheBan.DataSource = null;
     this.KenhHanCheBan.DisplayField = null;
     this.KenhHanCheBan.EditValue = "";
     this.KenhHanCheBan.Location = new System.Drawing.Point(92, 123);
     this.KenhHanCheBan.Name = "KenhHanCheBan";
     this.KenhHanCheBan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.KenhHanCheBan.Size = new System.Drawing.Size(241, 20);
     this.KenhHanCheBan.TabIndex = 4;
     this.KenhHanCheBan.ValueField = null;
     //
     // DonViCungCap
     //
     this.DonViCungCap.Location = new System.Drawing.Point(92, 8);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Size = new System.Drawing.Size(241, 20);
     this.DonViCungCap.TabIndex = 0;
     this.DonViCungCap.ZZZWidthFactor = 2F;
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(436, 23);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(95, 13);
     this.labelControl17.TabIndex = 0;
     this.labelControl17.Text = "Thời hạn bản quyền";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.BanQuyenHTV);
     this.groupControl1.Controls.Add(this.BanQuyenDIDEnd);
     this.groupControl1.Controls.Add(this.BanQuyenDTNNEnd);
     this.groupControl1.Controls.Add(this.BanQuyenDIDStart);
     this.groupControl1.Controls.Add(this.BanQuyenDTNNStart);
     this.groupControl1.Controls.Add(this.ChanelRight);
     this.groupControl1.Controls.Add(this.labelControl25);
     this.groupControl1.Controls.Add(this.labelControl26);
     this.groupControl1.Controls.Add(this.labelControl27);
     this.groupControl1.Controls.Add(this.labelControl28);
     this.groupControl1.Controls.Add(this.labelControl29);
     this.groupControl1.Controls.Add(this.labelControl30);
     this.groupControl1.Controls.Add(this.BanQuyenThuoc);
     this.groupControl1.Controls.Add(this.labelControl31);
     this.groupControl1.Location = new System.Drawing.Point(345, 29);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(289, 145);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text = "groupControl5";
     //
     // BanQuyenHTV
     //
     this.BanQuyenHTV.EditValue = null;
     this.BanQuyenHTV.Location = new System.Drawing.Point(72, 83);
     this.BanQuyenHTV.Name = "BanQuyenHTV";
     this.BanQuyenHTV.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenHTV.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenHTV.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenHTV.Size = new System.Drawing.Size(213, 20);
     this.BanQuyenHTV.TabIndex = 5;
     //
     // BanQuyenDIDEnd
     //
     this.BanQuyenDIDEnd.EditValue = null;
     this.BanQuyenDIDEnd.Location = new System.Drawing.Point(192, 38);
     this.BanQuyenDIDEnd.Name = "BanQuyenDIDEnd";
     this.BanQuyenDIDEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDIDEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDIDEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDIDEnd.Size = new System.Drawing.Size(94, 20);
     this.BanQuyenDIDEnd.TabIndex = 2;
     this.BanQuyenDIDEnd.ToolTip = "Bản quyền đối với đối tác trong nước End";
     //
     // BanQuyenDTNNEnd
     //
     this.BanQuyenDTNNEnd.EditValue = null;
     this.BanQuyenDTNNEnd.Location = new System.Drawing.Point(192, 60);
     this.BanQuyenDTNNEnd.Name = "BanQuyenDTNNEnd";
     this.BanQuyenDTNNEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDTNNEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDTNNEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDTNNEnd.Size = new System.Drawing.Size(94, 20);
     this.BanQuyenDTNNEnd.TabIndex = 4;
     this.BanQuyenDTNNEnd.ToolTip = "Bản quyền với đối tác nước ngoài end";
     //
     // BanQuyenDIDStart
     //
     this.BanQuyenDIDStart.EditValue = null;
     this.BanQuyenDIDStart.Location = new System.Drawing.Point(71, 38);
     this.BanQuyenDIDStart.Name = "BanQuyenDIDStart";
     this.BanQuyenDIDStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDIDStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDIDStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDIDStart.Size = new System.Drawing.Size(91, 20);
     this.BanQuyenDIDStart.TabIndex = 1;
     this.BanQuyenDIDStart.ToolTip = "Bản quyền đối với đối tác trong nước start";
     //
     // BanQuyenDTNNStart
     //
     this.BanQuyenDTNNStart.EditValue = null;
     this.BanQuyenDTNNStart.Location = new System.Drawing.Point(71, 60);
     this.BanQuyenDTNNStart.Name = "BanQuyenDTNNStart";
     this.BanQuyenDTNNStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.BanQuyenDTNNStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.BanQuyenDTNNStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.BanQuyenDTNNStart.Size = new System.Drawing.Size(90, 20);
     this.BanQuyenDTNNStart.TabIndex = 3;
     //
     // ChanelRight
     //
     this.ChanelRight.DataSource = null;
     this.ChanelRight.DisplayField = null;
     this.ChanelRight.EditValue = "";
     this.ChanelRight.Location = new System.Drawing.Point(72, 106);
     this.ChanelRight.Name = "ChanelRight";
     this.ChanelRight.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ChanelRight.Size = new System.Drawing.Size(213, 20);
     this.ChanelRight.TabIndex = 11;
     this.ChanelRight.ValueField = null;
     //
     // labelControl25
     //
     this.labelControl25.Location = new System.Drawing.Point(2, 110);
     this.labelControl25.Name = "labelControl25";
     this.labelControl25.Size = new System.Drawing.Size(64, 13);
     this.labelControl25.TabIndex = 0;
     this.labelControl25.Text = "Channel right";
     //
     // labelControl26
     //
     this.labelControl26.Location = new System.Drawing.Point(3, 20);
     this.labelControl26.Name = "labelControl26";
     this.labelControl26.Size = new System.Drawing.Size(44, 13);
     this.labelControl26.TabIndex = 0;
     this.labelControl26.Text = "BQ thuộc";
     this.labelControl26.ToolTip = "Bản quyền thuộc";
     //
     // labelControl27
     //
     this.labelControl27.Location = new System.Drawing.Point(3, 87);
     this.labelControl27.Name = "labelControl27";
     this.labelControl27.Size = new System.Drawing.Size(19, 13);
     this.labelControl27.TabIndex = 0;
     this.labelControl27.Text = "HTV";
     this.labelControl27.ToolTip = "Bản quyền HTV";
     //
     // labelControl28
     //
     this.labelControl28.Location = new System.Drawing.Point(3, 64);
     this.labelControl28.Name = "labelControl28";
     this.labelControl28.Size = new System.Drawing.Size(54, 13);
     this.labelControl28.TabIndex = 0;
     this.labelControl28.Text = "DTNN Start";
     this.labelControl28.ToolTip = "Bản quyền với đối tác nước ngoài Start";
     //
     // labelControl29
     //
     this.labelControl29.Location = new System.Drawing.Point(3, 42);
     this.labelControl29.Name = "labelControl29";
     this.labelControl29.Size = new System.Drawing.Size(53, 13);
     this.labelControl29.TabIndex = 0;
     this.labelControl29.Text = "DTTN Start";
     //
     // labelControl30
     //
     this.labelControl30.Location = new System.Drawing.Point(169, 64);
     this.labelControl30.Name = "labelControl30";
     this.labelControl30.Size = new System.Drawing.Size(18, 13);
     this.labelControl30.TabIndex = 0;
     this.labelControl30.Text = "End";
     //
     // BanQuyenThuoc
     //
     this.BanQuyenThuoc.Location = new System.Drawing.Point(71, 16);
     this.BanQuyenThuoc.Name = "BanQuyenThuoc";
     this.BanQuyenThuoc.Size = new System.Drawing.Size(217, 20);
     this.BanQuyenThuoc.TabIndex = 0;
     this.BanQuyenThuoc.ZZZWidthFactor = 2F;
     //
     // labelControl31
     //
     this.labelControl31.Location = new System.Drawing.Point(169, 42);
     this.labelControl31.Name = "labelControl31";
     this.labelControl31.Size = new System.Drawing.Size(18, 13);
     this.labelControl31.TabIndex = 0;
     this.labelControl31.Text = "End";
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(6, 182);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(40, 13);
     this.labelControl14.TabIndex = 0;
     this.labelControl14.Text = "Note BQ";
     //
     // DaoDien
     //
     this.DaoDien.DataSource = null;
     this.DaoDien.DisplayField = null;
     this.DaoDien.EditValue = "";
     this.DaoDien.Location = new System.Drawing.Point(93, 96);
     this.DaoDien.Name = "DaoDien";
     this.DaoDien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DaoDien.Size = new System.Drawing.Size(239, 20);
     this.DaoDien.TabIndex = 7;
     this.DaoDien.ValueField = null;
     //
     // groupControlThongTin
     //
     this.groupControlThongTin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControlThongTin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlThongTin.AppearanceCaption.Options.UseFont = true;
     this.groupControlThongTin.Controls.Add(this.gridControlGhiChu);
     this.groupControlThongTin.Controls.Add(this.labelControl34);
     this.groupControlThongTin.Controls.Add(this.PhanLoaiDrama);
     this.groupControlThongTin.Controls.Add(this.labelControl18);
     this.groupControlThongTin.Controls.Add(this.NguonTrading);
     this.groupControlThongTin.Controls.Add(this.ClassName);
     this.groupControlThongTin.Controls.Add(this.labelControl23);
     this.groupControlThongTin.Controls.Add(this.labelControl13);
     this.groupControlThongTin.Controls.Add(this.Code);
     this.groupControlThongTin.Controls.Add(this.TenGoc);
     this.groupControlThongTin.Controls.Add(this.NoiDung);
     this.groupControlThongTin.Controls.Add(this.Period);
     this.groupControlThongTin.Controls.Add(this.Category);
     this.groupControlThongTin.Controls.Add(this.TrailerGoc);
     this.groupControlThongTin.Controls.Add(this.Photos);
     this.groupControlThongTin.Controls.Add(this.Script);
     this.groupControlThongTin.Controls.Add(this.ckcMoiTrenThiTruong);
     this.groupControlThongTin.Controls.Add(this.ckcTrongKho);
     this.groupControlThongTin.Controls.Add(this.ThanhLy);
     this.groupControlThongTin.Controls.Add(this.groupControl8);
     this.groupControlThongTin.Controls.Add(this.label22);
     this.groupControlThongTin.Controls.Add(this.Ranking);
     this.groupControlThongTin.Controls.Add(this.Rating);
     this.groupControlThongTin.Controls.Add(this.DienVien);
     this.groupControlThongTin.Controls.Add(this.DaoDien);
     this.groupControlThongTin.Controls.Add(this.KyHieuPhanLoai);
     this.groupControlThongTin.Controls.Add(this.labelControl22);
     this.groupControlThongTin.Controls.Add(this.labelControl16);
     this.groupControlThongTin.Controls.Add(this.label21);
     this.groupControlThongTin.Controls.Add(this.labelControl12);
     this.groupControlThongTin.Controls.Add(this.label15);
     this.groupControlThongTin.Controls.Add(this.label5);
     this.groupControlThongTin.Controls.Add(this.label24);
     this.groupControlThongTin.Controls.Add(this.TuKhoaSelect);
     this.groupControlThongTin.Controls.Add(this.DoiTuongKhanGia);
     this.groupControlThongTin.Controls.Add(this.labelControl11);
     this.groupControlThongTin.Controls.Add(this.label14);
     this.groupControlThongTin.Controls.Add(this.NgayAWB);
     this.groupControlThongTin.Controls.Add(this.TomTatNoiDung);
     this.groupControlThongTin.Controls.Add(this.GhiChu);
     this.groupControlThongTin.Controls.Add(this.TuKhoaText);
     this.groupControlThongTin.Controls.Add(this.label20);
     this.groupControlThongTin.Controls.Add(this.labelControl2);
     this.groupControlThongTin.Controls.Add(this.label33);
     this.groupControlThongTin.Controls.Add(this.labelControl5);
     this.groupControlThongTin.Controls.Add(this.label36);
     this.groupControlThongTin.Controls.Add(this.Info);
     this.groupControlThongTin.Controls.Add(this.TinhTrangBang);
     this.groupControlThongTin.Controls.Add(this.TietMuc);
     this.groupControlThongTin.Controls.Add(this.labelControl3);
     this.groupControlThongTin.Controls.Add(this.MaChuongTrinh);
     this.groupControlThongTin.Controls.Add(this.label7);
     this.groupControlThongTin.Controls.Add(this.label42);
     this.groupControlThongTin.Controls.Add(this.labelControl1);
     this.groupControlThongTin.Controls.Add(this.label8);
     this.groupControlThongTin.Location = new System.Drawing.Point(3, 0);
     this.groupControlThongTin.Name = "groupControlThongTin";
     this.groupControlThongTin.Size = new System.Drawing.Size(1000, 410);
     this.groupControlThongTin.TabIndex = 0;
     this.groupControlThongTin.Text = "Thông tin chính";
     //
     // gridControlGhiChu
     //
     this.gridControlGhiChu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControlGhiChu.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlGhiChu.BackgroundImage")));
     this.gridControlGhiChu.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlGhiChu.Location = new System.Drawing.Point(405, 241);
     this.gridControlGhiChu.MainView = this.gridViewGhiChu;
     this.gridControlGhiChu.Name = "gridControlGhiChu";
     this.gridControlGhiChu.Size = new System.Drawing.Size(588, 152);
     this.gridControlGhiChu.TabIndex = 138;
     this.gridControlGhiChu.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewGhiChu});
     //
     // gridViewGhiChu
     //
     this.gridViewGhiChu.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewGhiChu.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewGhiChu.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colLoaiGhiChu,
     this.colNoiDungGhiChu});
     this.gridViewGhiChu.GridControl = this.gridControlGhiChu;
     this.gridViewGhiChu.IndicatorWidth = 40;
     this.gridViewGhiChu.Name = "gridViewGhiChu";
     this.gridViewGhiChu.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewGhiChu.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewGhiChu.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewGhiChu.OptionsPrint.UsePrintStyles = true;
     this.gridViewGhiChu.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewGhiChu.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewGhiChu.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top;
     this.gridViewGhiChu.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewGhiChu.OptionsView.ShowGroupedColumns = true;
     this.gridViewGhiChu.OptionsView.ShowGroupPanel = false;
     this.gridViewGhiChu.OptionsView.ShowIndicator = false;
     this.gridViewGhiChu.ViewCaption = "Thông tin bán";
     //
     // colLoaiGhiChu
     //
     this.colLoaiGhiChu.Caption = "Loại ghi chú";
     this.colLoaiGhiChu.Name = "colLoaiGhiChu";
     this.colLoaiGhiChu.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}";
     this.colLoaiGhiChu.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
     this.colLoaiGhiChu.Visible = true;
     this.colLoaiGhiChu.VisibleIndex = 0;
     this.colLoaiGhiChu.Width = 68;
     //
     // colNoiDungGhiChu
     //
     this.colNoiDungGhiChu.Caption = "Nội dung";
     this.colNoiDungGhiChu.Name = "colNoiDungGhiChu";
     this.colNoiDungGhiChu.Visible = true;
     this.colNoiDungGhiChu.VisibleIndex = 1;
     this.colNoiDungGhiChu.Width = 54;
     //
     // labelControl34
     //
     this.labelControl34.Location = new System.Drawing.Point(342, 245);
     this.labelControl34.Name = "labelControl34";
     this.labelControl34.Size = new System.Drawing.Size(60, 13);
     this.labelControl34.TabIndex = 139;
     this.labelControl34.Text = "Ghi chú khác";
     //
     // PhanLoaiDrama
     //
     this.PhanLoaiDrama._DataSource = null;
     this.PhanLoaiDrama._GetField = null;
     this.PhanLoaiDrama.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.PhanLoaiDrama.Location = new System.Drawing.Point(690, 142);
     this.PhanLoaiDrama.MenuManager = this.barManager1;
     this.PhanLoaiDrama.Name = "PhanLoaiDrama";
     this.PhanLoaiDrama.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)});
     this.PhanLoaiDrama.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.PhanLoaiDrama.Size = new System.Drawing.Size(303, 20);
     this.PhanLoaiDrama.TabIndex = 137;
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.MaxItemId = 2;
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1049, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 750);
     this.barDockControlBottom.Size = new System.Drawing.Size(1049, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 750);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1049, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 750);
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(639, 144);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(49, 13);
     this.labelControl18.TabIndex = 136;
     this.labelControl18.Text = "P/L Drama";
     this.labelControl18.ToolTip = "Phân loại Drama";
     //
     // NguonTrading
     //
     this.NguonTrading._DataSource = null;
     this.NguonTrading._GetField = null;
     this.NguonTrading.Location = new System.Drawing.Point(93, 191);
     this.NguonTrading.Name = "NguonTrading";
     this.NguonTrading.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, false)});
     this.NguonTrading.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NguonTrading.Size = new System.Drawing.Size(239, 20);
     this.NguonTrading.TabIndex = 135;
     //
     // ClassName
     //
     this.ClassName._DataSource = null;
     this.ClassName._GetField = null;
     this.ClassName.Location = new System.Drawing.Point(405, 119);
     this.ClassName.MenuManager = this.barManager1;
     this.ClassName.Name = "ClassName";
     this.ClassName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, false)});
     this.ClassName.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.ClassName.Size = new System.Drawing.Size(227, 20);
     this.ClassName.TabIndex = 135;
     //
     // labelControl23
     //
     this.labelControl23.Location = new System.Drawing.Point(8, 192);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(70, 13);
     this.labelControl23.TabIndex = 134;
     this.labelControl23.Text = "Nguồn Trading";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(9, 170);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(41, 13);
     this.labelControl13.TabIndex = 134;
     this.labelControl13.Text = "Code CT";
     this.labelControl13.ToolTip = "Mã code kế toán";
     //
     // Code
     //
     this.Code.Location = new System.Drawing.Point(93, 168);
     this.Code.MenuManager = this.barManager1;
     this.Code.Name = "Code";
     this.Code.Size = new System.Drawing.Size(239, 20);
     this.Code.TabIndex = 133;
     //
     // TenGoc
     //
     this.TenGoc._DataSource = null;
     this.TenGoc._GetField = null;
     this.TenGoc.Location = new System.Drawing.Point(405, 73);
     this.TenGoc.Name = "TenGoc";
     this.TenGoc.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenGoc.Size = new System.Drawing.Size(227, 20);
     this.TenGoc.TabIndex = 132;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(93, 73);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(240, 20);
     this.NoiDung.TabIndex = 132;
     this.NoiDung.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated);
     //
     // Period
     //
     this.Period._DataSource = null;
     this.Period._GetField = null;
     this.Period.Location = new System.Drawing.Point(405, 142);
     this.Period.Name = "Period";
     this.Period.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, false)});
     this.Period.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Period.Size = new System.Drawing.Size(228, 20);
     this.Period.TabIndex = 6;
     //
     // Category
     //
     this.Category._DataSource = null;
     this.Category._GetField = null;
     this.Category.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Category.Location = new System.Drawing.Point(690, 72);
     this.Category.MenuManager = this.barManager1;
     this.Category.Name = "Category";
     this.Category.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, false)});
     this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Category.Size = new System.Drawing.Size(303, 20);
     this.Category.TabIndex = 6;
     //
     // TrailerGoc
     //
     this.TrailerGoc.Location = new System.Drawing.Point(260, 215);
     this.TrailerGoc.Name = "TrailerGoc";
     this.TrailerGoc.Properties.Caption = "Trailer gốc";
     this.TrailerGoc.Size = new System.Drawing.Size(72, 19);
     this.TrailerGoc.TabIndex = 16;
     //
     // Photos
     //
     this.Photos.Location = new System.Drawing.Point(174, 215);
     this.Photos.Name = "Photos";
     this.Photos.Properties.Caption = "Photo";
     this.Photos.Size = new System.Drawing.Size(56, 19);
     this.Photos.TabIndex = 15;
     //
     // Script
     //
     this.Script.Location = new System.Drawing.Point(93, 215);
     this.Script.MenuManager = this.barManager1;
     this.Script.Name = "Script";
     this.Script.Properties.Caption = "Script";
     this.Script.Size = new System.Drawing.Size(48, 19);
     this.Script.TabIndex = 14;
     //
     // ckcMoiTrenThiTruong
     //
     this.ckcMoiTrenThiTruong.Location = new System.Drawing.Point(313, 25);
     this.ckcMoiTrenThiTruong.Name = "ckcMoiTrenThiTruong";
     this.ckcMoiTrenThiTruong.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ckcMoiTrenThiTruong.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseFont = true;
     this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseForeColor = true;
     this.ckcMoiTrenThiTruong.Properties.Caption = "Mới trên thị trường";
     this.ckcMoiTrenThiTruong.Size = new System.Drawing.Size(142, 19);
     this.ckcMoiTrenThiTruong.TabIndex = 0;
     //
     // ckcTrongKho
     //
     this.ckcTrongKho.Location = new System.Drawing.Point(204, 24);
     this.ckcTrongKho.Name = "ckcTrongKho";
     this.ckcTrongKho.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ckcTrongKho.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ckcTrongKho.Properties.Appearance.Options.UseFont = true;
     this.ckcTrongKho.Properties.Appearance.Options.UseForeColor = true;
     this.ckcTrongKho.Properties.Caption = "Có trong kho";
     this.ckcTrongKho.Size = new System.Drawing.Size(98, 19);
     this.ckcTrongKho.TabIndex = 0;
     //
     // ThanhLy
     //
     this.ThanhLy.Location = new System.Drawing.Point(91, 24);
     this.ThanhLy.Name = "ThanhLy";
     this.ThanhLy.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.ThanhLy.Properties.Appearance.ForeColor = System.Drawing.Color.Red;
     this.ThanhLy.Properties.Appearance.Options.UseFont = true;
     this.ThanhLy.Properties.Appearance.Options.UseForeColor = true;
     this.ThanhLy.Properties.Caption = "Thanh lý";
     this.ThanhLy.Size = new System.Drawing.Size(88, 19);
     this.ThanhLy.TabIndex = 0;
     //
     // groupControl8
     //
     this.groupControl8.Controls.Add(this.KyHieuXepKho_KHPL);
     this.groupControl8.Controls.Add(this.KyHieuXepKho_NoiDung);
     this.groupControl8.Controls.Add(this.textEdit1);
     this.groupControl8.Location = new System.Drawing.Point(405, 188);
     this.groupControl8.Name = "groupControl8";
     this.groupControl8.ShowCaption = false;
     this.groupControl8.Size = new System.Drawing.Size(227, 46);
     this.groupControl8.TabIndex = 17;
     this.groupControl8.Text = "groupControl8";
     //
     // KyHieuXepKho_NoiDung
     //
     this.KyHieuXepKho_NoiDung.Location = new System.Drawing.Point(2, 26);
     this.KyHieuXepKho_NoiDung.Name = "KyHieuXepKho_NoiDung";
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.KyHieuXepKho_NoiDung.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.KyHieuXepKho_NoiDung.Properties.ReadOnly = true;
     this.KyHieuXepKho_NoiDung.Size = new System.Drawing.Size(220, 18);
     this.KyHieuXepKho_NoiDung.TabIndex = 2;
     this.KyHieuXepKho_NoiDung.TabStop = false;
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "___________________";
     this.textEdit1.Location = new System.Drawing.Point(2, 9);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Properties.AllowFocused = false;
     this.textEdit1.Properties.AppearanceReadOnly.Options.UseTextOptions = true;
     this.textEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.textEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.textEdit1.Properties.ReadOnly = true;
     this.textEdit1.Size = new System.Drawing.Size(220, 18);
     this.textEdit1.TabIndex = 5;
     this.textEdit1.TabStop = false;
     //
     // Ranking
     //
     this.Ranking.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Ranking.Location = new System.Drawing.Point(690, 96);
     this.Ranking.Name = "Ranking";
     this.Ranking.Size = new System.Drawing.Size(305, 20);
     this.Ranking.TabIndex = 9;
     this.Ranking.ZZZWidthFactor = 2F;
     //
     // DienVien
     //
     this.DienVien.DataSource = null;
     this.DienVien.DisplayField = null;
     this.DienVien.EditValue = "";
     this.DienVien.Location = new System.Drawing.Point(405, 96);
     this.DienVien.Name = "DienVien";
     this.DienVien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DienVien.Size = new System.Drawing.Size(227, 20);
     this.DienVien.TabIndex = 8;
     this.DienVien.ValueField = null;
     //
     // labelControl22
     //
     this.labelControl22.Location = new System.Drawing.Point(344, 122);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(24, 13);
     this.labelControl22.TabIndex = 0;
     this.labelControl22.Text = "Điểm";
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(343, 145);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(30, 13);
     this.labelControl16.TabIndex = 0;
     this.labelControl16.Text = "Period";
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(640, 98);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(38, 13);
     this.labelControl12.TabIndex = 0;
     this.labelControl12.Text = "Ranking";
     //
     // label24
     //
     this.label24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label24.Location = new System.Drawing.Point(968, 125);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(19, 13);
     this.label24.TabIndex = 0;
     this.label24.Text = "(%)";
     //
     // TuKhoaSelect
     //
     this.TuKhoaSelect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TuKhoaSelect.DataSource = null;
     this.TuKhoaSelect.DisplayField = null;
     this.TuKhoaSelect.EditValue = "";
     this.TuKhoaSelect.Location = new System.Drawing.Point(690, 216);
     this.TuKhoaSelect.Name = "TuKhoaSelect";
     this.TuKhoaSelect.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TuKhoaSelect.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.TuKhoaSelect.Size = new System.Drawing.Size(303, 19);
     this.TuKhoaSelect.TabIndex = 18;
     this.TuKhoaSelect.TabStop = false;
     this.TuKhoaSelect.ValueField = null;
     this.TuKhoaSelect.EditValueChanged += new System.EventHandler(this.TuKhoaSelect_EditValueChanged);
     this.TuKhoaSelect.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(this.TuKhoaSelect_CloseUp);
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(638, 74);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(45, 13);
     this.labelControl11.TabIndex = 0;
     this.labelControl11.Text = "Category";
     //
     // NgayAWB
     //
     this.NgayAWB.EditValue = null;
     this.NgayAWB.Location = new System.Drawing.Point(405, 48);
     this.NgayAWB.Name = "NgayAWB";
     this.NgayAWB.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.NgayAWB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NgayAWB.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NgayAWB.Size = new System.Drawing.Size(227, 20);
     this.NgayAWB.TabIndex = 2;
     //
     // TomTatNoiDung
     //
     this.TomTatNoiDung.Location = new System.Drawing.Point(93, 242);
     this.TomTatNoiDung.Name = "TomTatNoiDung";
     this.TomTatNoiDung.Size = new System.Drawing.Size(241, 80);
     this.TomTatNoiDung.TabIndex = 20;
     //
     // GhiChu
     //
     this.GhiChu.Location = new System.Drawing.Point(91, 326);
     this.GhiChu.Name = "GhiChu";
     this.GhiChu.Size = new System.Drawing.Size(243, 78);
     this.GhiChu.TabIndex = 21;
     this.GhiChu.EditValueChanged += new System.EventHandler(this.GhiChu_EditValueChanged);
     //
     // TuKhoaText
     //
     this.TuKhoaText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TuKhoaText.Location = new System.Drawing.Point(690, 167);
     this.TuKhoaText.Name = "TuKhoaText";
     this.TuKhoaText.Properties.ReadOnly = true;
     this.TuKhoaText.Size = new System.Drawing.Size(303, 50);
     this.TuKhoaText.TabIndex = 19;
     this.TuKhoaText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TuKhoaText_KeyDown);
     //
     // label20
     //
     this.label20.Location = new System.Drawing.Point(639, 169);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 131;
     this.label20.Text = "Từ khóa";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(343, 100);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(44, 13);
     this.labelControl2.TabIndex = 129;
     this.labelControl2.Text = "Diễn viên";
     //
     // label33
     //
     this.label33.Location = new System.Drawing.Point(343, 52);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(51, 13);
     this.label33.TabIndex = 129;
     this.label33.Text = "Ngày AWB";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(8, 244);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 129;
     this.labelControl5.Text = "Tóm tắt nội dung";
     //
     // label36
     //
     this.label36.Location = new System.Drawing.Point(12, 329);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(35, 13);
     this.label36.TabIndex = 129;
     this.label36.Text = "Ghi chú";
     //
     // Info
     //
     this.Info.Location = new System.Drawing.Point(308, 46);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(24, 21);
     this.Info.TabIndex = 1;
     //
     // TinhTrangBang
     //
     this.TinhTrangBang.Location = new System.Drawing.Point(93, 144);
     this.TinhTrangBang.Name = "TinhTrangBang";
     this.TinhTrangBang.Size = new System.Drawing.Size(241, 20);
     this.TinhTrangBang.TabIndex = 13;
     this.TinhTrangBang.ZZZWidthFactor = 2F;
     //
     // TietMuc
     //
     this.TietMuc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.TietMuc.Location = new System.Drawing.Point(690, 48);
     this.TietMuc.Name = "TietMuc";
     this.TietMuc.Size = new System.Drawing.Size(303, 20);
     this.TietMuc.TabIndex = 3;
     this.TietMuc.ZZZWidthFactor = 2F;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(9, 148);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(39, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "TT băng";
     this.labelControl3.ToolTip = "Tình trạng băng";
     //
     // MaChuongTrinh
     //
     this.MaChuongTrinh.Location = new System.Drawing.Point(93, 48);
     this.MaChuongTrinh.Name = "MaChuongTrinh";
     this.MaChuongTrinh.Properties.Appearance.BackColor = System.Drawing.Color.White;
     this.MaChuongTrinh.Properties.Appearance.Options.UseBackColor = true;
     this.MaChuongTrinh.Properties.MaxLength = 100;
     this.MaChuongTrinh.Properties.ReadOnly = true;
     this.MaChuongTrinh.Size = new System.Drawing.Size(209, 20);
     this.MaChuongTrinh.TabIndex = 1;
     this.MaChuongTrinh.TabStop = false;
     this.MaChuongTrinh.ToolTip = "Mã chương trình";
     //
     // label42
     //
     this.label42.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Appearance.Options.UseFont = true;
     this.label42.Location = new System.Drawing.Point(342, 76);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(38, 13);
     this.label42.TabIndex = 0;
     this.label42.Text = "Tên gốc";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(9, 52);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(78, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Mã chương trình";
     //
     // xtraTabControlMain
     //
     this.xtraTabControlMain.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.xtraTabControlMain.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabControlMain.AppearancePage.Header.Options.UseFont = true;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabControlMain.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.Blue;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseFont = true;
     this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseForeColor = true;
     this.xtraTabControlMain.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders;
     this.xtraTabControlMain.Location = new System.Drawing.Point(6, 44);
     this.xtraTabControlMain.Name = "xtraTabControlMain";
     this.xtraTabControlMain.SelectedTabPage = this.xtraTabPageChuongTrinh;
     this.xtraTabControlMain.Size = new System.Drawing.Size(1043, 666);
     this.xtraTabControlMain.TabIndex = 130;
     this.xtraTabControlMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageChuongTrinh,
     this.xtraTabPageAdd});
     this.xtraTabControlMain.SelectedPageChanging += new DevExpress.XtraTab.TabPageChangingEventHandler(this.xtraTabControl1_SelectedPageChanging);
     this.xtraTabControlMain.CloseButtonClick += new System.EventHandler(this.xtraTabControlMain_CloseButtonClick);
     //
     // xtraTabPageChuongTrinh
     //
     this.xtraTabPageChuongTrinh.AutoScroll = true;
     this.xtraTabPageChuongTrinh.Controls.Add(this.xtraScrollableControl1);
     this.xtraTabPageChuongTrinh.FireScrollEventOnMouseWheel = true;
     this.xtraTabPageChuongTrinh.Name = "xtraTabPageChuongTrinh";
     this.xtraTabPageChuongTrinh.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabPageChuongTrinh.Size = new System.Drawing.Size(1036, 637);
     this.xtraTabPageChuongTrinh.Text = "Thông tin chương trình";
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.groupControlThongTinPhatSong);
     this.xtraScrollableControl1.Controls.Add(this.groupControlNguonGoc);
     this.xtraScrollableControl1.Controls.Add(this.groupControlThongTin);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.FireScrollEventOnMouseWheel = true;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(1036, 637);
     this.xtraScrollableControl1.TabIndex = 130;
     //
     // xtraTabPageAdd
     //
     this.xtraTabPageAdd.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.xtraTabPageAdd.Appearance.Header.Options.UseFont = true;
     this.xtraTabPageAdd.Name = "xtraTabPageAdd";
     this.xtraTabPageAdd.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabPageAdd.Size = new System.Drawing.Size(1036, 637);
     this.xtraTabPageAdd.Text = "+";
     //
     // popupMenuTab
     //
     this.popupMenuTab.Manager = this.barManager1;
     this.popupMenuTab.Name = "popupMenuTab";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Text";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // FrmChuongTrinh
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(1049, 750);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.flowLayoutPanel2);
     this.Controls.Add(this.xtraTabControlMain);
     this.Controls.Add(this.lblTitle);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.Name = "FrmChuongTrinh";
     this.Text = "Chương trình";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmPhuongAnDeXuatTour_Load);
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).EndInit();
     this.groupControlThongTinPhatSong.ResumeLayout(false);
     this.groupControlThongTinPhatSong.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).EndInit();
     this.groupControlNguonGoc.ResumeLayout(false);
     this.groupControlNguonGoc.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
     this.groupControl7.ResumeLayout(false);
     this.groupControl7.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).EndInit();
     this.groupControlThongTin.ResumeLayout(false);
     this.groupControlThongTin.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
     this.groupControl8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).EndInit();
     this.xtraTabControlMain.ResumeLayout(false);
     this.xtraTabPageChuongTrinh.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pvSpaFitness    = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField5 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.cmbCategory     = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label1          = new System.Windows.Forms.Label();
     this.DateFrom        = new DevExpress.XtraEditors.DateEdit();
     this.DateTo          = new System.Windows.Forms.Label();
     this.label2          = new System.Windows.Forms.Label();
     this.DateRangeTo     = new DevExpress.XtraEditors.DateEdit();
     this.btnReset        = new DevExpress.XtraEditors.SimpleButton();
     this.btnSearch       = new DevExpress.XtraEditors.SimpleButton();
     this.label3          = new System.Windows.Forms.Label();
     this.txtItemDesc     = new DevExpress.XtraEditors.TextEdit();
     this.label6          = new System.Windows.Forms.Label();
     this.txtItemCode     = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.pvSpaFitness)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // pvSpaFitness
     //
     this.pvSpaFitness.Cursor = System.Windows.Forms.Cursors.Default;
     this.pvSpaFitness.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
         this.pivotGridField1,
         this.pivotGridField2,
         this.pivotGridField3,
         this.pivotGridField4,
         this.pivotGridField5
     });
     this.pvSpaFitness.Location = new System.Drawing.Point(8, 48);
     this.pvSpaFitness.Name     = "pvSpaFitness";
     this.pvSpaFitness.OptionsCustomization.AllowDrag = false;
     this.pvSpaFitness.OptionsView.ShowDataHeaders    = false;
     this.pvSpaFitness.OptionsView.ShowFilterHeaders  = false;
     this.pvSpaFitness.Size     = new System.Drawing.Size(760, 352);
     this.pvSpaFitness.TabIndex = 0;
     //
     // pivotGridField1
     //
     this.pivotGridField1.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField1.AreaIndex = 1;
     this.pivotGridField1.Caption   = "Item Code";
     this.pivotGridField1.FieldName = "strCode";
     this.pivotGridField1.Name      = "pivotGridField1";
     //
     // pivotGridField2
     //
     this.pivotGridField2.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField2.AreaIndex = 2;
     this.pivotGridField2.Caption   = "Item Desc";
     this.pivotGridField2.FieldName = "strDescription";
     this.pivotGridField2.Name      = "pivotGridField2";
     //
     // pivotGridField3
     //
     this.pivotGridField3.Area      = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField3.AreaIndex = 0;
     this.pivotGridField3.Caption   = "Quantity";
     this.pivotGridField3.FieldName = "nQuantity";
     this.pivotGridField3.Name      = "pivotGridField3";
     //
     // pivotGridField4
     //
     this.pivotGridField4.Area                = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField4.AreaIndex           = 0;
     this.pivotGridField4.Caption             = "Branch";
     this.pivotGridField4.FieldName           = "strBranchCode";
     this.pivotGridField4.Name                = "pivotGridField4";
     this.pivotGridField4.Options.AllowDrag   = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField4.Options.AllowFilter = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField4.Options.AllowSort   = DevExpress.Utils.DefaultBoolean.False;
     //
     // pivotGridField5
     //
     this.pivotGridField5.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField5.AreaIndex = 0;
     this.pivotGridField5.Caption   = "Category";
     this.pivotGridField5.FieldName = "Category";
     this.pivotGridField5.Name      = "pivotGridField5";
     //
     // cmbCategory
     //
     this.cmbCategory.Location = new System.Drawing.Point(72, 24);
     this.cmbCategory.Name     = "cmbCategory";
     //
     // cmbCategory.Properties
     //
     this.cmbCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbCategory.Size     = new System.Drawing.Size(112, 20);
     this.cmbCategory.TabIndex = 1;
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(8, 24);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(64, 16);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Category";
     //
     // DateFrom
     //
     this.DateFrom.EditValue = null;
     this.DateFrom.Location  = new System.Drawing.Point(48, 0);
     this.DateFrom.Name      = "DateFrom";
     //
     // DateFrom.Properties
     //
     this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.DateFrom.Size     = new System.Drawing.Size(72, 20);
     this.DateFrom.TabIndex = 13;
     //
     // DateTo
     //
     this.DateTo.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.DateTo.Location = new System.Drawing.Point(120, 0);
     this.DateTo.Name     = "DateTo";
     this.DateTo.Size     = new System.Drawing.Size(24, 16);
     this.DateTo.TabIndex = 12;
     this.DateTo.Text     = "To";
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label2.Location = new System.Drawing.Point(8, 0);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(40, 16);
     this.label2.TabIndex = 11;
     this.label2.Text     = "From";
     //
     // DateRangeTo
     //
     this.DateRangeTo.EditValue = null;
     this.DateRangeTo.Location  = new System.Drawing.Point(152, 0);
     this.DateRangeTo.Name      = "DateRangeTo";
     //
     // DateRangeTo.Properties
     //
     this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.DateRangeTo.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.DateRangeTo.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.DateRangeTo.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.DateRangeTo.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.DateRangeTo.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.DateRangeTo.Size     = new System.Drawing.Size(64, 20);
     this.DateRangeTo.TabIndex = 10;
     //
     // btnReset
     //
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location    = new System.Drawing.Point(520, 24);
     this.btnReset.Name        = "btnReset";
     this.btnReset.Size        = new System.Drawing.Size(56, 20);
     this.btnReset.TabIndex    = 66;
     this.btnReset.Text        = "Reset";
     this.btnReset.Click      += new System.EventHandler(this.btnReset_Click);
     //
     // btnSearch
     //
     this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSearch.Location    = new System.Drawing.Point(456, 24);
     this.btnSearch.Name        = "btnSearch";
     this.btnSearch.Size        = new System.Drawing.Size(56, 20);
     this.btnSearch.TabIndex    = 65;
     this.btnSearch.Text        = "Search";
     this.btnSearch.Click      += new System.EventHandler(this.btnSearch_Click);
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location = new System.Drawing.Point(312, 24);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(64, 16);
     this.label3.TabIndex = 60;
     this.label3.Text     = "Item Desc";
     //
     // txtItemDesc
     //
     this.txtItemDesc.EditValue = "";
     this.txtItemDesc.Location  = new System.Drawing.Point(376, 24);
     this.txtItemDesc.Name      = "txtItemDesc";
     this.txtItemDesc.Size      = new System.Drawing.Size(72, 20);
     this.txtItemDesc.TabIndex  = 59;
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label6.Location = new System.Drawing.Point(184, 24);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(64, 16);
     this.label6.TabIndex = 58;
     this.label6.Text     = "Item Code";
     //
     // txtItemCode
     //
     this.txtItemCode.EditValue = "";
     this.txtItemCode.Location  = new System.Drawing.Point(248, 24);
     this.txtItemCode.Name      = "txtItemCode";
     this.txtItemCode.Size      = new System.Drawing.Size(64, 20);
     this.txtItemCode.TabIndex  = 57;
     //
     // RPSpaFitness
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(864, 501);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.btnSearch);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtItemDesc);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.txtItemCode);
     this.Controls.Add(this.DateFrom);
     this.Controls.Add(this.DateTo);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.DateRangeTo);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.cmbCategory);
     this.Controls.Add(this.pvSpaFitness);
     this.Name        = "RPSpaFitness";
     this.Text        = "Spa & Fitness";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.RPSpaFitness_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pvSpaFitness)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// 创建查询条件控件
        /// </summary>
        private void CreatSearchControl()
        {
            try
            {
                if (dtDetail != null && dtMain != null && dtMain.Rows.Count > 0)
                {
                    //每行控件数
                    int iControlColumn = Convert.ToInt32(dtMain.Rows[0]["iControlColumn"]);
                    //控件间距
                    int iControlSpace = Convert.ToInt32(dtMain.Rows[0]["iControlSpace"]);
                    //先计算需要生成查询的数据
                    DataRow[] dr = dtDetail.Select("bIsQuery=1");
                    //计算控件总共行数
                    int iRows = 0;
                    if (dr.Length > 0)
                    {
                        if (dr.Length % iControlColumn != 0)
                        {
                            iRows = (int)Math.Floor(Convert.ToDecimal(dr.Length / iControlColumn)) + 1;
                        }
                        else
                        {
                            iRows = Convert.ToInt32(dr.Length / iControlColumn);
                        }

                        //设置控件数计数
                        int iControl = 0;
                        for (int j = 0; j < iRows; j++)
                        {
                            for (int i = 0; i < iControlColumn; i++)
                            {
                                //控件类型
                                string sColumnType = dr[iControl]["sColumnType"].ToString();
                                //取得查询条件默认值
                                object oColumnDefaultValue = dr[iControl]["sDefaultValue"];
                                if (oColumnDefaultValue.ToString().ToLower() == "<userid>")
                                {
                                    oColumnDefaultValue = BWS.ERP.Security.SecurityCenter.CurrentUserID;
                                }
                                //默认值中日期类型解析
                                if (oColumnDefaultValue.ToString().ToLower().Contains("<getdate>") && sColumnType == "D")
                                {
                                    if (oColumnDefaultValue.ToString().Length == 9)
                                    {
                                        oColumnDefaultValue = DateTime.Now.ToShortDateString();
                                    }
                                    else if (oColumnDefaultValue.ToString().ToLower().Contains("+"))
                                    {
                                        int iDays = Convert.ToInt32(oColumnDefaultValue.ToString().Trim().Substring(10));
                                        oColumnDefaultValue = DateTime.Now.AddDays(iDays);
                                    }
                                    else if (oColumnDefaultValue.ToString().ToLower().Contains("-"))
                                    {
                                        int iDays = Convert.ToInt32(oColumnDefaultValue.ToString().Trim().Substring(10));
                                        oColumnDefaultValue = DateTime.Now.AddDays(-iDays);
                                    }
                                }
                                if (oColumnDefaultValue.ToString() != "" && sColumnType == "K" && Convert.ToInt32(oColumnDefaultValue.ToString()) == 1)
                                {
                                    oColumnDefaultValue = true;
                                }
                                else if (oColumnDefaultValue.ToString() != "" && sColumnType == "K" && Convert.ToInt32(oColumnDefaultValue.ToString()) == 0)
                                {
                                    oColumnDefaultValue = false;
                                }

                                //创建控件
                                //Lable大小控制为80X21,其他输入控件大小为120X21
                                Label lbl = new Label();
                                lbl.AutoSize = false;
                                lbl.Size = new Size(80, 21);
                                lbl.Location = new Point(10 + (80 + 120 + iControlSpace) * i, 25 + (21 + 10) * j);
                                //控件命名规则:lbl+字段名+数据行号
                                lbl.Name = "lbl" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                lbl.TextAlign = ContentAlignment.BottomLeft;
                                //当控件类型为复选框时不创建Lable控件
                                if (sColumnType != "K")
                                {
                                    lbl.Text = dr[iControl]["sColumnCaption"].ToString();
                                }
                                grbFilter.Controls.Add(lbl);
                                //不同类型创建不同控件
                                switch (sColumnType)
                                {
                                    //字符型,数字型
                                    case "S":
                                    case "N":
                                        {
                                            DevExpress.XtraEditors.TextEdit txt = new DevExpress.XtraEditors.TextEdit();
                                            txt.Size = new Size(120, 21);
                                            txt.Name = "txt" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                            txt.Location = new Point(10 + (80 + 120 + iControlSpace) * i + 80, 28 + (21 + 10) * j);
                                            txt.Text = oColumnDefaultValue.ToString();
                                            //用Tag来存储查询类型
                                            txt.Tag = dr[iControl]["sColumnFieldName"].ToString() + " " + dr[iControl]["sSearchType"].ToString();
                                            grbFilter.Controls.Add(txt);
                                            break;
                                        }
                                    //ComboBox类型
                                    case "C":
                                        {
                                            DevExpress.XtraEditors.ComboBoxEdit cbx = new DevExpress.XtraEditors.ComboBoxEdit();
                                            cbx.Size = new Size(120, 21);
                                            cbx.Name = "cbx" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                            cbx.Location = new Point(10 + (80 + 120 + iControlSpace) * i + 80, 28 + (21 + 10) * j);
                                            cbx.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
                                            //写入ComboBox选择值
                                            foreach (var item in dr[iControl]["sReturnValue"].ToString().Replace(",", ",").Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries))
                                            {
                                                cbx.Properties.Items.Add(item);
                                            }

                                            if (dr[iControl]["sReturnValue"].ToString() != "")
                                            {
                                                if (oColumnDefaultValue.ToString() != "" && dr[iControl]["sReturnValue"].ToString().Contains(oColumnDefaultValue.ToString()))
                                                {
                                                    cbx.Text = oColumnDefaultValue.ToString();
                                                }
                                                else
                                                {
                                                    cbx.SelectedIndex = -1;
                                                }
                                            }
                                            //用Tag来存储查询类型
                                            cbx.Tag = dr[iControl]["sColumnFieldName"].ToString() + " " + dr[iControl]["sSearchType"].ToString();
                                            grbFilter.Controls.Add(cbx);
                                            break;
                                        }
                                    //日期型
                                    case "D":
                                        {
                                            DevExpress.XtraEditors.DateEdit det = new DevExpress.XtraEditors.DateEdit();
                                            det.Size = new Size(120, 21);
                                            det.Name = "det" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                            det.Location = new Point(10 + (80 + 120 + iControlSpace) * i + 80, 28 + (21 + 10) * j);
                                            det.Tag = dr[iControl]["sColumnFieldName"].ToString() + " " + dr[iControl]["sSearchType"].ToString();
                                            if (oColumnDefaultValue.ToString() != "")
                                            {
                                                det.DateTime = Convert.ToDateTime(oColumnDefaultValue);
                                            }
                                            else
                                            {
                                                det.EditValue = null;
                                            }
                                            grbFilter.Controls.Add(det);
                                            break;
                                        }
                                    //复选框
                                    case "K":
                                        {
                                            DevExpress.XtraEditors.CheckEdit chk = new DevExpress.XtraEditors.CheckEdit();
                                            chk.Size = new Size(120, 21);
                                            chk.Name = "chk" + dr[iControl]["sColumnFieldName"].ToString() + iControl.ToString();
                                            chk.Location = new Point(10 + (80 + 120 + iControlSpace) * i + 80, 28 + (21 + 10) * j);
                                            //CheckBox过滤条件特殊处理
                                            string sReturnValue = "";
                                            if (dr[iControl]["sSearchType"].ToString().Contains("LIKE"))
                                            {
                                                sReturnValue = " '%" + dr[iControl]["sReturnValue"].ToString() + "%'";
                                            }
                                            else
                                            {
                                                sReturnValue = " '" + dr[iControl]["sReturnValue"].ToString() + "'";
                                            }
                                            chk.Tag = dr[iControl]["sColumnFieldName"].ToString() + " " + dr[iControl]["sSearchType"].ToString() + sReturnValue;
                                            if (oColumnDefaultValue.ToString() != "")
                                            {
                                                chk.Checked = Convert.ToBoolean(oColumnDefaultValue);
                                            }
                                            else
                                            {
                                                chk.CheckState = CheckState.Unchecked;
                                            }
                                            chk.Text = dr[iControl]["sColumnCaption"].ToString();
                                            grbFilter.Controls.Add(chk);
                                            break;
                                        }

                                }
                                iControl++;
                                //当计数大于等于要创建的控件数量时则退出循环
                                if (iControl >= dr.Length)
                                {
                                    break;
                                }

                            }
                        }

                    }
                    //分组条件控件设置
                    grbGroup.Visible = IsGroup;
                    //grbGroup.Location = new Point(10, iRows * 31 + toolStrip1.Height);
                    grbGroup.Location = new Point(10, iRows * 31 + 30);
                    grbGroup.Controls.Clear();
                    for (int i = 0; i < dtDetail.Select("bIsGroup=1").Length; i++)
                    {
                        DevExpress.XtraEditors.CheckEdit chk = new DevExpress.XtraEditors.CheckEdit();
                        chk.Size = new Size(80, 21);
                        chk.Location = new Point(5 + (80 + 5) * i, 25);
                        chk.Name = "chkGrp" + dtDetail.Select("bIsGroup=1")[i]["sColumnFieldName"].ToString() + i.ToString();
                        chk.Text = dtDetail.Select("bIsGroup=1")[i]["sColumnCaption"].ToString();
                        chk.Tag = dtDetail.Select("bIsGroup=1")[i]["sColumnFieldName"].ToString();
                        chk.Checked = true;
                        grbGroup.Controls.Add(chk);
                    }
                    grbGroup.Height = 45;
                    grbGroup.Width = dtDetail.Select("bIsGroup=1").Length * 85 + 10;

                    //设置查询条件面板高度
                    grbFilter.Height = iRows * 31 + 55 + (IsGroup == true ? grbGroup.Height : 0);
                }
            }
            catch (Exception ex)
            {
                Public.SystemInfo("创建查询条件控件错误!" + ex.Message, true);
            }
        }
Ejemplo n.º 24
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();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     this.gvReceiptPayment = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridReceipt = new DevExpress.XtraGrid.GridControl();
     this.gvReceipt = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridTotalCollection = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     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.GridSingleTreatment = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridSpaPackage = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label5 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.gridVouchers = new DevExpress.XtraGrid.GridControl();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridFreeSpa = new DevExpress.XtraGrid.GridControl();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label9 = new System.Windows.Forms.Label();
     this.gridTreatment = new DevExpress.XtraGrid.GridControl();
     this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label10 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.GridIPLPackage = new DevExpress.XtraGrid.GridControl();
     this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridSpaProduct = new DevExpress.XtraGrid.GridControl();
     this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label12 = new System.Windows.Forms.Label();
     this.gridCreditPackage = new DevExpress.XtraGrid.GridControl();
     this.gridView8 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink2 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink3 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink4 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink5 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink6 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink7 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink8 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink9 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printableComponentLink10 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.PRINT1 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT2 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT3 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT4 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT5 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT6 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT7 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT8 = new DevExpress.XtraEditors.HyperLinkEdit();
     this.PRINT9 = new DevExpress.XtraEditors.HyperLinkEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReceiptPayment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReceipt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridTotalCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridSingleTreatment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSpaPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVouchers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFreeSpa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTreatment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridIPLPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridSpaProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCreditPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT9.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gvReceiptPayment
     //
     this.gvReceiptPayment.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                             this.gridColumn27,
                                                                                             this.gridColumn28});
     this.gvReceiptPayment.GridControl = this.gridReceipt;
     this.gvReceiptPayment.Name = "gvReceiptPayment";
     this.gvReceiptPayment.OptionsBehavior.Editable = false;
     this.gvReceiptPayment.OptionsCustomization.AllowColumnMoving = false;
     this.gvReceiptPayment.OptionsCustomization.AllowColumnResizing = false;
     this.gvReceiptPayment.OptionsCustomization.AllowFilter = false;
     this.gvReceiptPayment.OptionsCustomization.AllowSort = false;
     this.gvReceiptPayment.OptionsMenu.EnableColumnMenu = false;
     this.gvReceiptPayment.OptionsMenu.EnableGroupPanelMenu = false;
     this.gvReceiptPayment.OptionsPrint.ExpandAllDetails = true;
     this.gvReceiptPayment.OptionsPrint.PrintDetails = true;
     this.gvReceiptPayment.OptionsPrint.UsePrintStyles = true;
     this.gvReceiptPayment.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "Payment Code";
     this.gridColumn27.FieldName = "Payment Code";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 0;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "Amount";
     this.gridColumn28.FieldName = "Amount";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 1;
     //
     // gridReceipt
     //
     //
     // gridReceipt.EmbeddedNavigator
     //
     this.gridReceipt.EmbeddedNavigator.Name = "";
     gridLevelNode1.LevelTemplate = this.gvReceiptPayment;
     gridLevelNode1.RelationName = "ReceiptPayment";
     this.gridReceipt.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
                                                                                           gridLevelNode1});
     this.gridReceipt.Location = new System.Drawing.Point(16, 56);
     this.gridReceipt.MainView = this.gvReceipt;
     this.gridReceipt.Name = "gridReceipt";
     this.gridReceipt.Size = new System.Drawing.Size(624, 184);
     this.gridReceipt.TabIndex = 0;
     this.gridReceipt.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                this.gvReceipt,
                                                                                                this.gvReceiptPayment});
     // gvReceipt
     //
     this.gvReceipt.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn1,
                                                                                      this.gridColumn2});
     this.gvReceipt.GridControl = this.gridReceipt;
     this.gvReceipt.Name = "gvReceipt";
     this.gvReceipt.OptionsBehavior.AutoExpandAllGroups = true;
     this.gvReceipt.OptionsCustomization.AllowSort = false;
     this.gvReceipt.OptionsPrint.ExpandAllDetails = true;
     this.gvReceipt.OptionsPrint.PrintDetails = true;
     this.gvReceipt.OptionsPrint.UsePrintStyles = true;
     this.gvReceipt.OptionsView.ShowGroupedColumns = true;
     this.gvReceipt.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Receipt No";
     this.gridColumn1.FieldName = "strReceiptNo";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 297;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Shift";
     this.gridColumn2.FieldName = "nShiftID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 313;
     //
     // GridTotalCollection
     //
     this.GridTotalCollection.Cursor = System.Windows.Forms.Cursors.Default;
     this.GridTotalCollection.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
                                                                                                this.pivotGridField1,
                                                                                                this.pivotGridField2});
     this.GridTotalCollection.Location = new System.Drawing.Point(648, 56);
     this.GridTotalCollection.Name = "GridTotalCollection";
     this.GridTotalCollection.OptionsCustomization.AllowDrag = false;
     this.GridTotalCollection.OptionsCustomization.AllowExpand = false;
     this.GridTotalCollection.OptionsCustomization.AllowFilter = false;
     this.GridTotalCollection.OptionsCustomization.AllowSort = false;
     this.GridTotalCollection.OptionsView.ShowColumnHeaders = false;
     this.GridTotalCollection.OptionsView.ShowDataHeaders = false;
     this.GridTotalCollection.OptionsView.ShowFilterHeaders = false;
     this.GridTotalCollection.Size = new System.Drawing.Size(272, 184);
     this.GridTotalCollection.TabIndex = 1;
     //
     // pivotGridField1
     //
     this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField1.AreaIndex = 0;
     this.pivotGridField1.Caption = "Payment Mode";
     this.pivotGridField1.FieldName = "strPaymentCode";
     this.pivotGridField1.Name = "pivotGridField1";
     //
     // pivotGridField2
     //
     this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField2.AreaIndex = 0;
     this.pivotGridField2.Caption = "Amount";
     this.pivotGridField2.FieldName = "mAmount";
     this.pivotGridField2.Name = "pivotGridField2";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location = new System.Drawing.Point(56, 8);
     this.dateEdit1.Name = "dateEdit1";
     //
     // dateEdit1.Properties
     //
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Size = new System.Drawing.Size(96, 20);
     this.dateEdit1.TabIndex = 2;
     this.dateEdit1.EditValueChanged += new System.EventHandler(this.dateEdit1_EditValueChanged);
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 23);
     this.label1.TabIndex = 3;
     this.label1.Text = "Date";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label2.Location = new System.Drawing.Point(168, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(56, 23);
     this.label2.TabIndex = 5;
     this.label2.Text = "Branch";
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location = new System.Drawing.Point(24, 32);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(144, 23);
     this.label3.TabIndex = 6;
     this.label3.Text = "Receipt Generated";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label4.Location = new System.Drawing.Point(648, 32);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(176, 23);
     this.label4.TabIndex = 7;
     this.label4.Text = "Total Collection";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // GridSingleTreatment
     //
     //
     // GridSingleTreatment.EmbeddedNavigator
     //
     this.GridSingleTreatment.EmbeddedNavigator.Name = "";
     this.GridSingleTreatment.Location = new System.Drawing.Point(16, 272);
     this.GridSingleTreatment.MainView = this.gridView1;
     this.GridSingleTreatment.Name = "GridSingleTreatment";
     this.GridSingleTreatment.Size = new System.Drawing.Size(464, 184);
     this.GridSingleTreatment.TabIndex = 8;
     this.GridSingleTreatment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                        this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn3,
                                                                                      this.gridColumn4,
                                                                                      this.gridColumn5});
     this.gridView1.GridControl = this.GridSingleTreatment;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Code";
     this.gridColumn3.FieldName = "Code";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 55;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Description";
     this.gridColumn4.FieldName = "Description";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     this.gridColumn4.Width = 155;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Total";
     this.gridColumn5.FieldName = "Quantity";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 2;
     this.gridColumn5.Width = 80;
     //
     // gridSpaPackage
     //
     //
     // gridSpaPackage.EmbeddedNavigator
     //
     this.gridSpaPackage.EmbeddedNavigator.Name = "";
     this.gridSpaPackage.Location = new System.Drawing.Point(488, 272);
     this.gridSpaPackage.MainView = this.gridView2;
     this.gridSpaPackage.Name = "gridSpaPackage";
     this.gridSpaPackage.Size = new System.Drawing.Size(432, 184);
     this.gridSpaPackage.TabIndex = 9;
     this.gridSpaPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn6,
                                                                                      this.gridColumn7,
                                                                                      this.gridColumn8});
     this.gridView2.GridControl = this.gridSpaPackage;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsBehavior.Editable = false;
     this.gridView2.OptionsCustomization.AllowFilter = false;
     this.gridView2.OptionsCustomization.AllowSort = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Code";
     this.gridColumn6.FieldName = "Code";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 55;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Description";
     this.gridColumn7.FieldName = "Description";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     this.gridColumn7.Width = 155;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Total";
     this.gridColumn8.FieldName = "Quantity";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 2;
     this.gridColumn8.Width = 80;
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label5.Location = new System.Drawing.Point(24, 248);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(176, 23);
     this.label5.TabIndex = 10;
     this.label5.Text = "Spa Single Treatment";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label6.Location = new System.Drawing.Point(488, 248);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(176, 23);
     this.label6.TabIndex = 11;
     this.label6.Text = "Spa Package";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label7
     //
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label7.Location = new System.Drawing.Point(488, 912);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(176, 23);
     this.label7.TabIndex = 15;
     this.label7.Text = "Vouchers";
     //
     // label8
     //
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label8.Location = new System.Drawing.Point(24, 912);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(176, 23);
     this.label8.TabIndex = 14;
     this.label8.Text = "Free Spa Menu Trial";
     //
     // gridVouchers
     //
     //
     // gridVouchers.EmbeddedNavigator
     //
     this.gridVouchers.EmbeddedNavigator.Name = "";
     this.gridVouchers.Location = new System.Drawing.Point(488, 936);
     this.gridVouchers.MainView = this.gridView3;
     this.gridVouchers.Name = "gridVouchers";
     this.gridVouchers.Size = new System.Drawing.Size(432, 160);
     this.gridVouchers.TabIndex = 13;
     this.gridVouchers.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView3});
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn9,
                                                                                      this.gridColumn10,
                                                                                      this.gridColumn11});
     this.gridView3.GridControl = this.gridVouchers;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsBehavior.Editable = false;
     this.gridView3.OptionsCustomization.AllowFilter = false;
     this.gridView3.OptionsCustomization.AllowSort = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Code";
     this.gridColumn9.FieldName = "Code";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 0;
     this.gridColumn9.Width = 55;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Description";
     this.gridColumn10.FieldName = "Description";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 1;
     this.gridColumn10.Width = 155;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Total";
     this.gridColumn11.FieldName = "Quantity";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 2;
     this.gridColumn11.Width = 80;
     //
     // gridFreeSpa
     //
     //
     // gridFreeSpa.EmbeddedNavigator
     //
     this.gridFreeSpa.EmbeddedNavigator.Name = "";
     this.gridFreeSpa.Location = new System.Drawing.Point(16, 936);
     this.gridFreeSpa.MainView = this.gridView4;
     this.gridFreeSpa.Name = "gridFreeSpa";
     this.gridFreeSpa.Size = new System.Drawing.Size(464, 160);
     this.gridFreeSpa.TabIndex = 12;
     this.gridFreeSpa.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                this.gridView4});
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn12,
                                                                                      this.gridColumn13,
                                                                                      this.gridColumn14});
     this.gridView4.GridControl = this.gridFreeSpa;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsBehavior.Editable = false;
     this.gridView4.OptionsCustomization.AllowFilter = false;
     this.gridView4.OptionsCustomization.AllowSort = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Code";
     this.gridColumn12.FieldName = "Code";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 0;
     this.gridColumn12.Width = 55;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Description";
     this.gridColumn13.FieldName = "Description";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 1;
     this.gridColumn13.Width = 155;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Total";
     this.gridColumn14.FieldName = "Quantity";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 2;
     this.gridColumn14.Width = 80;
     //
     // label9
     //
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label9.Location = new System.Drawing.Point(24, 688);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(176, 23);
     this.label9.TabIndex = 17;
     this.label9.Text = "Treatment";
     //
     // gridTreatment
     //
     //
     // gridTreatment.EmbeddedNavigator
     //
     this.gridTreatment.EmbeddedNavigator.Name = "";
     this.gridTreatment.Location = new System.Drawing.Point(16, 704);
     this.gridTreatment.MainView = this.gridView5;
     this.gridTreatment.Name = "gridTreatment";
     this.gridTreatment.Size = new System.Drawing.Size(464, 192);
     this.gridTreatment.TabIndex = 16;
     this.gridTreatment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                  this.gridView5});
     //
     // gridView5
     //
     this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn15,
                                                                                      this.gridColumn16,
                                                                                      this.gridColumn17});
     this.gridView5.GridControl = this.gridTreatment;
     this.gridView5.Name = "gridView5";
     this.gridView5.OptionsBehavior.Editable = false;
     this.gridView5.OptionsCustomization.AllowFilter = false;
     this.gridView5.OptionsCustomization.AllowSort = false;
     this.gridView5.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Code";
     this.gridColumn15.FieldName = "Code";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 55;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Description";
     this.gridColumn16.FieldName = "Description";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 1;
     this.gridColumn16.Width = 155;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Total";
     this.gridColumn17.FieldName = "Quantity";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 2;
     this.gridColumn17.Width = 80;
     //
     // label10
     //
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label10.Location = new System.Drawing.Point(488, 464);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(224, 23);
     this.label10.TabIndex = 21;
     this.label10.Text = "IPL Package";
     //
     // label11
     //
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label11.Location = new System.Drawing.Point(24, 464);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(176, 23);
     this.label11.TabIndex = 20;
     this.label11.Text = "Spa Product";
     //
     // GridIPLPackage
     //
     //
     // GridIPLPackage.EmbeddedNavigator
     //
     this.GridIPLPackage.EmbeddedNavigator.Name = "";
     this.GridIPLPackage.Location = new System.Drawing.Point(488, 488);
     this.GridIPLPackage.MainView = this.gridView6;
     this.GridIPLPackage.Name = "GridIPLPackage";
     this.GridIPLPackage.Size = new System.Drawing.Size(432, 192);
     this.GridIPLPackage.TabIndex = 19;
     this.GridIPLPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView6});
     //
     // gridView6
     //
     this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn18,
                                                                                      this.gridColumn19,
                                                                                      this.gridColumn20});
     this.gridView6.GridControl = this.GridIPLPackage;
     this.gridView6.Name = "gridView6";
     this.gridView6.OptionsBehavior.Editable = false;
     this.gridView6.OptionsCustomization.AllowFilter = false;
     this.gridView6.OptionsCustomization.AllowSort = false;
     this.gridView6.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Code";
     this.gridColumn18.FieldName = "Code";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 55;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Description";
     this.gridColumn19.FieldName = "Description";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 155;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Total";
     this.gridColumn20.FieldName = "Quantity";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 2;
     this.gridColumn20.Width = 80;
     //
     // GridSpaProduct
     //
     //
     // GridSpaProduct.EmbeddedNavigator
     //
     this.GridSpaProduct.EmbeddedNavigator.Name = "";
     this.GridSpaProduct.Location = new System.Drawing.Point(16, 488);
     this.GridSpaProduct.MainView = this.gridView7;
     this.GridSpaProduct.Name = "GridSpaProduct";
     this.GridSpaProduct.Size = new System.Drawing.Size(464, 192);
     this.GridSpaProduct.TabIndex = 18;
     this.GridSpaProduct.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                   this.gridView7});
     //
     // gridView7
     //
     this.gridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn21,
                                                                                      this.gridColumn22,
                                                                                      this.gridColumn23});
     this.gridView7.GridControl = this.GridSpaProduct;
     this.gridView7.Name = "gridView7";
     this.gridView7.OptionsBehavior.Editable = false;
     this.gridView7.OptionsCustomization.AllowFilter = false;
     this.gridView7.OptionsCustomization.AllowSort = false;
     this.gridView7.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "Code";
     this.gridColumn21.FieldName = "Code";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 0;
     this.gridColumn21.Width = 55;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Description";
     this.gridColumn22.FieldName = "Description";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 1;
     this.gridColumn22.Width = 155;
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Total";
     this.gridColumn23.FieldName = "Quantity";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 2;
     this.gridColumn23.Width = 80;
     //
     // label12
     //
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label12.Location = new System.Drawing.Point(488, 688);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(176, 23);
     this.label12.TabIndex = 25;
     this.label12.Text = "Credit Package Sales";
     //
     // gridCreditPackage
     //
     //
     // gridCreditPackage.EmbeddedNavigator
     //
     this.gridCreditPackage.EmbeddedNavigator.Name = "";
     this.gridCreditPackage.Location = new System.Drawing.Point(488, 704);
     this.gridCreditPackage.MainView = this.gridView8;
     this.gridCreditPackage.Name = "gridCreditPackage";
     this.gridCreditPackage.Size = new System.Drawing.Size(432, 192);
     this.gridCreditPackage.TabIndex = 23;
     this.gridCreditPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                      this.gridView8});
     //
     // gridView8
     //
     this.gridView8.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn24,
                                                                                      this.gridColumn25,
                                                                                      this.gridColumn26});
     this.gridView8.GridControl = this.gridCreditPackage;
     this.gridView8.Name = "gridView8";
     this.gridView8.OptionsBehavior.Editable = false;
     this.gridView8.OptionsCustomization.AllowFilter = false;
     this.gridView8.OptionsCustomization.AllowSort = false;
     this.gridView8.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Code";
     this.gridColumn24.FieldName = "Code";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 0;
     this.gridColumn24.Width = 55;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Description";
     this.gridColumn25.FieldName = "Description";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 1;
     this.gridColumn25.Width = 155;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "Total";
     this.gridColumn26.FieldName = "Quantity";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 2;
     this.gridColumn26.Width = 80;
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(232, 8);
     this.cmbBranch.Name = "cmbBranch";
     //
     // cmbBranch.Properties
     //
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBranch.Size = new System.Drawing.Size(144, 20);
     this.cmbBranch.TabIndex = 26;
     this.cmbBranch.SelectedValueChanged += new System.EventHandler(this.cmbBranch_SelectedValueChanged);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
                                                          this.printableComponentLink1,
                                                          this.printableComponentLink2,
                                                          this.printableComponentLink3,
                                                          this.printableComponentLink4,
                                                          this.printableComponentLink5,
                                                          this.printableComponentLink6,
                                                          this.printableComponentLink7,
                                                          this.printableComponentLink8,
                                                          this.printableComponentLink9,
                                                          this.printableComponentLink10});
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Component = this.gridReceipt;
     this.printableComponentLink1.EnablePageDialog = false;
     this.printableComponentLink1.PrintingSystem = this.printingSystem1;
     this.printableComponentLink1.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink1_CreateReportHeaderArea);
     //
     // printableComponentLink2
     //
     this.printableComponentLink2.Component = this.GridTotalCollection;
     this.printableComponentLink2.PrintingSystem = this.printingSystem1;
     this.printableComponentLink2.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink2_CreateReportHeaderArea);
     //
     // printableComponentLink3
     //
     this.printableComponentLink3.Component = this.GridSingleTreatment;
     this.printableComponentLink3.PrintingSystem = this.printingSystem1;
     this.printableComponentLink3.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink3_CreateReportHeaderArea);
     //
     // printableComponentLink4
     //
     this.printableComponentLink4.Component = this.gridSpaPackage;
     this.printableComponentLink4.PrintingSystem = this.printingSystem1;
     this.printableComponentLink4.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink4_CreateReportHeaderArea);
     //
     // printableComponentLink5
     //
     this.printableComponentLink5.Component = this.GridSpaProduct;
     this.printableComponentLink5.PrintingSystem = this.printingSystem1;
     this.printableComponentLink5.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink5_CreateReportHeaderArea);
     //
     // printableComponentLink6
     //
     this.printableComponentLink6.Component = this.GridIPLPackage;
     this.printableComponentLink6.PrintingSystem = this.printingSystem1;
     this.printableComponentLink6.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink6_CreateReportHeaderArea);
     //
     // printableComponentLink7
     //
     this.printableComponentLink7.Component = this.gridTreatment;
     this.printableComponentLink7.PrintingSystem = this.printingSystem1;
     this.printableComponentLink7.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink7_CreateReportHeaderArea);
     //
     // printableComponentLink8
     //
     this.printableComponentLink8.Component = this.gridCreditPackage;
     this.printableComponentLink8.PrintingSystem = this.printingSystem1;
     this.printableComponentLink8.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink8_CreateReportHeaderArea);
     //
     // printableComponentLink9
     //
     this.printableComponentLink9.Component = this.gridFreeSpa;
     this.printableComponentLink9.PrintingSystem = this.printingSystem1;
     this.printableComponentLink9.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink9_CreateReportHeaderArea);
     //
     // printableComponentLink10
     //
     this.printableComponentLink10.Component = this.gridVouchers;
     this.printableComponentLink10.PrintingSystem = this.printingSystem1;
     this.printableComponentLink10.CreateReportHeaderArea += new DevExpress.XtraPrinting.CreateAreaEventHandler(this.printableComponentLink10_CreateReportHeaderArea);
     //
     // PRINT1
     //
     this.PRINT1.EditValue = "PRINT";
     this.PRINT1.Location = new System.Drawing.Point(424, 8);
     this.PRINT1.Name = "PRINT1";
     //
     // PRINT1.Properties
     //
     this.PRINT1.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT1.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT1.Size = new System.Drawing.Size(40, 18);
     this.PRINT1.TabIndex = 141;
     this.PRINT1.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT1_OpenLink);
     //
     // PRINT2
     //
     this.PRINT2.EditValue = "PRINT";
     this.PRINT2.Location = new System.Drawing.Point(432, 248);
     this.PRINT2.Name = "PRINT2";
     //
     // PRINT2.Properties
     //
     this.PRINT2.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT2.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT2.Size = new System.Drawing.Size(40, 18);
     this.PRINT2.TabIndex = 142;
     this.PRINT2.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT2_OpenLink);
     //
     // PRINT3
     //
     this.PRINT3.EditValue = "PRINT";
     this.PRINT3.Location = new System.Drawing.Point(848, 248);
     this.PRINT3.Name = "PRINT3";
     //
     // PRINT3.Properties
     //
     this.PRINT3.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT3.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT3.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT3.Size = new System.Drawing.Size(40, 18);
     this.PRINT3.TabIndex = 143;
     this.PRINT3.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT3_OpenLink);
     //
     // PRINT4
     //
     this.PRINT4.EditValue = "PRINT";
     this.PRINT4.Location = new System.Drawing.Point(432, 464);
     this.PRINT4.Name = "PRINT4";
     //
     // PRINT4.Properties
     //
     this.PRINT4.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT4.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT4.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT4.Size = new System.Drawing.Size(40, 18);
     this.PRINT4.TabIndex = 144;
     this.PRINT4.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT4_OpenLink);
     //
     // PRINT5
     //
     this.PRINT5.EditValue = "PRINT";
     this.PRINT5.Location = new System.Drawing.Point(848, 464);
     this.PRINT5.Name = "PRINT5";
     //
     // PRINT5.Properties
     //
     this.PRINT5.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT5.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT5.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT5.Size = new System.Drawing.Size(40, 18);
     this.PRINT5.TabIndex = 145;
     this.PRINT5.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT5_OpenLink);
     //
     // PRINT6
     //
     this.PRINT6.EditValue = "PRINT";
     this.PRINT6.Location = new System.Drawing.Point(432, 680);
     this.PRINT6.Name = "PRINT6";
     //
     // PRINT6.Properties
     //
     this.PRINT6.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT6.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT6.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT6.Size = new System.Drawing.Size(40, 18);
     this.PRINT6.TabIndex = 146;
     this.PRINT6.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT6_OpenLink);
     //
     // PRINT7
     //
     this.PRINT7.EditValue = "PRINT";
     this.PRINT7.Location = new System.Drawing.Point(848, 680);
     this.PRINT7.Name = "PRINT7";
     //
     // PRINT7.Properties
     //
     this.PRINT7.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT7.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT7.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT7.Size = new System.Drawing.Size(40, 18);
     this.PRINT7.TabIndex = 147;
     this.PRINT7.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT7_OpenLink);
     //
     // PRINT8
     //
     this.PRINT8.EditValue = "PRINT";
     this.PRINT8.Location = new System.Drawing.Point(432, 912);
     this.PRINT8.Name = "PRINT8";
     //
     // PRINT8.Properties
     //
     this.PRINT8.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT8.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT8.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT8.Size = new System.Drawing.Size(40, 18);
     this.PRINT8.TabIndex = 148;
     this.PRINT8.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT8_OpenLink);
     //
     // PRINT9
     //
     this.PRINT9.EditValue = "PRINT";
     this.PRINT9.Location = new System.Drawing.Point(848, 912);
     this.PRINT9.Name = "PRINT9";
     //
     // PRINT9.Properties
     //
     this.PRINT9.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.PRINT9.Properties.Appearance.Options.UseBackColor = true;
     this.PRINT9.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.PRINT9.Size = new System.Drawing.Size(40, 18);
     this.PRINT9.TabIndex = 149;
     this.PRINT9.OpenLink += new DevExpress.XtraEditors.Controls.OpenLinkEventHandler(this.PRINT9_OpenLink);
     //
     // RPSpaDailyBranchSales
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(859, 384);
     this.Controls.Add(this.GridSingleTreatment);
     this.Controls.Add(this.gridSpaPackage);
     this.Controls.Add(this.gridVouchers);
     this.Controls.Add(this.gridFreeSpa);
     this.Controls.Add(this.gridTreatment);
     this.Controls.Add(this.GridIPLPackage);
     this.Controls.Add(this.GridSpaProduct);
     this.Controls.Add(this.gridCreditPackage);
     this.Controls.Add(this.PRINT9);
     this.Controls.Add(this.PRINT8);
     this.Controls.Add(this.PRINT7);
     this.Controls.Add(this.PRINT6);
     this.Controls.Add(this.PRINT5);
     this.Controls.Add(this.PRINT4);
     this.Controls.Add(this.PRINT3);
     this.Controls.Add(this.PRINT2);
     this.Controls.Add(this.PRINT1);
     this.Controls.Add(this.cmbBranch);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label8);
     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.Controls.Add(this.dateEdit1);
     this.Controls.Add(this.GridTotalCollection);
     this.Controls.Add(this.gridReceipt);
     this.DockPadding.Bottom = 20;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "RPSpaDailyBranchSales";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Spa Daily Branch Sales";
     this.TopMost = true;
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RPSpaDailyBranchSales_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gvReceiptPayment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridReceipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvReceipt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridTotalCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridSingleTreatment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSpaPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridVouchers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFreeSpa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTreatment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridIPLPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridSpaProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCreditPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PRINT9.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 25
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.patientDocBgWorker = new System.ComponentModel.BackgroundWorker();
     this.searchTimer = new System.Windows.Forms.Timer(this.components);
     this.postCodeTimer = new System.Windows.Forms.Timer(this.components);
     this.postCodeBgWorker = new System.ComponentModel.BackgroundWorker();
     this.loadBarTimer = new System.Windows.Forms.Timer(this.components);
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.commentTextBox = new System.Windows.Forms.TextBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.removeClaimantBtn = new DevExpress.XtraEditors.SimpleButton();
     this.addClaimantBtn = new DevExpress.XtraEditors.SimpleButton();
     this.claimantListBox = new System.Windows.Forms.ListBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.MedicalConditionsComboBoxEdit = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.SmokerNoCheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.SmokerYesCheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.patientDetailsGroupBox = new System.Windows.Forms.GroupBox();
     this.claimNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.physioComboBox = new System.Windows.Forms.ComboBox();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.dvaTextBox = new DevExpress.XtraEditors.TextEdit();
     this.findPostCodeBtn = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.TitleComboBox = new System.Windows.Forms.ComboBox();
     this.postCodeTextBox = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.stateTextBox = new DevExpress.XtraEditors.TextEdit();
     this.genderFemaleTickBox = new DevExpress.XtraEditors.CheckEdit();
     this.genderMaleTickBox = new DevExpress.XtraEditors.CheckEdit();
     this.suburbComboBox = new System.Windows.Forms.ComboBox();
     this.addressTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.doBDateEdit = new DevExpress.XtraEditors.DateEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.givenNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.surnameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.applyBtn = new DevExpress.XtraEditors.SimpleButton();
     this.searchResultProgressBar = new System.Windows.Forms.ProgressBar();
     this.newPatientBtn = new DevExpress.XtraEditors.SimpleButton();
     this.cancelBtn = new DevExpress.XtraEditors.SimpleButton();
     this.okBtn = new DevExpress.XtraEditors.SimpleButton();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.displayGridControl = new DevExpress.XtraGrid.GridControl();
     this.displayGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.goBtn = new DevExpress.XtraEditors.SimpleButton();
     this.searchFieldTextBox = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.homePhoneTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.mobileTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.workPhoneTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.emailTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.groupBox4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MedicalConditionsComboBoxEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerNoCheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerYesCheckEdit.Properties)).BeginInit();
     this.patientDetailsGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.claimNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dvaTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.postCodeTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.stateTextBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderFemaleTickBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderMaleTickBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.addressTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.givenNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.surnameTextEdit.Properties)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.homePhoneTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mobileTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.workPhoneTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTextEdit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // patientDocBgWorker
     //
     this.patientDocBgWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.PatientBgWorkerDoWork);
     this.patientDocBgWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.PatientBgWorkerRunWorkerCompleted);
     //
     // searchTimer
     //
     this.searchTimer.Interval = 1500;
     this.searchTimer.Tick += new System.EventHandler(this.SearchTimerTick);
     //
     // postCodeTimer
     //
     this.postCodeTimer.Interval = 1500;
     this.postCodeTimer.Tick += new System.EventHandler(this.PostCodeTimerTick);
     //
     // postCodeBgWorker
     //
     this.postCodeBgWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.PostCodeBgWorkerDoWork);
     this.postCodeBgWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.PostCodeBgWorkerRunWorkerCompleted);
     //
     // loadBarTimer
     //
     this.loadBarTimer.Interval = 300;
     this.loadBarTimer.Tick += new System.EventHandler(this.LoadTimerTick);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.commentTextBox);
     this.groupBox4.Location = new System.Drawing.Point(2, 498);
     this.groupBox4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox4.Size = new System.Drawing.Size(326, 81);
     this.groupBox4.TabIndex = 65;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Comments";
     //
     // commentTextBox
     //
     this.commentTextBox.Location = new System.Drawing.Point(9, 18);
     this.commentTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.commentTextBox.Multiline = true;
     this.commentTextBox.Name = "commentTextBox";
     this.commentTextBox.Size = new System.Drawing.Size(310, 59);
     this.commentTextBox.TabIndex = 21;
     this.commentTextBox.TextChanged += new System.EventHandler(this.CommentTextBoxTextChanged);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.removeClaimantBtn);
     this.groupBox3.Controls.Add(this.addClaimantBtn);
     this.groupBox3.Controls.Add(this.claimantListBox);
     this.groupBox3.Location = new System.Drawing.Point(341, 404);
     this.groupBox3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox3.Size = new System.Drawing.Size(228, 176);
     this.groupBox3.TabIndex = 64;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Claimants";
     //
     // removeClaimantBtn
     //
     this.removeClaimantBtn.Location = new System.Drawing.Point(150, 152);
     this.removeClaimantBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.removeClaimantBtn.Name = "removeClaimantBtn";
     this.removeClaimantBtn.Size = new System.Drawing.Size(64, 19);
     this.removeClaimantBtn.TabIndex = 40;
     this.removeClaimantBtn.TabStop = false;
     this.removeClaimantBtn.Text = "Remove";
     this.removeClaimantBtn.Click += new System.EventHandler(this.RemoveClaimantBtnClick);
     //
     // addClaimantBtn
     //
     this.addClaimantBtn.Location = new System.Drawing.Point(81, 152);
     this.addClaimantBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.addClaimantBtn.Name = "addClaimantBtn";
     this.addClaimantBtn.Size = new System.Drawing.Size(64, 19);
     this.addClaimantBtn.TabIndex = 39;
     this.addClaimantBtn.TabStop = false;
     this.addClaimantBtn.Text = "Add";
     this.addClaimantBtn.Click += new System.EventHandler(this.AddClaimantBtnClick);
     //
     // claimantListBox
     //
     this.claimantListBox.DisplayMember = "LastName";
     this.claimantListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.claimantListBox.FormattingEnabled = true;
     this.claimantListBox.Location = new System.Drawing.Point(5, 18);
     this.claimantListBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.claimantListBox.Name = "claimantListBox";
     this.claimantListBox.Size = new System.Drawing.Size(210, 134);
     this.claimantListBox.TabIndex = 38;
     this.claimantListBox.TabStop = false;
     this.claimantListBox.ValueMember = "ClaimantID";
     this.claimantListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.ClaimantListBoxDrawItem);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.MedicalConditionsComboBoxEdit);
     this.groupBox2.Controls.Add(this.labelControl14);
     this.groupBox2.Controls.Add(this.labelControl13);
     this.groupBox2.Controls.Add(this.SmokerNoCheckEdit);
     this.groupBox2.Controls.Add(this.SmokerYesCheckEdit);
     this.groupBox2.Location = new System.Drawing.Point(2, 404);
     this.groupBox2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox2.Size = new System.Drawing.Size(326, 89);
     this.groupBox2.TabIndex = 63;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Patient Medical Details";
     //
     // MedicalConditionsComboBoxEdit
     //
     this.MedicalConditionsComboBoxEdit.EditValue = "";
     this.MedicalConditionsComboBoxEdit.Location = new System.Drawing.Point(154, 20);
     this.MedicalConditionsComboBoxEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.MedicalConditionsComboBoxEdit.Name = "MedicalConditionsComboBoxEdit";
     this.MedicalConditionsComboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.MedicalConditionsComboBoxEdit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Cardiac Pacemaker"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Loss of Weight"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Heart Condition"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Dizziness"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Artificial joint"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Epilepsy"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, "Surgery in the past 3 months")});
     this.MedicalConditionsComboBoxEdit.Size = new System.Drawing.Size(165, 20);
     this.MedicalConditionsComboBoxEdit.TabIndex = 19;
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(11, 25);
     this.labelControl14.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(88, 13);
     this.labelControl14.TabIndex = 30;
     this.labelControl14.Text = "Medical Conditions";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(9, 67);
     this.labelControl13.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(117, 13);
     this.labelControl13.TabIndex = 29;
     this.labelControl13.Text = "Is the Patient a Smoker?";
     //
     // SmokerNoCheckEdit
     //
     this.SmokerNoCheckEdit.Location = new System.Drawing.Point(199, 66);
     this.SmokerNoCheckEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.SmokerNoCheckEdit.Name = "SmokerNoCheckEdit";
     this.SmokerNoCheckEdit.Properties.Caption = "no";
     this.SmokerNoCheckEdit.Size = new System.Drawing.Size(38, 19);
     this.SmokerNoCheckEdit.TabIndex = 16;
     //
     // SmokerYesCheckEdit
     //
     this.SmokerYesCheckEdit.Location = new System.Drawing.Point(153, 66);
     this.SmokerYesCheckEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.SmokerYesCheckEdit.Name = "SmokerYesCheckEdit";
     this.SmokerYesCheckEdit.Properties.Caption = "Yes";
     this.SmokerYesCheckEdit.Size = new System.Drawing.Size(41, 19);
     this.SmokerYesCheckEdit.TabIndex = 15;
     //
     // patientDetailsGroupBox
     //
     this.patientDetailsGroupBox.Controls.Add(this.claimNoTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl1);
     this.patientDetailsGroupBox.Controls.Add(this.physioComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl12);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl11);
     this.patientDetailsGroupBox.Controls.Add(this.dvaTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.findPostCodeBtn);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl17);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl19);
     this.patientDetailsGroupBox.Controls.Add(this.emailTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl18);
     this.patientDetailsGroupBox.Controls.Add(this.TitleComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.postCodeTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl2);
     this.patientDetailsGroupBox.Controls.Add(this.stateTextBox);
     this.patientDetailsGroupBox.Controls.Add(this.genderFemaleTickBox);
     this.patientDetailsGroupBox.Controls.Add(this.genderMaleTickBox);
     this.patientDetailsGroupBox.Controls.Add(this.suburbComboBox);
     this.patientDetailsGroupBox.Controls.Add(this.addressTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl10);
     this.patientDetailsGroupBox.Controls.Add(this.workPhoneTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl9);
     this.patientDetailsGroupBox.Controls.Add(this.mobileTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl8);
     this.patientDetailsGroupBox.Controls.Add(this.homePhoneTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl7);
     this.patientDetailsGroupBox.Controls.Add(this.doBDateEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl6);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl5);
     this.patientDetailsGroupBox.Controls.Add(this.givenNameTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl4);
     this.patientDetailsGroupBox.Controls.Add(this.surnameTextEdit);
     this.patientDetailsGroupBox.Controls.Add(this.labelControl3);
     this.patientDetailsGroupBox.Location = new System.Drawing.Point(2, 205);
     this.patientDetailsGroupBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.patientDetailsGroupBox.Name = "patientDetailsGroupBox";
     this.patientDetailsGroupBox.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.patientDetailsGroupBox.Size = new System.Drawing.Size(567, 194);
     this.patientDetailsGroupBox.TabIndex = 3;
     this.patientDetailsGroupBox.TabStop = false;
     this.patientDetailsGroupBox.Text = "Enter new Patient";
     //
     // claimNoTextEdit
     //
     this.claimNoTextEdit.Location = new System.Drawing.Point(449, 160);
     this.claimNoTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.claimNoTextEdit.Name = "claimNoTextEdit";
     this.claimNoTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.claimNoTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.claimNoTextEdit.Properties.Mask.PlaceHolder = '*';
     this.claimNoTextEdit.Size = new System.Drawing.Size(104, 20);
     this.claimNoTextEdit.TabIndex = 67;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(387, 163);
     this.labelControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(36, 13);
     this.labelControl1.TabIndex = 66;
     this.labelControl1.Text = "Claim #";
     //
     // physioComboBox
     //
     this.physioComboBox.DisplayMember = "PhysioID";
     this.physioComboBox.FormattingEnabled = true;
     this.physioComboBox.Location = new System.Drawing.Point(433, 51);
     this.physioComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.physioComboBox.Name = "physioComboBox";
     this.physioComboBox.Size = new System.Drawing.Size(86, 21);
     this.physioComboBox.TabIndex = 14;
     this.physioComboBox.ValueMember = "PhysioID";
     this.physioComboBox.TextChanged += new System.EventHandler(this.PhysioComboBoxTextChanged);
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(391, 56);
     this.labelControl12.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(31, 13);
     this.labelControl12.TabIndex = 65;
     this.labelControl12.Text = "Physio";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(243, 163);
     this.labelControl11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(28, 13);
     this.labelControl11.TabIndex = 64;
     this.labelControl11.Text = "DVA#";
     //
     // dvaTextBox
     //
     this.dvaTextBox.Location = new System.Drawing.Point(285, 158);
     this.dvaTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.dvaTextBox.Name = "dvaTextBox";
     this.dvaTextBox.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.dvaTextBox.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.dvaTextBox.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.dvaTextBox.Properties.Mask.PlaceHolder = '*';
     this.dvaTextBox.Size = new System.Drawing.Size(86, 20);
     this.dvaTextBox.TabIndex = 18;
     this.dvaTextBox.EditValueChanged += new System.EventHandler(this.DvaTextBoxEditValueChanged);
     //
     // findPostCodeBtn
     //
     this.findPostCodeBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.findPostCodeBtn.Appearance.Options.UseFont = true;
     this.findPostCodeBtn.Location = new System.Drawing.Point(475, 104);
     this.findPostCodeBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.findPostCodeBtn.Name = "findPostCodeBtn";
     this.findPostCodeBtn.Size = new System.Drawing.Size(79, 19);
     this.findPostCodeBtn.TabIndex = 17;
     this.findPostCodeBtn.Text = "Find Post Code";
     this.findPostCodeBtn.Click += new System.EventHandler(this.FindPostCodeBtnClick);
     //
     // labelControl19
     //
     this.labelControl19.Location = new System.Drawing.Point(185, 136);
     this.labelControl19.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(85, 13);
     this.labelControl19.TabIndex = 62;
     this.labelControl19.Text = "State / Post Code";
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(235, 110);
     this.labelControl18.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(34, 13);
     this.labelControl18.TabIndex = 60;
     this.labelControl18.Text = "Suburb";
     //
     // TitleComboBox
     //
     this.TitleComboBox.FormattingEnabled = true;
     this.TitleComboBox.Items.AddRange(new object[] {
     "Mr",
     "Ms",
     "Miss",
     "Mrs",
     "Doctor"});
     this.TitleComboBox.Location = new System.Drawing.Point(285, 25);
     this.TitleComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.TitleComboBox.Name = "TitleComboBox";
     this.TitleComboBox.Size = new System.Drawing.Size(86, 21);
     this.TitleComboBox.TabIndex = 10;
     this.TitleComboBox.TextChanged += new System.EventHandler(this.TitleComboBoxTextChanged);
     //
     // postCodeTextBox
     //
     this.postCodeTextBox.Location = new System.Drawing.Point(387, 132);
     this.postCodeTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.postCodeTextBox.Name = "postCodeTextBox";
     this.postCodeTextBox.Size = new System.Drawing.Size(86, 20);
     this.postCodeTextBox.TabIndex = 61;
     this.postCodeTextBox.TabStop = false;
     this.postCodeTextBox.EditValueChanged += new System.EventHandler(this.PostCodeTextBoxEditValueChanged);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(391, 29);
     this.labelControl2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(35, 13);
     this.labelControl2.TabIndex = 56;
     this.labelControl2.Text = "Gender";
     //
     // stateTextBox
     //
     this.stateTextBox.EditValue = "";
     this.stateTextBox.Location = new System.Drawing.Point(285, 132);
     this.stateTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.stateTextBox.Name = "stateTextBox";
     this.stateTextBox.Size = new System.Drawing.Size(86, 20);
     this.stateTextBox.TabIndex = 60;
     this.stateTextBox.TabStop = false;
     this.stateTextBox.EditValueChanged += new System.EventHandler(this.StateTextBoxEditValueChanged);
     //
     // genderFemaleTickBox
     //
     this.genderFemaleTickBox.Location = new System.Drawing.Point(477, 28);
     this.genderFemaleTickBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.genderFemaleTickBox.Name = "genderFemaleTickBox";
     this.genderFemaleTickBox.Properties.Caption = "Female";
     this.genderFemaleTickBox.Size = new System.Drawing.Size(57, 19);
     this.genderFemaleTickBox.TabIndex = 12;
     this.genderFemaleTickBox.CheckedChanged += new System.EventHandler(this.GenderFemaleTickBoxCheckedChanged);
     //
     // genderMaleTickBox
     //
     this.genderMaleTickBox.Location = new System.Drawing.Point(431, 28);
     this.genderMaleTickBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.genderMaleTickBox.Name = "genderMaleTickBox";
     this.genderMaleTickBox.Properties.Caption = "Male";
     this.genderMaleTickBox.Size = new System.Drawing.Size(41, 19);
     this.genderMaleTickBox.TabIndex = 11;
     this.genderMaleTickBox.CheckedChanged += new System.EventHandler(this.GenderMaleTickBoxCheckedChanged);
     //
     // suburbComboBox
     //
     this.suburbComboBox.DisplayMember = "Location";
     this.suburbComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.suburbComboBox.FormattingEnabled = true;
     this.suburbComboBox.Location = new System.Drawing.Point(285, 104);
     this.suburbComboBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.suburbComboBox.Name = "suburbComboBox";
     this.suburbComboBox.Size = new System.Drawing.Size(187, 22);
     this.suburbComboBox.TabIndex = 16;
     this.suburbComboBox.ValueMember = "PostCodeID";
     this.suburbComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.SuburbComboBoxDrawItem);
     this.suburbComboBox.TextChanged += new System.EventHandler(this.SuburbComboBoxTextChanged);
     this.suburbComboBox.Leave += new System.EventHandler(this.SuburbComboBoxLeave);
     //
     // addressTextEdit
     //
     this.addressTextEdit.Location = new System.Drawing.Point(285, 79);
     this.addressTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.addressTextEdit.Name = "addressTextEdit";
     this.addressTextEdit.Size = new System.Drawing.Size(268, 20);
     this.addressTextEdit.TabIndex = 15;
     this.addressTextEdit.EditValueChanged += new System.EventHandler(this.AddressTextEditEditValueChanged);
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(231, 81);
     this.labelControl10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(39, 13);
     this.labelControl10.TabIndex = 48;
     this.labelControl10.Text = "Address";
     //
     // doBDateEdit
     //
     this.doBDateEdit.EditValue = null;
     this.doBDateEdit.Location = new System.Drawing.Point(285, 51);
     this.doBDateEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.doBDateEdit.Name = "doBDateEdit";
     this.doBDateEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.doBDateEdit.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.doBDateEdit.Size = new System.Drawing.Size(86, 20);
     this.doBDateEdit.TabIndex = 13;
     this.doBDateEdit.EditValueChanged += new System.EventHandler(this.DoBDateEditEditValueChanged);
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(210, 56);
     this.labelControl6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(61, 13);
     this.labelControl6.TabIndex = 40;
     this.labelControl6.Text = "Date of Birth";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(249, 30);
     this.labelControl5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(20, 13);
     this.labelControl5.TabIndex = 39;
     this.labelControl5.Text = "Title";
     //
     // givenNameTextEdit
     //
     this.givenNameTextEdit.Location = new System.Drawing.Point(89, 51);
     this.givenNameTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.givenNameTextEdit.Name = "givenNameTextEdit";
     this.givenNameTextEdit.Size = new System.Drawing.Size(86, 20);
     this.givenNameTextEdit.TabIndex = 5;
     this.givenNameTextEdit.EditValueChanged += new System.EventHandler(this.GivenNameTextEditEditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(9, 54);
     this.labelControl4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(62, 13);
     this.labelControl4.TabIndex = 37;
     this.labelControl4.Text = "Given Names";
     //
     // surnameTextEdit
     //
     this.surnameTextEdit.Location = new System.Drawing.Point(89, 25);
     this.surnameTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.surnameTextEdit.Name = "surnameTextEdit";
     this.surnameTextEdit.Size = new System.Drawing.Size(86, 20);
     this.surnameTextEdit.TabIndex = 4;
     this.surnameTextEdit.EditValueChanged += new System.EventHandler(this.SurnameTextEditEditValueChanged);
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(27, 30);
     this.labelControl3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(42, 13);
     this.labelControl3.TabIndex = 35;
     this.labelControl3.Text = "Surname";
     //
     // applyBtn
     //
     this.applyBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.applyBtn.Appearance.Options.UseFont = true;
     this.applyBtn.Location = new System.Drawing.Point(407, 586);
     this.applyBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.applyBtn.Name = "applyBtn";
     this.applyBtn.Size = new System.Drawing.Size(79, 19);
     this.applyBtn.TabIndex = 75;
     this.applyBtn.Text = "Apply(F12)";
     this.applyBtn.Click += new System.EventHandler(this.ApplyBtnClick);
     //
     // searchResultProgressBar
     //
     this.searchResultProgressBar.Location = new System.Drawing.Point(91, 586);
     this.searchResultProgressBar.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.searchResultProgressBar.Name = "searchResultProgressBar";
     this.searchResultProgressBar.Size = new System.Drawing.Size(198, 19);
     this.searchResultProgressBar.TabIndex = 74;
     //
     // newPatientBtn
     //
     this.newPatientBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.newPatientBtn.Appearance.Options.UseFont = true;
     this.newPatientBtn.Location = new System.Drawing.Point(2, 586);
     this.newPatientBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.newPatientBtn.Name = "newPatientBtn";
     this.newPatientBtn.Size = new System.Drawing.Size(80, 19);
     this.newPatientBtn.TabIndex = 73;
     this.newPatientBtn.TabStop = false;
     this.newPatientBtn.Text = "NEW(CTRL+N)";
     this.newPatientBtn.Click += new System.EventHandler(this.NewPatientBtnClick);
     //
     // cancelBtn
     //
     this.cancelBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.cancelBtn.Appearance.Options.UseFont = true;
     this.cancelBtn.Location = new System.Drawing.Point(491, 586);
     this.cancelBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.cancelBtn.Name = "cancelBtn";
     this.cancelBtn.Size = new System.Drawing.Size(79, 19);
     this.cancelBtn.TabIndex = 72;
     this.cancelBtn.TabStop = false;
     this.cancelBtn.Text = "Cancel(ESC)";
     this.cancelBtn.Click += new System.EventHandler(this.BtnCancelClick);
     //
     // okBtn
     //
     this.okBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.okBtn.Appearance.Options.UseFont = true;
     this.okBtn.Location = new System.Drawing.Point(323, 586);
     this.okBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.okBtn.Name = "okBtn";
     this.okBtn.Size = new System.Drawing.Size(79, 19);
     this.okBtn.TabIndex = 71;
     this.okBtn.Text = "OK(F2)";
     this.okBtn.Click += new System.EventHandler(this.BtnOkClick);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.displayGridControl);
     this.groupBox5.Controls.Add(this.goBtn);
     this.groupBox5.Controls.Add(this.searchFieldTextBox);
     this.groupBox5.Controls.Add(this.label1);
     this.groupBox5.Location = new System.Drawing.Point(2, 2);
     this.groupBox5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox5.Size = new System.Drawing.Size(567, 198);
     this.groupBox5.TabIndex = 0;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Select a Doctor";
     //
     // displayGridControl
     //
     this.displayGridControl.Location = new System.Drawing.Point(0, 33);
     this.displayGridControl.MainView = this.displayGridView;
     this.displayGridControl.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.displayGridControl.Name = "displayGridControl";
     this.displayGridControl.Size = new System.Drawing.Size(562, 162);
     this.displayGridControl.TabIndex = 2;
     this.displayGridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.displayGridView});
     this.displayGridControl.Click += new System.EventHandler(this.DisplayGridControlClick);
     //
     // displayGridView
     //
     this.displayGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4});
     this.displayGridView.GridControl = this.displayGridControl;
     this.displayGridView.Name = "displayGridView";
     this.displayGridView.OptionsBehavior.Editable = false;
     this.displayGridView.OptionsBehavior.FocusLeaveOnTab = true;
     this.displayGridView.OptionsBehavior.ReadOnly = true;
     this.displayGridView.OptionsNavigation.UseTabKey = false;
     this.displayGridView.OptionsView.ShowGroupPanel = false;
     this.displayGridView.ViewCaption = "Results:";
     this.displayGridView.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.DisplayGridViewRowCellClick);
     this.displayGridView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.DisplayGridViewKeyDown);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "First Name";
     this.gridColumn1.FieldName = "FirstNames";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Last Name";
     this.gridColumn2.FieldName = "LastName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Gender";
     this.gridColumn3.FieldName = "Sex";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "DVA #";
     this.gridColumn4.FieldName = "DVANumber";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // goBtn
     //
     this.goBtn.Appearance.Font = new System.Drawing.Font("Tahoma", 6F);
     this.goBtn.Appearance.Options.UseFont = true;
     this.goBtn.Location = new System.Drawing.Point(539, 9);
     this.goBtn.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.goBtn.Name = "goBtn";
     this.goBtn.Size = new System.Drawing.Size(23, 19);
     this.goBtn.TabIndex = 0;
     this.goBtn.TabStop = false;
     this.goBtn.Text = "go";
     this.goBtn.Click += new System.EventHandler(this.GoBtnClick);
     //
     // searchFieldTextBox
     //
     this.searchFieldTextBox.Location = new System.Drawing.Point(279, 10);
     this.searchFieldTextBox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.searchFieldTextBox.Name = "searchFieldTextBox";
     this.searchFieldTextBox.Size = new System.Drawing.Size(256, 21);
     this.searchFieldTextBox.TabIndex = 1;
     this.searchFieldTextBox.TextChanged += new System.EventHandler(this.SearchFieldTextBoxTextChanged);
     this.searchFieldTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SearchFieldTextBoxKeyDown);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(228, 12);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 13);
     this.label1.TabIndex = 7;
     this.label1.Text = "Search";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(11, 81);
     this.labelControl7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(60, 13);
     this.labelControl7.TabIndex = 42;
     this.labelControl7.Text = "Home Phone";
     //
     // homePhoneTextEdit
     //
     this.homePhoneTextEdit.Location = new System.Drawing.Point(89, 79);
     this.homePhoneTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.homePhoneTextEdit.Name = "homePhoneTextEdit";
     this.homePhoneTextEdit.Properties.Mask.EditMask = "(0[2|3|4|7|8]-)?[1-9]\\d\\d\\d\\d\\d\\d\\d";
     this.homePhoneTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.homePhoneTextEdit.Properties.Mask.PlaceHolder = '*';
     this.homePhoneTextEdit.Size = new System.Drawing.Size(86, 20);
     this.homePhoneTextEdit.TabIndex = 6;
     this.homePhoneTextEdit.EditValueChanged += new System.EventHandler(this.HomePhoneTextEditEditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(41, 134);
     this.labelControl8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(30, 13);
     this.labelControl8.TabIndex = 44;
     this.labelControl8.Text = "Mobile";
     //
     // mobileTextEdit
     //
     this.mobileTextEdit.Location = new System.Drawing.Point(89, 129);
     this.mobileTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.mobileTextEdit.Name = "mobileTextEdit";
     this.mobileTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.mobileTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.mobileTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.mobileTextEdit.Properties.Mask.PlaceHolder = '*';
     this.mobileTextEdit.Size = new System.Drawing.Size(86, 20);
     this.mobileTextEdit.TabIndex = 8;
     this.mobileTextEdit.EditValueChanged += new System.EventHandler(this.MobileTextEditEditValueChanged);
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(14, 106);
     this.labelControl9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(58, 13);
     this.labelControl9.TabIndex = 46;
     this.labelControl9.Text = "Work Phone";
     //
     // workPhoneTextEdit
     //
     this.workPhoneTextEdit.Location = new System.Drawing.Point(89, 104);
     this.workPhoneTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.workPhoneTextEdit.Name = "workPhoneTextEdit";
     this.workPhoneTextEdit.Properties.Mask.EditMask = "(0[2|3|4|7|8]-)?[1-9]\\d\\d\\d\\d\\d\\d\\d";
     this.workPhoneTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.workPhoneTextEdit.Properties.Mask.PlaceHolder = '*';
     this.workPhoneTextEdit.Size = new System.Drawing.Size(86, 20);
     this.workPhoneTextEdit.TabIndex = 7;
     this.workPhoneTextEdit.EditValueChanged += new System.EventHandler(this.WorkPhoneTextEditEditValueChanged);
     //
     // emailTextEdit
     //
     this.emailTextEdit.Location = new System.Drawing.Point(89, 156);
     this.emailTextEdit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.emailTextEdit.Name = "emailTextEdit";
     this.emailTextEdit.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.None;
     this.emailTextEdit.Properties.Mask.EditMask = "04\\d\\d\\d\\d\\d\\d\\d\\d";
     this.emailTextEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.emailTextEdit.Properties.Mask.PlaceHolder = '*';
     this.emailTextEdit.Size = new System.Drawing.Size(86, 20);
     this.emailTextEdit.TabIndex = 9;
     this.emailTextEdit.EditValueChanged += new System.EventHandler(this.EmailTextEditEditValueChanged);
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(46, 161);
     this.labelControl17.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(24, 13);
     this.labelControl17.TabIndex = 59;
     this.labelControl17.Text = "Email";
     //
     // patientViewForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(571, 607);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.applyBtn);
     this.Controls.Add(this.searchResultProgressBar);
     this.Controls.Add(this.newPatientBtn);
     this.Controls.Add(this.cancelBtn);
     this.Controls.Add(this.okBtn);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.patientDetailsGroupBox);
     this.KeyPreview = true;
     this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Name = "patientViewForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "NewPatientViewForm";
     this.Load += new System.EventHandler(this.PatientViewFormLoad);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PatientViewFormKeyDown);
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MedicalConditionsComboBoxEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerNoCheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmokerYesCheckEdit.Properties)).EndInit();
     this.patientDetailsGroupBox.ResumeLayout(false);
     this.patientDetailsGroupBox.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.claimNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dvaTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.postCodeTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.stateTextBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderFemaleTickBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.genderMaleTickBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.addressTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.doBDateEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.givenNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.surnameTextEdit.Properties)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.displayGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.homePhoneTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mobileTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.workPhoneTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTextEdit.Properties)).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.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.reasonTE = new DevExpress.XtraEditors.TextEdit();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.hphoneCI = new DevExpress.XtraBars.BarCheckItem();
     this.addphoneCI = new DevExpress.XtraBars.BarCheckItem();
     this.emailCI = new DevExpress.XtraBars.BarCheckItem();
     this.skypeCI = new DevExpress.XtraBars.BarCheckItem();
     this.vkCI = new DevExpress.XtraBars.BarCheckItem();
     this.wappCI = new DevExpress.XtraBars.BarCheckItem();
     this.endDE = new DevExpress.XtraEditors.DateEdit();
     this.startDE = new DevExpress.XtraEditors.DateEdit();
     this.dropDownButton1 = new DevExpress.XtraEditors.DropDownButton();
     this.contactAddDD = new DevExpress.XtraBars.PopupMenu(this.components);
     this.cancelButton = new DevExpress.XtraEditors.SimpleButton();
     this.discountCE = new DevExpress.XtraEditors.CheckEdit();
     this.groupnoCB = new DevExpress.XtraEditors.ComboBoxEdit();
     this.discountTE = new DevExpress.XtraEditors.TextEdit();
     this.costTE = new DevExpress.XtraEditors.TextEdit();
     this.sourceCB = new DevExpress.XtraEditors.ComboBoxEdit();
     this.vkTE = new DevExpress.XtraEditors.TextEdit();
     this.skypeTE = new DevExpress.XtraEditors.TextEdit();
     this.emailTE = new DevExpress.XtraEditors.TextEdit();
     this.addphoneTE = new DevExpress.XtraEditors.TextEdit();
     this.homephoneTE = new DevExpress.XtraEditors.TextEdit();
     this.mainphoneTE = new DevExpress.XtraEditors.TextEdit();
     this.pnameTE = new DevExpress.XtraEditors.TextEdit();
     this.underageCE = new DevExpress.XtraEditors.CheckEdit();
     this.lnameTE = new DevExpress.XtraEditors.TextEdit();
     this.fnameTE = new DevExpress.XtraEditors.TextEdit();
     this.okButton = new DevExpress.XtraEditors.SimpleButton();
     this.wappTE = new DevExpress.XtraEditors.ComboBoxEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.okButtonControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.infoCG = new DevExpress.XtraLayout.TabbedControlGroup();
     this.additionalCG = new DevExpress.XtraLayout.LayoutControlGroup();
     this.groupnoControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.sourceControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.startCI = new DevExpress.XtraLayout.LayoutControlItem();
     this.endCI = new DevExpress.XtraLayout.LayoutControlItem();
     this.reasonCI = new DevExpress.XtraLayout.LayoutControlItem();
     this.simpleSeparator2 = new DevExpress.XtraLayout.SimpleSeparator();
     this.simpleSeparator3 = new DevExpress.XtraLayout.SimpleSeparator();
     this.contactsCG = new DevExpress.XtraLayout.LayoutControlGroup();
     this.mainphoneControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.homephoneControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.addphoneControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.simpleSeparator1 = new DevExpress.XtraLayout.SimpleSeparator();
     this.emailControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.vkControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.skypeControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.wappControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.addContactCI = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.paymentsCG = new DevExpress.XtraLayout.LayoutControlGroup();
     this.costControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.discountControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.simpleSeparator5 = new DevExpress.XtraLayout.SimpleSeparator();
     this.simpleLabelItem1 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.discountCBControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.groupPayPeriod = new DevExpress.XtraLayout.SimpleLabelItem();
     this.groupPayLabel = new DevExpress.XtraLayout.SimpleLabelItem();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.fnameControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.pnameControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.lnameControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.cancelButtonControl = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.reasonTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.endDE.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.endDE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.startDE.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.startDE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactAddDD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountCE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupnoCB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.costTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sourceCB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vkTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.skypeTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.addphoneTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.homephoneTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainphoneTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnameTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.underageCE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lnameTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fnameTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.wappTE.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.okButtonControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.infoCG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.additionalCG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupnoControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sourceControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.startCI)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.endCI)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.reasonCI)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactsCG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainphoneControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.homephoneControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.addphoneControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vkControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.skypeControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.wappControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.addContactCI)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paymentsCG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.costControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountCBControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPayPeriod)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPayLabel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fnameControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnameControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lnameControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cancelButtonControl)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.AutoScroll = false;
     this.layoutControl1.Controls.Add(this.reasonTE);
     this.layoutControl1.Controls.Add(this.endDE);
     this.layoutControl1.Controls.Add(this.startDE);
     this.layoutControl1.Controls.Add(this.dropDownButton1);
     this.layoutControl1.Controls.Add(this.cancelButton);
     this.layoutControl1.Controls.Add(this.discountCE);
     this.layoutControl1.Controls.Add(this.groupnoCB);
     this.layoutControl1.Controls.Add(this.discountTE);
     this.layoutControl1.Controls.Add(this.costTE);
     this.layoutControl1.Controls.Add(this.sourceCB);
     this.layoutControl1.Controls.Add(this.vkTE);
     this.layoutControl1.Controls.Add(this.skypeTE);
     this.layoutControl1.Controls.Add(this.emailTE);
     this.layoutControl1.Controls.Add(this.addphoneTE);
     this.layoutControl1.Controls.Add(this.homephoneTE);
     this.layoutControl1.Controls.Add(this.mainphoneTE);
     this.layoutControl1.Controls.Add(this.pnameTE);
     this.layoutControl1.Controls.Add(this.underageCE);
     this.layoutControl1.Controls.Add(this.lnameTE);
     this.layoutControl1.Controls.Add(this.fnameTE);
     this.layoutControl1.Controls.Add(this.okButton);
     this.layoutControl1.Controls.Add(this.wappTE);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(578, 296, 552, 465);
     this.layoutControl1.OptionsFocus.ActivateSelectedControlOnGotFocus = false;
     this.layoutControl1.OptionsFocus.AllowFocusGroups = false;
     this.layoutControl1.OptionsFocus.AllowFocusReadonlyEditors = false;
     this.layoutControl1.OptionsFocus.AllowFocusTabbedGroups = false;
     this.layoutControl1.OptionsFocus.EnableAutoTabOrder = false;
     this.layoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.CustomSize;
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(290, 410);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // reasonTE
     //
     this.reasonTE.Location = new System.Drawing.Point(104, 281);
     this.reasonTE.MenuManager = this.barManager1;
     this.reasonTE.Name = "reasonTE";
     this.reasonTE.Size = new System.Drawing.Size(174, 20);
     this.reasonTE.StyleController = this.layoutControl1;
     this.reasonTE.TabIndex = 33;
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.hphoneCI,
     this.addphoneCI,
     this.emailCI,
     this.skypeCI,
     this.vkCI,
     this.wappCI});
     this.barManager1.MaxItemId = 9;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(290, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 410);
     this.barDockControlBottom.Size = new System.Drawing.Size(290, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 410);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(290, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 410);
     //
     // hphoneCI
     //
     this.hphoneCI.Caption = "Home phone";
     this.hphoneCI.Id = 8;
     this.hphoneCI.Name = "hphoneCI";
     this.hphoneCI.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.hphoneCI_CheckedChanged);
     //
     // addphoneCI
     //
     this.addphoneCI.Caption = "Additional phone";
     this.addphoneCI.Id = 0;
     this.addphoneCI.Name = "addphoneCI";
     this.addphoneCI.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.addphoneCI_CheckedChanged);
     //
     // emailCI
     //
     this.emailCI.Caption = "Email";
     this.emailCI.Id = 3;
     this.emailCI.Name = "emailCI";
     this.emailCI.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.emailCI_CheckedChanged);
     //
     // skypeCI
     //
     this.skypeCI.Caption = "Skype";
     this.skypeCI.Id = 2;
     this.skypeCI.Name = "skypeCI";
     this.skypeCI.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.skypeCI_CheckedChanged);
     //
     // vkCI
     //
     this.vkCI.Caption = "VK";
     this.vkCI.Id = 7;
     this.vkCI.Name = "vkCI";
     this.vkCI.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.vkCI_CheckedChanged);
     //
     // wappCI
     //
     this.wappCI.Caption = "Whatsapp";
     this.wappCI.CheckBoxVisibility = DevExpress.XtraBars.CheckBoxVisibility.BeforeText;
     this.wappCI.Id = 6;
     this.wappCI.Name = "wappCI";
     this.wappCI.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.wappCI_CheckedChanged);
     //
     // endDE
     //
     this.endDE.EditValue = null;
     this.endDE.Location = new System.Drawing.Point(104, 257);
     this.endDE.MenuManager = this.barManager1;
     this.endDE.Name = "endDE";
     this.endDE.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.endDE.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.endDE.Size = new System.Drawing.Size(174, 20);
     this.endDE.StyleController = this.layoutControl1;
     this.endDE.TabIndex = 32;
     //
     // startDE
     //
     this.startDE.EditValue = null;
     this.startDE.Location = new System.Drawing.Point(104, 233);
     this.startDE.MenuManager = this.barManager1;
     this.startDE.Name = "startDE";
     this.startDE.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.startDE.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.startDE.Size = new System.Drawing.Size(174, 20);
     this.startDE.StyleController = this.layoutControl1;
     this.startDE.TabIndex = 31;
     //
     // dropDownButton1
     //
     this.dropDownButton1.DropDownArrowStyle = DevExpress.XtraEditors.DropDownArrowStyle.Hide;
     this.dropDownButton1.DropDownControl = this.contactAddDD;
     this.dropDownButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.dropDownButton1.Location = new System.Drawing.Point(195, 337);
     this.dropDownButton1.Name = "dropDownButton1";
     this.dropDownButton1.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.dropDownButton1.Size = new System.Drawing.Size(83, 22);
     this.dropDownButton1.StyleController = this.layoutControl1;
     this.dropDownButton1.TabIndex = 30;
     this.dropDownButton1.Text = "Add / Remove";
     //
     // contactAddDD
     //
     this.contactAddDD.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.hphoneCI),
     new DevExpress.XtraBars.LinkPersistInfo(this.addphoneCI),
     new DevExpress.XtraBars.LinkPersistInfo(this.emailCI),
     new DevExpress.XtraBars.LinkPersistInfo(this.skypeCI),
     new DevExpress.XtraBars.LinkPersistInfo(this.vkCI),
     new DevExpress.XtraBars.LinkPersistInfo(this.wappCI)});
     this.contactAddDD.Manager = this.barManager1;
     this.contactAddDD.Name = "contactAddDD";
     this.contactAddDD.BeforePopup += new System.ComponentModel.CancelEventHandler(this.contactAddDD_BeforePopup);
     //
     // cancelButton
     //
     this.cancelButton.Location = new System.Drawing.Point(215, 383);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(73, 22);
     this.cancelButton.StyleController = this.layoutControl1;
     this.cancelButton.TabIndex = 29;
     this.cancelButton.Text = "Cancel";
     this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
     //
     // discountCE
     //
     this.discountCE.AutoSizeInLayoutControl = true;
     this.discountCE.EnterMoveNextControl = true;
     this.discountCE.Location = new System.Drawing.Point(12, 167);
     this.discountCE.Name = "discountCE";
     this.discountCE.Properties.Caption = "";
     this.discountCE.Size = new System.Drawing.Size(21, 19);
     this.discountCE.StyleController = this.layoutControl1;
     this.discountCE.TabIndex = 28;
     this.discountCE.CheckedChanged += new System.EventHandler(this.checkEdit2_CheckedChanged);
     //
     // groupnoCB
     //
     this.groupnoCB.EnterMoveNextControl = true;
     this.groupnoCB.Location = new System.Drawing.Point(104, 143);
     this.groupnoCB.Name = "groupnoCB";
     this.groupnoCB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.groupnoCB.Size = new System.Drawing.Size(174, 20);
     this.groupnoCB.StyleController = this.layoutControl1;
     this.groupnoCB.TabIndex = 24;
     //
     // discountTE
     //
     this.discountTE.Enabled = false;
     this.discountTE.EnterMoveNextControl = true;
     this.discountTE.Location = new System.Drawing.Point(96, 167);
     this.discountTE.Name = "discountTE";
     this.discountTE.Size = new System.Drawing.Size(182, 20);
     this.discountTE.StyleController = this.layoutControl1;
     this.discountTE.TabIndex = 22;
     //
     // costTE
     //
     this.costTE.EnterMoveNextControl = true;
     this.costTE.Location = new System.Drawing.Point(95, 143);
     this.costTE.Name = "costTE";
     this.costTE.Size = new System.Drawing.Size(183, 20);
     this.costTE.StyleController = this.layoutControl1;
     this.costTE.TabIndex = 21;
     //
     // sourceCB
     //
     this.sourceCB.EnterMoveNextControl = true;
     this.sourceCB.Location = new System.Drawing.Point(104, 188);
     this.sourceCB.Name = "sourceCB";
     this.sourceCB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.sourceCB.Properties.Items.AddRange(new object[] {
     "Outdoor",
     "Ads",
     "Recommendation"});
     this.sourceCB.Size = new System.Drawing.Size(174, 20);
     this.sourceCB.StyleController = this.layoutControl1;
     this.sourceCB.TabIndex = 20;
     //
     // vkTE
     //
     this.vkTE.EnterMoveNextControl = true;
     this.vkTE.Location = new System.Drawing.Point(97, 284);
     this.vkTE.Name = "vkTE";
     this.vkTE.Size = new System.Drawing.Size(181, 20);
     this.vkTE.StyleController = this.layoutControl1;
     this.vkTE.TabIndex = 17;
     //
     // skypeTE
     //
     this.skypeTE.EnterMoveNextControl = true;
     this.skypeTE.Location = new System.Drawing.Point(97, 260);
     this.skypeTE.Name = "skypeTE";
     this.skypeTE.Size = new System.Drawing.Size(181, 20);
     this.skypeTE.StyleController = this.layoutControl1;
     this.skypeTE.TabIndex = 14;
     //
     // emailTE
     //
     this.emailTE.EditValue = "";
     this.emailTE.EnterMoveNextControl = true;
     this.emailTE.Location = new System.Drawing.Point(97, 236);
     this.emailTE.Name = "emailTE";
     this.emailTE.Properties.Mask.EditMask = "[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}";
     this.emailTE.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.emailTE.Size = new System.Drawing.Size(181, 20);
     this.emailTE.StyleController = this.layoutControl1;
     this.emailTE.TabIndex = 13;
     //
     // addphoneTE
     //
     this.addphoneTE.EditValue = "";
     this.addphoneTE.EnterMoveNextControl = true;
     this.addphoneTE.Location = new System.Drawing.Point(97, 191);
     this.addphoneTE.Name = "addphoneTE";
     this.addphoneTE.Properties.Mask.EditMask = "(\\7\\d?\\d?) \\d\\d\\d-\\d\\d-\\d\\d";
     this.addphoneTE.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.addphoneTE.Size = new System.Drawing.Size(181, 20);
     this.addphoneTE.StyleController = this.layoutControl1;
     this.addphoneTE.TabIndex = 12;
     //
     // homephoneTE
     //
     this.homephoneTE.EnterMoveNextControl = true;
     this.homephoneTE.Location = new System.Drawing.Point(97, 167);
     this.homephoneTE.Name = "homephoneTE";
     this.homephoneTE.Properties.Mask.EditMask = "(\\7\\2\\7) \\d\\d\\d-\\d\\d-\\d\\d";
     this.homephoneTE.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.homephoneTE.Size = new System.Drawing.Size(181, 20);
     this.homephoneTE.StyleController = this.layoutControl1;
     this.homephoneTE.TabIndex = 11;
     //
     // mainphoneTE
     //
     this.mainphoneTE.EnterMoveNextControl = true;
     this.mainphoneTE.Location = new System.Drawing.Point(97, 143);
     this.mainphoneTE.Name = "mainphoneTE";
     this.mainphoneTE.Properties.Mask.EditMask = "(\\7\\d?\\d?) \\d\\d\\d-\\d\\d-\\d\\d";
     this.mainphoneTE.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Regular;
     this.mainphoneTE.Size = new System.Drawing.Size(181, 20);
     this.mainphoneTE.StyleController = this.layoutControl1;
     this.mainphoneTE.TabIndex = 10;
     //
     // pnameTE
     //
     this.pnameTE.EnterMoveNextControl = true;
     this.pnameTE.Location = new System.Drawing.Point(96, 74);
     this.pnameTE.Name = "pnameTE";
     this.pnameTE.Size = new System.Drawing.Size(192, 20);
     this.pnameTE.StyleController = this.layoutControl1;
     this.pnameTE.TabIndex = 8;
     //
     // underageCE
     //
     this.underageCE.EnterMoveNextControl = true;
     this.underageCE.Location = new System.Drawing.Point(210, 50);
     this.underageCE.Name = "underageCE";
     this.underageCE.Properties.AllowFocused = false;
     this.underageCE.Properties.Caption = "Underage";
     this.underageCE.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.underageCE.Size = new System.Drawing.Size(78, 19);
     this.underageCE.StyleController = this.layoutControl1;
     this.underageCE.TabIndex = 7;
     this.underageCE.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // lnameTE
     //
     this.lnameTE.EnterMoveNextControl = true;
     this.lnameTE.Location = new System.Drawing.Point(96, 26);
     this.lnameTE.Name = "lnameTE";
     this.lnameTE.Size = new System.Drawing.Size(192, 20);
     this.lnameTE.StyleController = this.layoutControl1;
     this.lnameTE.TabIndex = 6;
     //
     // fnameTE
     //
     this.fnameTE.EnterMoveNextControl = true;
     this.fnameTE.Location = new System.Drawing.Point(96, 2);
     this.fnameTE.Name = "fnameTE";
     this.fnameTE.Size = new System.Drawing.Size(192, 20);
     this.fnameTE.StyleController = this.layoutControl1;
     this.fnameTE.TabIndex = 5;
     //
     // okButton
     //
     this.okButton.Location = new System.Drawing.Point(127, 383);
     this.okButton.Name = "okButton";
     this.okButton.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
     this.okButton.Size = new System.Drawing.Size(75, 22);
     this.okButton.StyleController = this.layoutControl1;
     this.okButton.TabIndex = 4;
     this.okButton.Text = "OK";
     this.okButton.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // wappTE
     //
     this.wappTE.EnterMoveNextControl = true;
     this.wappTE.Location = new System.Drawing.Point(97, 308);
     this.wappTE.Name = "wappTE";
     this.wappTE.Properties.AllowFocused = false;
     this.wappTE.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
     this.wappTE.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.wappTE.Properties.NullValuePrompt = "Fill main or add. phone numbers";
     this.wappTE.Properties.ShowNullValuePromptWhenFocused = true;
     this.wappTE.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.wappTE.Size = new System.Drawing.Size(181, 20);
     this.wappTE.StyleController = this.layoutControl1;
     this.wappTE.TabIndex = 16;
     this.wappTE.Enter += new System.EventHandler(this.wappTE_Enter);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.False;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.okButtonControl,
     this.infoCG,
     this.fnameControl,
     this.pnameControl,
     this.lnameControl,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.emptySpaceItem3,
     this.cancelButtonControl});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Size = new System.Drawing.Size(290, 410);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // okButtonControl
     //
     this.okButtonControl.Control = this.okButton;
     this.okButtonControl.CustomizationFormText = "okButtonControl";
     this.okButtonControl.Location = new System.Drawing.Point(125, 381);
     this.okButtonControl.Name = "okButtonControl";
     this.okButtonControl.Size = new System.Drawing.Size(79, 29);
     this.okButtonControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.okButtonControl.Text = "okButtonControl";
     this.okButtonControl.TextSize = new System.Drawing.Size(0, 0);
     this.okButtonControl.TextToControlDistance = 0;
     this.okButtonControl.TextVisible = false;
     //
     // infoCG
     //
     this.infoCG.CustomizationFormText = "infoCG";
     this.infoCG.Location = new System.Drawing.Point(0, 96);
     this.infoCG.Name = "infoCG";
     this.infoCG.SelectedTabPage = this.contactsCG;
     this.infoCG.SelectedTabPageIndex = 0;
     this.infoCG.Size = new System.Drawing.Size(290, 285);
     this.infoCG.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 10, 10);
     this.infoCG.TabPages.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.contactsCG,
     this.additionalCG,
     this.paymentsCG});
     this.infoCG.Text = "infoCG";
     this.infoCG.SelectedPageChanged += new DevExpress.XtraLayout.LayoutTabPageChangedEventHandler(this.tabbedControlGroup1_SelectedPageChanged);
     //
     // additionalCG
     //
     this.additionalCG.CustomizationFormText = "Additional Info";
     this.additionalCG.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.groupnoControl,
     this.sourceControl,
     this.startCI,
     this.endCI,
     this.reasonCI,
     this.simpleSeparator2,
     this.simpleSeparator3});
     this.additionalCG.Location = new System.Drawing.Point(0, 0);
     this.additionalCG.Name = "additionalCG";
     this.additionalCG.Size = new System.Drawing.Size(270, 220);
     this.additionalCG.Text = "Organizational";
     //
     // groupnoControl
     //
     this.groupnoControl.Control = this.groupnoCB;
     this.groupnoControl.CustomizationFormText = "Group no.";
     this.groupnoControl.Location = new System.Drawing.Point(0, 0);
     this.groupnoControl.Name = "groupnoControl";
     this.groupnoControl.Size = new System.Drawing.Size(270, 24);
     this.groupnoControl.Text = "Group no.";
     this.groupnoControl.TextSize = new System.Drawing.Size(89, 20);
     //
     // sourceControl
     //
     this.sourceControl.Control = this.sourceCB;
     this.sourceControl.CustomizationFormText = "(!) Source";
     this.sourceControl.Location = new System.Drawing.Point(0, 45);
     this.sourceControl.Name = "sourceControl";
     this.sourceControl.Size = new System.Drawing.Size(270, 24);
     this.sourceControl.Text = "[ ! ] Source";
     this.sourceControl.TextSize = new System.Drawing.Size(89, 20);
     //
     // startCI
     //
     this.startCI.Control = this.startDE;
     this.startCI.CustomizationFormText = "Start date";
     this.startCI.Location = new System.Drawing.Point(0, 90);
     this.startCI.Name = "startCI";
     this.startCI.Size = new System.Drawing.Size(270, 24);
     this.startCI.Text = "Start date";
     this.startCI.TextSize = new System.Drawing.Size(89, 20);
     //
     // endCI
     //
     this.endCI.Control = this.endDE;
     this.endCI.CustomizationFormText = "End date";
     this.endCI.Location = new System.Drawing.Point(0, 114);
     this.endCI.Name = "endCI";
     this.endCI.Size = new System.Drawing.Size(270, 24);
     this.endCI.Text = "End date";
     this.endCI.TextSize = new System.Drawing.Size(89, 20);
     this.endCI.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // reasonCI
     //
     this.reasonCI.Control = this.reasonTE;
     this.reasonCI.CustomizationFormText = "Reason";
     this.reasonCI.Location = new System.Drawing.Point(0, 138);
     this.reasonCI.Name = "reasonCI";
     this.reasonCI.Size = new System.Drawing.Size(270, 82);
     this.reasonCI.Text = "Reason";
     this.reasonCI.TextSize = new System.Drawing.Size(89, 20);
     this.reasonCI.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // simpleSeparator2
     //
     this.simpleSeparator2.AllowHotTrack = false;
     this.simpleSeparator2.CustomizationFormText = "simpleSeparator2";
     this.simpleSeparator2.Location = new System.Drawing.Point(0, 24);
     this.simpleSeparator2.Name = "simpleSeparator2";
     this.simpleSeparator2.Size = new System.Drawing.Size(270, 21);
     this.simpleSeparator2.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 10, 10);
     this.simpleSeparator2.Text = "simpleSeparator2";
     //
     // simpleSeparator3
     //
     this.simpleSeparator3.AllowHotTrack = false;
     this.simpleSeparator3.CustomizationFormText = "simpleSeparator3";
     this.simpleSeparator3.Location = new System.Drawing.Point(0, 69);
     this.simpleSeparator3.Name = "simpleSeparator3";
     this.simpleSeparator3.Size = new System.Drawing.Size(270, 21);
     this.simpleSeparator3.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 10, 10);
     this.simpleSeparator3.Text = "simpleSeparator3";
     //
     // contactsCG
     //
     this.contactsCG.CustomizationFormText = "Contacts";
     this.contactsCG.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.mainphoneControl,
     this.homephoneControl,
     this.addphoneControl,
     this.simpleSeparator1,
     this.emailControl,
     this.vkControl,
     this.skypeControl,
     this.wappControl,
     this.addContactCI,
     this.emptySpaceItem4});
     this.contactsCG.Location = new System.Drawing.Point(0, 0);
     this.contactsCG.Name = "contactsCG";
     this.contactsCG.Size = new System.Drawing.Size(270, 220);
     this.contactsCG.Text = "Contacts";
     //
     // mainphoneControl
     //
     this.mainphoneControl.Control = this.mainphoneTE;
     this.mainphoneControl.CustomizationFormText = "Main phone no.";
     this.mainphoneControl.Location = new System.Drawing.Point(0, 0);
     this.mainphoneControl.Name = "mainphoneControl";
     this.mainphoneControl.Size = new System.Drawing.Size(270, 24);
     this.mainphoneControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.mainphoneControl.Text = "Main phone no.";
     this.mainphoneControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.mainphoneControl.TextSize = new System.Drawing.Size(80, 20);
     this.mainphoneControl.TextToControlDistance = 5;
     //
     // homephoneControl
     //
     this.homephoneControl.Control = this.homephoneTE;
     this.homephoneControl.CustomizationFormText = "Home phone no.";
     this.homephoneControl.Location = new System.Drawing.Point(0, 24);
     this.homephoneControl.Name = "homephoneControl";
     this.homephoneControl.Size = new System.Drawing.Size(270, 24);
     this.homephoneControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.homephoneControl.Text = "Home phone no.";
     this.homephoneControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.homephoneControl.TextSize = new System.Drawing.Size(80, 20);
     this.homephoneControl.TextToControlDistance = 5;
     this.homephoneControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // addphoneControl
     //
     this.addphoneControl.Control = this.addphoneTE;
     this.addphoneControl.CustomizationFormText = "Add. phone no.";
     this.addphoneControl.Location = new System.Drawing.Point(0, 48);
     this.addphoneControl.Name = "addphoneControl";
     this.addphoneControl.Size = new System.Drawing.Size(270, 24);
     this.addphoneControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.addphoneControl.Text = "Add. phone no.";
     this.addphoneControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.addphoneControl.TextSize = new System.Drawing.Size(80, 20);
     this.addphoneControl.TextToControlDistance = 5;
     this.addphoneControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // simpleSeparator1
     //
     this.simpleSeparator1.AllowHotTrack = false;
     this.simpleSeparator1.CustomizationFormText = "simpleSeparator1";
     this.simpleSeparator1.Location = new System.Drawing.Point(0, 72);
     this.simpleSeparator1.Name = "simpleSeparator1";
     this.simpleSeparator1.Size = new System.Drawing.Size(270, 21);
     this.simpleSeparator1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.simpleSeparator1.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 10, 10);
     this.simpleSeparator1.Text = "simpleSeparator1";
     this.simpleSeparator1.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // emailControl
     //
     this.emailControl.Control = this.emailTE;
     this.emailControl.CustomizationFormText = "email";
     this.emailControl.Location = new System.Drawing.Point(0, 93);
     this.emailControl.Name = "emailControl";
     this.emailControl.Size = new System.Drawing.Size(270, 24);
     this.emailControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.emailControl.Text = "Email";
     this.emailControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.emailControl.TextSize = new System.Drawing.Size(80, 20);
     this.emailControl.TextToControlDistance = 5;
     this.emailControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // vkControl
     //
     this.vkControl.Control = this.vkTE;
     this.vkControl.CustomizationFormText = "VK";
     this.vkControl.Location = new System.Drawing.Point(0, 141);
     this.vkControl.Name = "vkControl";
     this.vkControl.Size = new System.Drawing.Size(270, 24);
     this.vkControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.vkControl.Text = "VK";
     this.vkControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.vkControl.TextSize = new System.Drawing.Size(80, 20);
     this.vkControl.TextToControlDistance = 5;
     this.vkControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // skypeControl
     //
     this.skypeControl.Control = this.skypeTE;
     this.skypeControl.CustomizationFormText = "Skype";
     this.skypeControl.Location = new System.Drawing.Point(0, 117);
     this.skypeControl.Name = "skypeControl";
     this.skypeControl.Size = new System.Drawing.Size(270, 24);
     this.skypeControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.skypeControl.Text = "Skype";
     this.skypeControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.skypeControl.TextSize = new System.Drawing.Size(80, 20);
     this.skypeControl.TextToControlDistance = 5;
     this.skypeControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // wappControl
     //
     this.wappControl.Control = this.wappTE;
     this.wappControl.CustomizationFormText = "Watsapp";
     this.wappControl.Location = new System.Drawing.Point(0, 165);
     this.wappControl.Name = "wappControl";
     this.wappControl.Size = new System.Drawing.Size(270, 24);
     this.wappControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.wappControl.Text = "Watsapp";
     this.wappControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.wappControl.TextSize = new System.Drawing.Size(80, 20);
     this.wappControl.TextToControlDistance = 5;
     this.wappControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // addContactCI
     //
     this.addContactCI.Control = this.dropDownButton1;
     this.addContactCI.CustomizationFormText = "addContactCI";
     this.addContactCI.Location = new System.Drawing.Point(183, 189);
     this.addContactCI.Name = "addContactCI";
     this.addContactCI.Size = new System.Drawing.Size(87, 31);
     this.addContactCI.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 5, 0);
     this.addContactCI.Text = "addContactCI";
     this.addContactCI.TextSize = new System.Drawing.Size(0, 0);
     this.addContactCI.TextToControlDistance = 0;
     this.addContactCI.TextVisible = false;
     //
     // emptySpaceItem4
     //
     this.emptySpaceItem4.AllowHotTrack = false;
     this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
     this.emptySpaceItem4.Location = new System.Drawing.Point(0, 189);
     this.emptySpaceItem4.MaxSize = new System.Drawing.Size(183, 0);
     this.emptySpaceItem4.MinSize = new System.Drawing.Size(183, 24);
     this.emptySpaceItem4.Name = "emptySpaceItem4";
     this.emptySpaceItem4.Size = new System.Drawing.Size(183, 31);
     this.emptySpaceItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem4.Text = "emptySpaceItem4";
     this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
     //
     // paymentsCG
     //
     this.paymentsCG.CustomizationFormText = "Payments";
     this.paymentsCG.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.costControl,
     this.discountControl,
     this.simpleSeparator5,
     this.simpleLabelItem1,
     this.discountCBControl,
     this.emptySpaceItem2,
     this.groupPayPeriod,
     this.groupPayLabel,
     this.emptySpaceItem5});
     this.paymentsCG.Location = new System.Drawing.Point(0, 0);
     this.paymentsCG.Name = "paymentsCG";
     this.paymentsCG.Size = new System.Drawing.Size(270, 220);
     this.paymentsCG.Text = "Payments";
     //
     // costControl
     //
     this.costControl.Control = this.costTE;
     this.costControl.CustomizationFormText = "Tuition costs";
     this.costControl.Location = new System.Drawing.Point(0, 0);
     this.costControl.Name = "costControl";
     this.costControl.Size = new System.Drawing.Size(270, 24);
     this.costControl.Text = "Tuition costs";
     this.costControl.TextSize = new System.Drawing.Size(80, 20);
     //
     // discountControl
     //
     this.discountControl.Control = this.discountTE;
     this.discountControl.CustomizationFormText = "Discount";
     this.discountControl.Location = new System.Drawing.Point(25, 24);
     this.discountControl.Name = "discountControl";
     this.discountControl.Size = new System.Drawing.Size(245, 24);
     this.discountControl.Text = "Discount";
     this.discountControl.TextSize = new System.Drawing.Size(56, 20);
     //
     // simpleSeparator5
     //
     this.simpleSeparator5.AllowHotTrack = false;
     this.simpleSeparator5.CustomizationFormText = "simpleSeparator5";
     this.simpleSeparator5.Location = new System.Drawing.Point(0, 48);
     this.simpleSeparator5.Name = "simpleSeparator5";
     this.simpleSeparator5.Size = new System.Drawing.Size(270, 21);
     this.simpleSeparator5.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 10, 10);
     this.simpleSeparator5.Text = "simpleSeparator5";
     //
     // simpleLabelItem1
     //
     this.simpleLabelItem1.AllowHotTrack = false;
     this.simpleLabelItem1.CustomizationFormText = "Current payment period";
     this.simpleLabelItem1.Location = new System.Drawing.Point(0, 69);
     this.simpleLabelItem1.Name = "simpleLabelItem1";
     this.simpleLabelItem1.Size = new System.Drawing.Size(83, 24);
     this.simpleLabelItem1.Text = "Payment period:";
     this.simpleLabelItem1.TextSize = new System.Drawing.Size(50, 20);
     //
     // discountCBControl
     //
     this.discountCBControl.Control = this.discountCE;
     this.discountCBControl.ControlAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.discountCBControl.CustomizationFormText = "discountCBControl";
     this.discountCBControl.Location = new System.Drawing.Point(0, 24);
     this.discountCBControl.Name = "discountCBControl";
     this.discountCBControl.Size = new System.Drawing.Size(25, 24);
     this.discountCBControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.discountCBControl.Text = "discountCBControl";
     this.discountCBControl.TextSize = new System.Drawing.Size(0, 0);
     this.discountCBControl.TextToControlDistance = 0;
     this.discountCBControl.TextVisible = false;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(0, 117);
     this.emptySpaceItem2.MinSize = new System.Drawing.Size(104, 24);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(270, 103);
     this.emptySpaceItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // groupPayPeriod
     //
     this.groupPayPeriod.AllowHotTrack = false;
     this.groupPayPeriod.AppearanceItemCaption.ForeColor = System.Drawing.SystemColors.GrayText;
     this.groupPayPeriod.AppearanceItemCaption.Options.UseForeColor = true;
     this.groupPayPeriod.CustomizationFormText = "22.12.2014 - 02.02.2014";
     this.groupPayPeriod.Location = new System.Drawing.Point(83, 93);
     this.groupPayPeriod.Name = "groupPayPeriod";
     this.groupPayPeriod.Size = new System.Drawing.Size(187, 24);
     this.groupPayPeriod.Spacing = new DevExpress.XtraLayout.Utils.Padding(5, 0, 0, 0);
     this.groupPayPeriod.Text = "22.12.2014 - 02.02.2014";
     this.groupPayPeriod.TextSize = new System.Drawing.Size(50, 20);
     //
     // groupPayLabel
     //
     this.groupPayLabel.AllowHotTrack = false;
     this.groupPayLabel.AppearanceItemCaption.ForeColor = System.Drawing.SystemColors.GrayText;
     this.groupPayLabel.AppearanceItemCaption.Options.UseForeColor = true;
     this.groupPayLabel.CustomizationFormText = "group 4-14";
     this.groupPayLabel.Location = new System.Drawing.Point(83, 69);
     this.groupPayLabel.Name = "groupPayLabel";
     this.groupPayLabel.Size = new System.Drawing.Size(187, 24);
     this.groupPayLabel.Spacing = new DevExpress.XtraLayout.Utils.Padding(5, 0, 0, 0);
     this.groupPayLabel.Text = "group 4-14";
     this.groupPayLabel.TextSize = new System.Drawing.Size(50, 20);
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(0, 93);
     this.emptySpaceItem5.MaxSize = new System.Drawing.Size(83, 0);
     this.emptySpaceItem5.MinSize = new System.Drawing.Size(83, 10);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(83, 24);
     this.emptySpaceItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // fnameControl
     //
     this.fnameControl.Control = this.fnameTE;
     this.fnameControl.CustomizationFormText = "First name";
     this.fnameControl.Location = new System.Drawing.Point(0, 0);
     this.fnameControl.Name = "fnameControl";
     this.fnameControl.Size = new System.Drawing.Size(290, 24);
     this.fnameControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.fnameControl.Text = "First name";
     this.fnameControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.fnameControl.TextSize = new System.Drawing.Size(89, 13);
     this.fnameControl.TextToControlDistance = 5;
     //
     // pnameControl
     //
     this.pnameControl.Control = this.pnameTE;
     this.pnameControl.CustomizationFormText = "Parent name";
     this.pnameControl.Location = new System.Drawing.Point(0, 72);
     this.pnameControl.Name = "pnameControl";
     this.pnameControl.Size = new System.Drawing.Size(290, 24);
     this.pnameControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.pnameControl.Text = "Parent name";
     this.pnameControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.pnameControl.TextSize = new System.Drawing.Size(89, 13);
     this.pnameControl.TextToControlDistance = 5;
     this.pnameControl.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // lnameControl
     //
     this.lnameControl.Control = this.lnameTE;
     this.lnameControl.CustomizationFormText = "Last name";
     this.lnameControl.Location = new System.Drawing.Point(0, 24);
     this.lnameControl.Name = "lnameControl";
     this.lnameControl.Size = new System.Drawing.Size(290, 24);
     this.lnameControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.lnameControl.Text = "Last name";
     this.lnameControl.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.lnameControl.TextSize = new System.Drawing.Size(89, 13);
     this.lnameControl.TextToControlDistance = 5;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.underageCE;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(208, 48);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(82, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 381);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(125, 29);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(0, 48);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(208, 24);
     this.emptySpaceItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment;
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // cancelButtonControl
     //
     this.cancelButtonControl.Control = this.cancelButton;
     this.cancelButtonControl.CustomizationFormText = "cancelButtonControl";
     this.cancelButtonControl.Location = new System.Drawing.Point(204, 381);
     this.cancelButtonControl.MaxSize = new System.Drawing.Size(86, 26);
     this.cancelButtonControl.MinSize = new System.Drawing.Size(86, 26);
     this.cancelButtonControl.Name = "cancelButtonControl";
     this.cancelButtonControl.Size = new System.Drawing.Size(86, 29);
     this.cancelButtonControl.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.cancelButtonControl.Spacing = new DevExpress.XtraLayout.Utils.Padding(9, 0, 0, 0);
     this.cancelButtonControl.Text = "cancelButtonControl";
     this.cancelButtonControl.TextSize = new System.Drawing.Size(0, 0);
     this.cancelButtonControl.TextToControlDistance = 0;
     this.cancelButtonControl.TextVisible = false;
     //
     // StdMainUC
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "StdMainUC";
     this.Size = new System.Drawing.Size(290, 410);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.reasonTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.endDE.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.endDE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.startDE.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.startDE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactAddDD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountCE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupnoCB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.costTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sourceCB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vkTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.skypeTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.addphoneTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.homephoneTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainphoneTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnameTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.underageCE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lnameTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fnameTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.wappTE.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.okButtonControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.infoCG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.additionalCG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupnoControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sourceControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.startCI)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.endCI)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.reasonCI)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.contactsCG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mainphoneControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.homephoneControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.addphoneControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emailControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vkControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.skypeControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.wappControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.addContactCI)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paymentsCG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.costControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.discountCBControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPayPeriod)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPayLabel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fnameControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnameControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lnameControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cancelButtonControl)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.grpMDPackageBelow1          = new DevExpress.XtraEditors.GroupControl();
     this.mdPKG_lblStrPackageCategory = new System.Windows.Forms.Label();
     this.mdpkg_txtNCategoryID        = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtStrPackageCode     = new DevExpress.XtraEditors.TextEdit();
     this.btnPackageGrpDelete         = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackageGrpCancel         = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackageGrpUpdate         = new DevExpress.XtraEditors.SimpleButton();
     this.mdPKG_txtMListPrice         = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtStrDescription     = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_dtValidEnd            = new DevExpress.XtraEditors.DateEdit();
     this.mdPKG_dtValidStart          = new DevExpress.XtraEditors.DateEdit();
     this.mdPKG_lbldtValidEnd         = new System.Windows.Forms.Label();
     this.mdPKG_lbldtValidStart       = new System.Windows.Forms.Label();
     this.mdPKG_lblMListPrice         = new System.Windows.Forms.Label();
     this.mdPKG_lblStrDescription     = new System.Windows.Forms.Label();
     this.mdPKG_lblStrPackageCode     = new System.Windows.Forms.Label();
     this.groupHdrMd_Promotion        = new DevExpress.XtraEditors.GroupControl();
     this.hdrMd_Package = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageBelow1)).BeginInit();
     this.grpMDPackageBelow1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mdpkg_txtNCategoryID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrPackageCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtMListPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrMd_Promotion)).BeginInit();
     this.groupHdrMd_Promotion.SuspendLayout();
     this.SuspendLayout();
     //
     // grpMDPackageBelow1
     //
     this.grpMDPackageBelow1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblStrPackageCategory);
     this.grpMDPackageBelow1.Controls.Add(this.mdpkg_txtNCategoryID);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtStrPackageCode);
     this.grpMDPackageBelow1.Controls.Add(this.btnPackageGrpDelete);
     this.grpMDPackageBelow1.Controls.Add(this.btnPackageGrpCancel);
     this.grpMDPackageBelow1.Controls.Add(this.btnPackageGrpUpdate);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtMListPrice);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_txtStrDescription);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_dtValidEnd);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_dtValidStart);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lbldtValidEnd);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lbldtValidStart);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblMListPrice);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblStrDescription);
     this.grpMDPackageBelow1.Controls.Add(this.mdPKG_lblStrPackageCode);
     this.grpMDPackageBelow1.Location          = new System.Drawing.Point(0, 32);
     this.grpMDPackageBelow1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.grpMDPackageBelow1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPackageBelow1.Name        = "grpMDPackageBelow1";
     this.grpMDPackageBelow1.ShowCaption = false;
     this.grpMDPackageBelow1.Size        = new System.Drawing.Size(616, 208);
     this.grpMDPackageBelow1.TabIndex    = 8;
     this.grpMDPackageBelow1.Text        = "groupControl1";
     //
     // mdPKG_lblStrPackageCategory
     //
     this.mdPKG_lblStrPackageCategory.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrPackageCategory.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrPackageCategory.Location  = new System.Drawing.Point(264, 16);
     this.mdPKG_lblStrPackageCategory.Name      = "mdPKG_lblStrPackageCategory";
     this.mdPKG_lblStrPackageCategory.Size      = new System.Drawing.Size(112, 16);
     this.mdPKG_lblStrPackageCategory.TabIndex  = 164;
     this.mdPKG_lblStrPackageCategory.Text      = "Package Category";
     this.mdPKG_lblStrPackageCategory.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdpkg_txtNCategoryID
     //
     this.mdpkg_txtNCategoryID.EditValue = "";
     this.mdpkg_txtNCategoryID.Location  = new System.Drawing.Point(384, 16);
     this.mdpkg_txtNCategoryID.Name      = "mdpkg_txtNCategoryID";
     //
     // mdpkg_txtNCategoryID.Properties
     //
     this.mdpkg_txtNCategoryID.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdpkg_txtNCategoryID.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdpkg_txtNCategoryID.Size     = new System.Drawing.Size(104, 20);
     this.mdpkg_txtNCategoryID.TabIndex = 163;
     //
     // mdPKG_txtStrPackageCode
     //
     this.mdPKG_txtStrPackageCode.EditValue = "";
     this.mdPKG_txtStrPackageCode.Location  = new System.Drawing.Point(160, 16);
     this.mdPKG_txtStrPackageCode.Name      = "mdPKG_txtStrPackageCode";
     //
     // mdPKG_txtStrPackageCode.Properties
     //
     this.mdPKG_txtStrPackageCode.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_txtStrPackageCode.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtStrPackageCode.Size     = new System.Drawing.Size(96, 20);
     this.mdPKG_txtStrPackageCode.TabIndex = 162;
     //
     // btnPackageGrpDelete
     //
     this.btnPackageGrpDelete.ButtonStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageGrpDelete.Location          = new System.Drawing.Point(104, 160);
     this.btnPackageGrpDelete.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.btnPackageGrpDelete.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnPackageGrpDelete.Name     = "btnPackageGrpDelete";
     this.btnPackageGrpDelete.Size     = new System.Drawing.Size(75, 24);
     this.btnPackageGrpDelete.TabIndex = 161;
     this.btnPackageGrpDelete.Text     = "Delete";
     //
     // btnPackageGrpCancel
     //
     this.btnPackageGrpCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageGrpCancel.Location    = new System.Drawing.Point(184, 160);
     this.btnPackageGrpCancel.Name        = "btnPackageGrpCancel";
     this.btnPackageGrpCancel.Size        = new System.Drawing.Size(75, 24);
     this.btnPackageGrpCancel.TabIndex    = 160;
     this.btnPackageGrpCancel.Text        = "Cancel";
     //
     // btnPackageGrpUpdate
     //
     this.btnPackageGrpUpdate.ButtonStyle       = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageGrpUpdate.Location          = new System.Drawing.Point(24, 160);
     this.btnPackageGrpUpdate.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.btnPackageGrpUpdate.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnPackageGrpUpdate.Name     = "btnPackageGrpUpdate";
     this.btnPackageGrpUpdate.Size     = new System.Drawing.Size(75, 24);
     this.btnPackageGrpUpdate.TabIndex = 159;
     this.btnPackageGrpUpdate.Text     = "Save";
     //
     // mdPKG_txtMListPrice
     //
     this.mdPKG_txtMListPrice.EditValue = "";
     this.mdPKG_txtMListPrice.Location  = new System.Drawing.Point(160, 64);
     this.mdPKG_txtMListPrice.Name      = "mdPKG_txtMListPrice";
     //
     // mdPKG_txtMListPrice.Properties
     //
     this.mdPKG_txtMListPrice.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_txtMListPrice.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtMListPrice.Properties.Mask.EditMask = "#####0.00";
     this.mdPKG_txtMListPrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.mdPKG_txtMListPrice.Size     = new System.Drawing.Size(75, 20);
     this.mdPKG_txtMListPrice.TabIndex = 152;
     //
     // mdPKG_txtStrDescription
     //
     this.mdPKG_txtStrDescription.EditValue = "";
     this.mdPKG_txtStrDescription.Location  = new System.Drawing.Point(160, 40);
     this.mdPKG_txtStrDescription.Name      = "mdPKG_txtStrDescription";
     //
     // mdPKG_txtStrDescription.Properties
     //
     this.mdPKG_txtStrDescription.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_txtStrDescription.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtStrDescription.Size     = new System.Drawing.Size(424, 20);
     this.mdPKG_txtStrDescription.TabIndex = 150;
     //
     // mdPKG_dtValidEnd
     //
     this.mdPKG_dtValidEnd.EditValue = new System.DateTime(2005, 12, 28, 0, 0, 0, 0);
     this.mdPKG_dtValidEnd.Location  = new System.Drawing.Point(160, 112);
     this.mdPKG_dtValidEnd.Name      = "mdPKG_dtValidEnd";
     //
     // mdPKG_dtValidEnd.Properties
     //
     this.mdPKG_dtValidEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.mdPKG_dtValidEnd.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_dtValidEnd.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_dtValidEnd.Size     = new System.Drawing.Size(96, 20);
     this.mdPKG_dtValidEnd.TabIndex = 149;
     //
     // mdPKG_dtValidStart
     //
     this.mdPKG_dtValidStart.EditValue = new System.DateTime(2005, 12, 28, 0, 0, 0, 0);
     this.mdPKG_dtValidStart.Location  = new System.Drawing.Point(160, 88);
     this.mdPKG_dtValidStart.Name      = "mdPKG_dtValidStart";
     //
     // mdPKG_dtValidStart.Properties
     //
     this.mdPKG_dtValidStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.mdPKG_dtValidStart.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_dtValidStart.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_dtValidStart.Size     = new System.Drawing.Size(96, 20);
     this.mdPKG_dtValidStart.TabIndex = 148;
     //
     // mdPKG_lbldtValidEnd
     //
     this.mdPKG_lbldtValidEnd.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lbldtValidEnd.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lbldtValidEnd.Location  = new System.Drawing.Point(24, 112);
     this.mdPKG_lbldtValidEnd.Name      = "mdPKG_lbldtValidEnd";
     this.mdPKG_lbldtValidEnd.Size      = new System.Drawing.Size(128, 16);
     this.mdPKG_lbldtValidEnd.TabIndex  = 139;
     this.mdPKG_lbldtValidEnd.Text      = "Effective End Date";
     this.mdPKG_lbldtValidEnd.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lbldtValidStart
     //
     this.mdPKG_lbldtValidStart.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lbldtValidStart.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lbldtValidStart.Location  = new System.Drawing.Point(24, 88);
     this.mdPKG_lbldtValidStart.Name      = "mdPKG_lbldtValidStart";
     this.mdPKG_lbldtValidStart.Size      = new System.Drawing.Size(128, 16);
     this.mdPKG_lbldtValidStart.TabIndex  = 138;
     this.mdPKG_lbldtValidStart.Text      = "Effective Start Start";
     this.mdPKG_lbldtValidStart.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblMListPrice
     //
     this.mdPKG_lblMListPrice.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblMListPrice.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblMListPrice.Location  = new System.Drawing.Point(24, 64);
     this.mdPKG_lblMListPrice.Name      = "mdPKG_lblMListPrice";
     this.mdPKG_lblMListPrice.Size      = new System.Drawing.Size(136, 16);
     this.mdPKG_lblMListPrice.TabIndex  = 134;
     this.mdPKG_lblMListPrice.Text      = "Package Group Price";
     this.mdPKG_lblMListPrice.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblStrDescription
     //
     this.mdPKG_lblStrDescription.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrDescription.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrDescription.Location  = new System.Drawing.Point(24, 40);
     this.mdPKG_lblStrDescription.Name      = "mdPKG_lblStrDescription";
     this.mdPKG_lblStrDescription.Size      = new System.Drawing.Size(96, 16);
     this.mdPKG_lblStrDescription.TabIndex  = 132;
     this.mdPKG_lblStrDescription.Text      = "Description";
     this.mdPKG_lblStrDescription.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblStrPackageCode
     //
     this.mdPKG_lblStrPackageCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrPackageCode.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrPackageCode.Location  = new System.Drawing.Point(24, 16);
     this.mdPKG_lblStrPackageCode.Name      = "mdPKG_lblStrPackageCode";
     this.mdPKG_lblStrPackageCode.Size      = new System.Drawing.Size(128, 16);
     this.mdPKG_lblStrPackageCode.TabIndex  = 131;
     this.mdPKG_lblStrPackageCode.Text      = "Package Group Code";
     this.mdPKG_lblStrPackageCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // groupHdrMd_Promotion
     //
     this.groupHdrMd_Promotion.Appearance.BackColor            = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.groupHdrMd_Promotion.Appearance.Options.UseBackColor = true;
     this.groupHdrMd_Promotion.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupHdrMd_Promotion.Controls.Add(this.hdrMd_Package);
     this.groupHdrMd_Promotion.Location          = new System.Drawing.Point(0, 0);
     this.groupHdrMd_Promotion.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupHdrMd_Promotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupHdrMd_Promotion.Name     = "groupHdrMd_Promotion";
     this.groupHdrMd_Promotion.Size     = new System.Drawing.Size(616, 32);
     this.groupHdrMd_Promotion.TabIndex = 7;
     this.groupHdrMd_Promotion.Text     = "groupControl1";
     //
     // hdrMd_Package
     //
     this.hdrMd_Package.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(255)), ((System.Byte)(192)));
     this.hdrMd_Package.Font      = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.hdrMd_Package.Location  = new System.Drawing.Point(8, 8);
     this.hdrMd_Package.Name      = "hdrMd_Package";
     this.hdrMd_Package.Size      = new System.Drawing.Size(600, 23);
     this.hdrMd_Package.TabIndex  = 1;
     this.hdrMd_Package.Text      = "AMORE PACKAGE GROUP SETUP";
     this.hdrMd_Package.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // frmMd_PackageGroup
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(616, 237);
     this.Controls.Add(this.grpMDPackageBelow1);
     this.Controls.Add(this.groupHdrMd_Promotion);
     this.Name = "frmMd_PackageGroup";
     this.Text = "Package Group .....";
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageBelow1)).EndInit();
     this.grpMDPackageBelow1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.mdpkg_txtNCategoryID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrPackageCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtMListPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupHdrMd_Promotion)).EndInit();
     this.groupHdrMd_Promotion.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.GridSpaService = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField2 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField3 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField4 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.DateFrom = new DevExpress.XtraEditors.DateEdit();
     this.DateRangeTo = new DevExpress.XtraEditors.DateEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.GridSpaService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // GridSpaService
     //
     this.GridSpaService.Cursor = System.Windows.Forms.Cursors.Default;
     this.GridSpaService.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
                                                                                           this.pivotGridField1,
                                                                                           this.pivotGridField2,
                                                                                           this.pivotGridField3,
                                                                                           this.pivotGridField4});
     this.GridSpaService.Location = new System.Drawing.Point(0, 32);
     this.GridSpaService.Name = "GridSpaService";
     this.GridSpaService.OptionsCustomization.AllowDrag = false;
     this.GridSpaService.OptionsCustomization.AllowExpand = false;
     this.GridSpaService.OptionsCustomization.AllowFilter = false;
     this.GridSpaService.OptionsCustomization.AllowSort = false;
     this.GridSpaService.OptionsView.ShowDataHeaders = false;
     this.GridSpaService.OptionsView.ShowFilterHeaders = false;
     this.GridSpaService.Size = new System.Drawing.Size(768, 344);
     this.GridSpaService.TabIndex = 0;
     //
     // pivotGridField1
     //
     this.pivotGridField1.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField1.AreaIndex = 0;
     this.pivotGridField1.Caption = "Branch";
     this.pivotGridField1.FieldName = "strBranchCode";
     this.pivotGridField1.Name = "pivotGridField1";
     //
     // pivotGridField2
     //
     this.pivotGridField2.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField2.AreaIndex = 0;
     this.pivotGridField2.Caption = "Code";
     this.pivotGridField2.FieldName = "Code";
     this.pivotGridField2.Name = "pivotGridField2";
     //
     // pivotGridField3
     //
     this.pivotGridField3.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField3.AreaIndex = 1;
     this.pivotGridField3.Caption = "Description";
     this.pivotGridField3.FieldName = "strDescription";
     this.pivotGridField3.Name = "pivotGridField3";
     this.pivotGridField3.Width = 150;
     //
     // pivotGridField4
     //
     this.pivotGridField4.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField4.AreaIndex = 0;
     this.pivotGridField4.Caption = "Total";
     this.pivotGridField4.FieldName = "Code";
     this.pivotGridField4.Name = "pivotGridField4";
     this.pivotGridField4.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count;
     //
     // DateFrom
     //
     this.DateFrom.EditValue = null;
     this.DateFrom.Location = new System.Drawing.Point(40, 8);
     this.DateFrom.Name = "DateFrom";
     //
     // DateFrom.Properties
     //
     this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                      new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateFrom.TabIndex = 1;
     this.DateFrom.EditValueChanged += new System.EventHandler(this.DateFrom_EditValueChanged);
     //
     // DateRangeTo
     //
     this.DateRangeTo.EditValue = null;
     this.DateRangeTo.Location = new System.Drawing.Point(168, 8);
     this.DateRangeTo.Name = "DateRangeTo";
     //
     // DateRangeTo.Properties
     //
     this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateRangeTo.TabIndex = 2;
     this.DateRangeTo.EditValueChanged += new System.EventHandler(this.DateRangeTo_EditValueChanged);
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(0, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 23);
     this.label1.TabIndex = 3;
     this.label1.Text = "From";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label2.Location = new System.Drawing.Point(144, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(24, 23);
     this.label2.TabIndex = 4;
     this.label2.Text = "To";
     //
     // RPOperation
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(776, 477);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.DateRangeTo);
     this.Controls.Add(this.DateFrom);
     this.Controls.Add(this.GridSpaService);
     this.Name = "RPOperation";
     this.Text = "Spa Service Activity Report";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.RPOperation_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GridSpaService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dateedtDate = new DevExpress.XtraEditors.DateEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.txtReason = new DevExpress.XtraEditors.TextEdit();
     this.sbtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.timeedtStartTime = new DevExpress.XtraEditors.TimeEdit();
     this.timeedtEndTime = new DevExpress.XtraEditors.TimeEdit();
     this.chkPH = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReason.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeedtStartTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeedtEndTime.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // dateedtDate
     //
     this.dateedtDate.EditValue = new System.DateTime(2006, 1, 28, 0, 0, 0, 0);
     this.dateedtDate.Location = new System.Drawing.Point(82, 8);
     this.dateedtDate.Name = "dateedtDate";
     this.dateedtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateedtDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateedtDate.Size = new System.Drawing.Size(152, 20);
     this.dateedtDate.TabIndex = 0;
     this.dateedtDate.EditValueChanged += new System.EventHandler(this.dateedtDate_EditValueChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(12, 66);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(68, 18);
     this.label3.TabIndex = 39;
     this.label3.Text = "End time:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(12, 38);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(68, 18);
     this.label2.TabIndex = 38;
     this.label2.Text = "Start time:";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 10);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(68, 18);
     this.label1.TabIndex = 37;
     this.label1.Text = "Date:";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(12, 94);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(68, 18);
     this.label5.TabIndex = 46;
     this.label5.Text = "Reason:";
     //
     // txtReason
     //
     this.txtReason.EditValue = "";
     this.txtReason.Location = new System.Drawing.Point(82, 92);
     this.txtReason.Name = "txtReason";
     this.txtReason.Properties.MaxLength = 50;
     this.txtReason.Size = new System.Drawing.Size(314, 20);
     this.txtReason.TabIndex = 3;
     //
     // sbtnSave
     //
     this.sbtnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.sbtnSave.Location = new System.Drawing.Point(240, 118);
     this.sbtnSave.Name = "sbtnSave";
     this.sbtnSave.Size = new System.Drawing.Size(75, 23);
     this.sbtnSave.TabIndex = 4;
     this.sbtnSave.Text = "Save";
     this.sbtnSave.Click += new System.EventHandler(this.sbtnSave_Click);
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location = new System.Drawing.Point(322, 118);
     this.sbtnCancel.Name = "sbtnCancel";
     this.sbtnCancel.Size = new System.Drawing.Size(75, 23);
     this.sbtnCancel.TabIndex = 5;
     this.sbtnCancel.Text = "Cancel";
     this.sbtnCancel.Click += new System.EventHandler(this.sbtnCancel_Click);
     //
     // timeedtStartTime
     //
     this.timeedtStartTime.EditValue = new System.DateTime(2006, 4, 11, 0, 0, 0, 0);
     this.timeedtStartTime.Location = new System.Drawing.Point(82, 36);
     this.timeedtStartTime.Name = "timeedtStartTime";
     this.timeedtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.timeedtStartTime.Properties.Mask.EditMask = "hh:mm tt";
     this.timeedtStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.timeedtStartTime.Size = new System.Drawing.Size(100, 20);
     this.timeedtStartTime.TabIndex = 1;
     //
     // timeedtEndTime
     //
     this.timeedtEndTime.EditValue = new System.DateTime(2006, 4, 11, 0, 0, 0, 0);
     this.timeedtEndTime.Location = new System.Drawing.Point(82, 64);
     this.timeedtEndTime.Name = "timeedtEndTime";
     this.timeedtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.timeedtEndTime.Properties.Mask.EditMask = "hh:mm tt";
     this.timeedtEndTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.timeedtEndTime.Size = new System.Drawing.Size(100, 20);
     this.timeedtEndTime.TabIndex = 2;
     //
     // chkPH
     //
     this.chkPH.AutoSize = true;
     this.chkPH.Location = new System.Drawing.Point(266, 11);
     this.chkPH.Name = "chkPH";
     this.chkPH.Size = new System.Drawing.Size(93, 17);
     this.chkPH.TabIndex = 47;
     this.chkPH.Text = "Public Holiday";
     this.chkPH.UseVisualStyleBackColor = true;
     this.chkPH.CheckedChanged += new System.EventHandler(this.chkPH_CheckedChanged);
     //
     // frmOvertime
     //
     this.AcceptButton = this.sbtnSave;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.sbtnCancel;
     this.ClientSize = new System.Drawing.Size(402, 146);
     this.Controls.Add(this.chkPH);
     this.Controls.Add(this.timeedtEndTime);
     this.Controls.Add(this.timeedtStartTime);
     this.Controls.Add(this.sbtnSave);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.txtReason);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.dateedtDate);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmOvertime";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Apply Overtime";
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReason.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeedtStartTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeedtEndTime.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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.dateedtDate         = new DevExpress.XtraEditors.DateEdit();
     this.dateedtEndTime      = new DevExpress.XtraEditors.DateEdit();
     this.dateedtStartTime    = new DevExpress.XtraEditors.DateEdit();
     this.txtOrganization     = new DevExpress.XtraEditors.TextEdit();
     this.luedtContact        = new DevExpress.XtraEditors.LookUpEdit();
     this.luedtAppointmetType = new DevExpress.XtraEditors.LookUpEdit();
     this.label7              = new System.Windows.Forms.Label();
     this.memoedtRemark       = new DevExpress.XtraEditors.MemoEdit();
     this.sbtnSave            = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCancel          = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOrganization.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtContact.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtAppointmetType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoedtRemark.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(20, 14);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 18);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Date:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(20, 42);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 18);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Start time:";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(20, 70);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(100, 18);
     this.label3.TabIndex = 2;
     this.label3.Text     = "End time:";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(20, 98);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(100, 44);
     this.label4.TabIndex = 3;
     this.label4.Text     = "Organization / Place of appoinment:";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(20, 180);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(78, 18);
     this.label5.TabIndex = 4;
     this.label5.Text     = "Contact:";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(20, 208);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(78, 18);
     this.label6.TabIndex = 5;
     this.label6.Text     = "Remark:";
     //
     // dateedtDate
     //
     this.dateedtDate.EditValue = new System.DateTime(2006, 1, 28, 0, 0, 0, 0);
     this.dateedtDate.Location  = new System.Drawing.Point(120, 12);
     this.dateedtDate.Name      = "dateedtDate";
     //
     // dateedtDate.Properties
     //
     this.dateedtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateedtDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtDate.Size     = new System.Drawing.Size(152, 20);
     this.dateedtDate.TabIndex = 0;
     //
     // dateedtEndTime
     //
     this.dateedtEndTime.EditValue = new System.DateTime(2006, 1, 1, 0, 0, 0, 0);
     this.dateedtEndTime.Location  = new System.Drawing.Point(120, 68);
     this.dateedtEndTime.Name      = "dateedtEndTime";
     //
     // dateedtEndTime.Properties
     //
     this.dateedtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)
     });
     this.dateedtEndTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dateedtEndTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dateedtEndTime.Properties.EditFormat.FormatString    = "hh:mm tt";
     this.dateedtEndTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dateedtEndTime.Properties.Mask.EditMask = "hh:mm tt";
     this.dateedtEndTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtEndTime.TabIndex = 2;
     //
     // dateedtStartTime
     //
     this.dateedtStartTime.EditValue = new System.DateTime(2006, 1, 1, 0, 0, 0, 0);
     this.dateedtStartTime.Location  = new System.Drawing.Point(120, 40);
     this.dateedtStartTime.Name      = "dateedtStartTime";
     //
     // dateedtStartTime.Properties
     //
     this.dateedtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)
     });
     this.dateedtStartTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dateedtStartTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dateedtStartTime.Properties.EditFormat.FormatString    = "hh:mm tt";
     this.dateedtStartTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dateedtStartTime.Properties.Mask.EditMask = "hh:mm tt";
     this.dateedtStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtStartTime.TabIndex = 1;
     //
     // txtOrganization
     //
     this.txtOrganization.EditValue = "";
     this.txtOrganization.Location  = new System.Drawing.Point(120, 98);
     this.txtOrganization.Name      = "txtOrganization";
     //
     // txtOrganization.Properties
     //
     this.txtOrganization.Properties.MaxLength = 50;
     this.txtOrganization.Size     = new System.Drawing.Size(330, 20);
     this.txtOrganization.TabIndex = 3;
     //
     // luedtContact
     //
     this.luedtContact.Location = new System.Drawing.Point(120, 178);
     this.luedtContact.Name     = "luedtContact";
     //
     // luedtContact.Properties
     //
     this.luedtContact.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.luedtContact.Size     = new System.Drawing.Size(152, 20);
     this.luedtContact.TabIndex = 5;
     //
     // luedtAppointmetType
     //
     this.luedtAppointmetType.Location = new System.Drawing.Point(120, 150);
     this.luedtAppointmetType.Name     = "luedtAppointmetType";
     //
     // luedtAppointmetType.Properties
     //
     this.luedtAppointmetType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.luedtAppointmetType.Size     = new System.Drawing.Size(152, 20);
     this.luedtAppointmetType.TabIndex = 4;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(20, 152);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(100, 18);
     this.label7.TabIndex = 39;
     this.label7.Text     = "Appointment Type:";
     //
     // memoedtRemark
     //
     this.memoedtRemark.EditValue = "";
     this.memoedtRemark.Location  = new System.Drawing.Point(120, 208);
     this.memoedtRemark.Name      = "memoedtRemark";
     //
     // memoedtRemark.Properties
     //
     this.memoedtRemark.Properties.MaxLength = 50;
     this.memoedtRemark.Size     = new System.Drawing.Size(330, 106);
     this.memoedtRemark.TabIndex = 6;
     //
     // sbtnSave
     //
     this.sbtnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnSave.Location    = new System.Drawing.Point(306, 324);
     this.sbtnSave.Name        = "sbtnSave";
     this.sbtnSave.TabIndex    = 7;
     this.sbtnSave.Text        = "Save";
     this.sbtnSave.Click      += new System.EventHandler(this.sbtnSave_Click);
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location     = new System.Drawing.Point(388, 324);
     this.sbtnCancel.Name         = "sbtnCancel";
     this.sbtnCancel.TabIndex     = 8;
     this.sbtnCancel.Text         = "Cancel";
     //
     // frmAppointment
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(470, 354);
     this.Controls.Add(this.sbtnSave);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.memoedtRemark);
     this.Controls.Add(this.luedtAppointmetType);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.luedtContact);
     this.Controls.Add(this.txtOrganization);
     this.Controls.Add(this.dateedtEndTime);
     this.Controls.Add(this.dateedtStartTime);
     this.Controls.Add(this.dateedtDate);
     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.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmAppointment";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "{0} Appointment";
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtOrganization.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtContact.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtAppointmetType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoedtRemark.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 31
0
        public static void ShowDevDateTimeEditor(DateTime initValue, Control callControl, Rectangle rect, EventHandler eventHandle, string displayFormatString, string editFormatString)
        {
            Control parentControl = callControl;
            int     x = 0, y = 0;

            if (parentControl.Parent != null)
            {
                x            += parentControl.Left;
                y            += parentControl.Top;
                parentControl = parentControl.Parent;
                DevExpress.XtraEditors.DateEdit dateEditCtl = new DevExpress.XtraEditors.DateEdit();
                dateEditCtl.Properties.DisplayFormat.FormatString = displayFormatString;
                dateEditCtl.Properties.EditFormat.FormatString    = editFormatString;
                dateEditCtl.Properties.Mask.EditMask = editFormatString;
                dateEditCtl.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
                dateEditCtl.EnterMoveNextControl     = true;
                if (initValue == DateTime.MinValue)
                {
                    dateEditCtl.Text = "";
                }
                else
                {
                    dateEditCtl.EditValue = initValue;
                }
                dateEditCtl.Leave += new EventHandler(delegate(object sender, EventArgs e)
                {
                    if (eventHandle != null)
                    {
                        eventHandle(dateEditCtl.EditValue, null);
                    }
                    //if (!dateEditCtl.ClientRectangle.Contains(dateEditCtl.PointToClient(Control.MousePosition)))
                    //{
                    try
                    {
                        dateEditCtl.Dispose();
                    }
                    catch
                    {
                    }
                    //}
                });
                Control pControl = callControl;
                while (!(pControl is Form) && pControl.Parent != null)
                {
                    pControl        = pControl.Parent;
                    pControl.Click += new EventHandler(delegate(object sender, EventArgs e)
                    {
                        try
                        {
                            dateEditCtl.Dispose();
                        }
                        catch
                        {
                        }
                    });
                }
                dateEditCtl.KeyDown += new KeyEventHandler(delegate(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Escape)
                                                                                                     {
                                                                                                         dateEditCtl.Dispose();
                                                                                                     }
                                                           });
                parentControl.Controls.Add(dateEditCtl);
                dateEditCtl.Left = rect.X + x;
                dateEditCtl.Top  = rect.Y + y;
                dateEditCtl.Size = new Size(rect.Width, rect.Height);
                dateEditCtl.BringToFront();
                dateEditCtl.Focus();
            }
        }
Ejemplo n.º 32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.OK = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.cancel = new DevExpress.XtraBars.BarButtonItem();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.NomenclatureInfoBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.IncomeDate = new DevExpress.XtraEditors.LabelControl();
     this.IncomeNumber = new DevExpress.XtraEditors.LabelControl();
     this.PickingPlan = new Aramis.AramisSearchLookUpEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.State = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.label = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
     this.nomenclatureView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.Info = new DevExpress.XtraEditors.LabelControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.tablePanelControl = new DevExpress.XtraEditors.PanelControl();
     this.Date = new DevExpress.XtraEditors.DateEdit();
     this.dateLabel = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PickingPlan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tablePanelControl)).BeginInit();
     this.tablePanelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.OK);
     this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
     this.ribbonStatusBar.ItemLinks.Add(this.cancel);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 572);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(742, 31);
     //
     // OK
     //
     this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.OK.Caption = "OK";
     this.OK.Id = 0;
     this.OK.ImageIndex = 0;
     this.OK.Name = "OK";
     this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem2.Caption = "��������";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
     //
     // cancel
     //
     this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.cancel.Caption = "³����";
     this.cancel.Id = 2;
     this.cancel.ImageIndex = 1;
     this.cancel.Name = "cancel";
     this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.OK,
     this.barButtonItem2,
     this.cancel});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 18;
     this.ribbon.Name = "ribbon";
     this.ribbon.Size = new System.Drawing.Size(742, 49);
     this.ribbon.StatusBar = this.NomenclatureInfoBar;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
     //
     // NomenclatureInfoBar
     //
     this.NomenclatureInfoBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.NomenclatureInfoBar.Location = new System.Drawing.Point(2, 2);
     this.NomenclatureInfoBar.Name = "NomenclatureInfoBar";
     this.NomenclatureInfoBar.Ribbon = this.ribbon;
     this.NomenclatureInfoBar.Size = new System.Drawing.Size(738, 27);
     //
     // panelControl
     //
     this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl.Controls.Add(this.dateLabel);
     this.panelControl.Controls.Add(this.Date);
     this.panelControl.Controls.Add(this.IncomeDate);
     this.panelControl.Controls.Add(this.IncomeNumber);
     this.panelControl.Controls.Add(this.PickingPlan);
     this.panelControl.Controls.Add(this.labelControl8);
     this.panelControl.Controls.Add(this.State);
     this.panelControl.Controls.Add(this.labelControl3);
     this.panelControl.Controls.Add(this.label);
     this.panelControl.Controls.Add(this.labelControl1);
     this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl.Location = new System.Drawing.Point(0, 49);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(742, 82);
     this.panelControl.TabIndex = 2;
     //
     // IncomeDate
     //
     this.IncomeDate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.IncomeDate.Location = new System.Drawing.Point(366, 34);
     this.IncomeDate.Name = "IncomeDate";
     this.IncomeDate.Size = new System.Drawing.Size(21, 13);
     this.IncomeDate.TabIndex = 20;
     this.IncomeDate.Text = "{0}";
     //
     // IncomeNumber
     //
     this.IncomeNumber.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.IncomeNumber.Location = new System.Drawing.Point(99, 34);
     this.IncomeNumber.Name = "IncomeNumber";
     this.IncomeNumber.Size = new System.Drawing.Size(21, 13);
     this.IncomeNumber.TabIndex = 19;
     this.IncomeNumber.Text = "{0}";
     //
     // PickingPlan
     //
     this.PickingPlan.BaseFilter = null;
     this.PickingPlan.Location = new System.Drawing.Point(366, 8);
     this.PickingPlan.MenuManager = this.ribbon;
     this.PickingPlan.Name = "PickingPlan";
     this.PickingPlan.Properties.BaseFilter = null;
     this.PickingPlan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.PickingPlan.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.PickingPlan.Properties.NullText = "";
     this.PickingPlan.Size = new System.Drawing.Size(364, 20);
     this.PickingPlan.TabIndex = 1;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(271, 11);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(68, 13);
     this.labelControl8.TabIndex = 17;
     this.labelControl8.Text = "���� ������";
     //
     // State
     //
     this.State.Location = new System.Drawing.Point(99, 8);
     this.State.MenuManager = this.ribbon;
     this.State.Name = "State";
     this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.State.Size = new System.Drawing.Size(156, 20);
     this.State.TabIndex = 0;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(10, 11);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(82, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "���� ���������";
     //
     // label
     //
     this.label.Location = new System.Drawing.Point(271, 34);
     this.label.Name = "label";
     this.label.Size = new System.Drawing.Size(83, 13);
     this.label.TabIndex = 2;
     this.label.Text = "���� ���������";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(10, 34);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(68, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "� ��������";
     //
     // NomenclatureInfo
     //
     this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.NomenclatureInfo.Location = new System.Drawing.Point(2, 29);
     this.NomenclatureInfo.MainView = this.nomenclatureView;
     this.NomenclatureInfo.MenuManager = this.ribbon;
     this.NomenclatureInfo.Name = "NomenclatureInfo";
     this.NomenclatureInfo.Size = new System.Drawing.Size(738, 390);
     this.NomenclatureInfo.TabIndex = 1;
     this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.nomenclatureView});
     //
     // nomenclatureView
     //
     this.nomenclatureView.GridControl = this.NomenclatureInfo;
     this.nomenclatureView.Name = "nomenclatureView";
     this.nomenclatureView.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.nomenclatureView_RowStyle);
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.pictureEdit1);
     this.panelControl1.Controls.Add(this.Info);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 552);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(742, 20);
     this.panelControl1.TabIndex = 0;
     //
     // pictureEdit1
     //
     this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
     this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
     this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
     this.pictureEdit1.MenuManager = this.ribbon;
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
     this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
     this.pictureEdit1.TabIndex = 3;
     this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
     this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.pictureEdit1.ToolTipTitle = "������:";
     //
     // Info
     //
     this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
     this.Info.Location = new System.Drawing.Point(24, 3);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(12, 13);
     this.Info.TabIndex = 1;
     this.Info.Text = "...";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem1.Caption = "OK";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem3.Caption = "��������";
     this.barButtonItem3.Id = 1;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem4.Caption = "³����";
     this.barButtonItem4.Id = 2;
     this.barButtonItem4.ImageIndex = 1;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // tablePanelControl
     //
     this.tablePanelControl.Controls.Add(this.NomenclatureInfo);
     this.tablePanelControl.Controls.Add(this.NomenclatureInfoBar);
     this.tablePanelControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tablePanelControl.Location = new System.Drawing.Point(0, 131);
     this.tablePanelControl.Name = "tablePanelControl";
     this.tablePanelControl.Size = new System.Drawing.Size(742, 421);
     this.tablePanelControl.TabIndex = 24;
     //
     // Date
     //
     this.Date.EditValue = null;
     this.Date.Location = new System.Drawing.Point(99, 53);
     this.Date.MenuManager = this.ribbon;
     this.Date.Name = "Date";
     this.Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Date.Size = new System.Drawing.Size(156, 20);
     this.Date.TabIndex = 21;
     //
     // dateLabel
     //
     this.dateLabel.Location = new System.Drawing.Point(10, 57);
     this.dateLabel.Name = "dateLabel";
     this.dateLabel.Size = new System.Drawing.Size(26, 13);
     this.dateLabel.TabIndex = 22;
     this.dateLabel.Text = "����";
     //
     // MovingItemForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(742, 603);
     this.Controls.Add(this.tablePanelControl);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControl);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.KeyPreview = true;
     this.Name = "MovingItemForm";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "Item form";
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     this.panelControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PickingPlan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tablePanelControl)).EndInit();
     this.tablePanelControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lkpEdtBranchCode  = new DevExpress.XtraEditors.LookUpEdit();
     this.dtEditDate        = new DevExpress.XtraEditors.DateEdit();
     this.label2            = new System.Windows.Forms.Label();
     this.label1            = new System.Windows.Forms.Label();
     this.lkpEdtEmployeeID  = new DevExpress.XtraEditors.LookUpEdit();
     this.label3            = new System.Windows.Forms.Label();
     this.label4            = new System.Windows.Forms.Label();
     this.label5            = new System.Windows.Forms.Label();
     this.lkpEdtServiceCode = new DevExpress.XtraEditors.LookUpEdit();
     this.simpleButton2     = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1     = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit1        = new DevExpress.XtraEditors.CheckEdit();
     this.dtEdtStartTime    = new DevExpress.XtraEditors.DateEdit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEditDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtEmployeeID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtServiceCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtStartTime.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // lkpEdtBranchCode
     //
     this.lkpEdtBranchCode.EditValue = "";
     this.lkpEdtBranchCode.Location  = new System.Drawing.Point(120, 48);
     this.lkpEdtBranchCode.Name      = "lkpEdtBranchCode";
     //
     // lkpEdtBranchCode.Properties
     //
     this.lkpEdtBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtBranchCode.Size              = new System.Drawing.Size(202, 20);
     this.lkpEdtBranchCode.TabIndex          = 9;
     this.lkpEdtBranchCode.EditValueChanged += new System.EventHandler(this.lkpEdtBranchCode_EditValueChanged);
     //
     // dtEditDate
     //
     this.dtEditDate.EditValue = new System.DateTime(2005, 11, 23, 0, 0, 0, 0);
     this.dtEditDate.Location  = new System.Drawing.Point(120, 18);
     this.dtEditDate.Name      = "dtEditDate";
     //
     // dtEditDate.Properties
     //
     this.dtEditDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtEditDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEditDate.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEditDate.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.dtEditDate.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dtEditDate.Size              = new System.Drawing.Size(202, 20);
     this.dtEditDate.TabIndex          = 8;
     this.dtEditDate.EditValueChanged += new System.EventHandler(this.dateEdit1_EditValueChanged);
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label2.Location = new System.Drawing.Point(5, 48);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(72, 23);
     this.label2.TabIndex = 7;
     this.label2.Text     = "Branch";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(5, 18);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(72, 23);
     this.label1.TabIndex = 6;
     this.label1.Text     = "Date";
     //
     // lkpEdtEmployeeID
     //
     this.lkpEdtEmployeeID.EditValue = "";
     this.lkpEdtEmployeeID.Location  = new System.Drawing.Point(120, 108);
     this.lkpEdtEmployeeID.Name      = "lkpEdtEmployeeID";
     //
     // lkpEdtEmployeeID.Properties
     //
     this.lkpEdtEmployeeID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtEmployeeID.Size              = new System.Drawing.Size(202, 20);
     this.lkpEdtEmployeeID.TabIndex          = 11;
     this.lkpEdtEmployeeID.EditValueChanged += new System.EventHandler(this.lkpEdtEmployeeID_EditValueChanged);
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location = new System.Drawing.Point(5, 78);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(105, 23);
     this.label3.TabIndex = 10;
     this.label3.Text     = "Appoinment Time";
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label4.Location = new System.Drawing.Point(6, 108);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(106, 23);
     this.label4.TabIndex = 12;
     this.label4.Text     = "Therapist";
     //
     // label5
     //
     this.label5.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label5.Location = new System.Drawing.Point(6, 138);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(93, 23);
     this.label5.TabIndex = 14;
     this.label5.Text     = "Treatment";
     //
     // lkpEdtServiceCode
     //
     this.lkpEdtServiceCode.EditValue = "";
     this.lkpEdtServiceCode.Location  = new System.Drawing.Point(120, 138);
     this.lkpEdtServiceCode.Name      = "lkpEdtServiceCode";
     //
     // lkpEdtServiceCode.Properties
     //
     this.lkpEdtServiceCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtServiceCode.Size              = new System.Drawing.Size(202, 20);
     this.lkpEdtServiceCode.TabIndex          = 15;
     this.lkpEdtServiceCode.EditValueChanged += new System.EventHandler(this.lkpEdtServiceCode_EditValueChanged);
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location     = new System.Drawing.Point(180, 196);
     this.simpleButton2.Name         = "simpleButton2";
     this.simpleButton2.TabIndex     = 17;
     this.simpleButton2.Text         = "Cancel";
     //
     // simpleButton1
     //
     this.simpleButton1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButton1.Location     = new System.Drawing.Point(88, 196);
     this.simpleButton1.Name         = "simpleButton1";
     this.simpleButton1.TabIndex     = 16;
     this.simpleButton1.Text         = "Save";
     this.simpleButton1.Click       += new System.EventHandler(this.simpleButton1_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(108, 166);
     this.checkEdit1.Name     = "checkEdit1";
     //
     // checkEdit1.Properties
     //
     this.checkEdit1.Properties.Caption = "Forfeit Column";
     this.checkEdit1.Size     = new System.Drawing.Size(104, 18);
     this.checkEdit1.TabIndex = 18;
     this.checkEdit1.Visible  = false;
     //
     // dtEdtStartTime
     //
     this.dtEdtStartTime.EditValue = new System.DateTime(2006, 1, 1, 0, 0, 0, 0);
     this.dtEdtStartTime.Location  = new System.Drawing.Point(120, 76);
     this.dtEdtStartTime.Name      = "dtEdtStartTime";
     //
     // dtEdtStartTime.Properties
     //
     this.dtEdtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)
     });
     this.dtEdtStartTime.Properties.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm tt";
     this.dtEdtStartTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtStartTime.Properties.EditFormat.FormatString    = "T";
     this.dtEdtStartTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtStartTime.Properties.Mask.EditMask = "T";
     this.dtEdtStartTime.Size     = new System.Drawing.Size(202, 20);
     this.dtEdtStartTime.TabIndex = 34;
     //
     // FormNewServiceSessionSPA_IPL
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(346, 226);
     this.Controls.Add(this.dtEdtStartTime);
     this.Controls.Add(this.checkEdit1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.lkpEdtServiceCode);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.lkpEdtEmployeeID);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.lkpEdtBranchCode);
     this.Controls.Add(this.dtEditDate);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "FormNewServiceSessionSPA_IPL";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "New Spa/ IPL Service";
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEditDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtEmployeeID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtServiceCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtStartTime.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.chkedtMember  = new DevExpress.XtraEditors.CheckEdit();
     this.Label5        = new System.Windows.Forms.Label();
     this.Label4        = new System.Windows.Forms.Label();
     this.Label2        = new System.Windows.Forms.Label();
     this.sbtnSave      = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCancel    = new DevExpress.XtraEditors.SimpleButton();
     this.chkedtIsSg    = new DevExpress.XtraEditors.CheckEdit();
     this.txtMemberName = new DevExpress.XtraEditors.TextEdit();
     this.txtNRICFIN    = new DevExpress.XtraEditors.TextEdit();
     this.dateedtDOB    = new DevExpress.XtraEditors.DateEdit();
     ((System.ComponentModel.ISupportInitialize)(this.chkedtMember.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkedtIsSg.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNRICFIN.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDOB.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // chkedtMember
     //
     this.chkedtMember.Location = new System.Drawing.Point(16, 12);
     this.chkedtMember.Name     = "chkedtMember";
     //
     // chkedtMember.Properties
     //
     this.chkedtMember.Properties.Appearance.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.chkedtMember.Properties.Appearance.Options.UseFont = true;
     this.chkedtMember.Properties.Caption = "Member";
     this.chkedtMember.Size     = new System.Drawing.Size(98, 18);
     this.chkedtMember.TabIndex = 0;
     //
     // Label5
     //
     this.Label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label5.Location = new System.Drawing.Point(16, 110);
     this.Label5.Name     = "Label5";
     this.Label5.Size     = new System.Drawing.Size(98, 18);
     this.Label5.TabIndex = 57;
     this.Label5.Text     = "Date-of-Birth:";
     //
     // Label4
     //
     this.Label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label4.Location = new System.Drawing.Point(16, 84);
     this.Label4.Name     = "Label4";
     this.Label4.Size     = new System.Drawing.Size(98, 18);
     this.Label4.TabIndex = 56;
     this.Label4.Text     = "NRIC/FIN No:";
     //
     // Label2
     //
     this.Label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label2.Location = new System.Drawing.Point(16, 36);
     this.Label2.Name     = "Label2";
     this.Label2.Size     = new System.Drawing.Size(98, 18);
     this.Label2.TabIndex = 54;
     this.Label2.Text     = "Member Name:";
     //
     // sbtnSave
     //
     this.sbtnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnSave.Location    = new System.Drawing.Point(108, 138);
     this.sbtnSave.Name        = "sbtnSave";
     this.sbtnSave.TabIndex    = 5;
     this.sbtnSave.Text        = "Save";
     this.sbtnSave.Click      += new System.EventHandler(this.sbtnSave_Click);
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location     = new System.Drawing.Point(192, 138);
     this.sbtnCancel.Name         = "sbtnCancel";
     this.sbtnCancel.TabIndex     = 6;
     this.sbtnCancel.Text         = "Cancel";
     this.sbtnCancel.Click       += new System.EventHandler(this.sbtnCancel_Click);
     //
     // chkedtIsSg
     //
     this.chkedtIsSg.EditValue = true;
     this.chkedtIsSg.Location  = new System.Drawing.Point(16, 60);
     this.chkedtIsSg.Name      = "chkedtIsSg";
     //
     // chkedtIsSg.Properties
     //
     this.chkedtIsSg.Properties.Appearance.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.chkedtIsSg.Properties.Appearance.Options.UseFont = true;
     this.chkedtIsSg.Properties.Caption = "Singaporean";
     this.chkedtIsSg.Size     = new System.Drawing.Size(98, 18);
     this.chkedtIsSg.TabIndex = 2;
     //
     // txtMemberName
     //
     this.txtMemberName.EditValue = "";
     this.txtMemberName.Location  = new System.Drawing.Point(116, 34);
     this.txtMemberName.Name      = "txtMemberName";
     //
     // txtMemberName.Properties
     //
     this.txtMemberName.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtMemberName.Properties.Appearance.Options.UseFont = true;
     this.txtMemberName.Properties.MaxLength = 50;
     this.txtMemberName.Size     = new System.Drawing.Size(232, 20);
     this.txtMemberName.TabIndex = 1;
     //
     // txtNRICFIN
     //
     this.txtNRICFIN.EditValue = "";
     this.txtNRICFIN.Location  = new System.Drawing.Point(116, 82);
     this.txtNRICFIN.Name      = "txtNRICFIN";
     //
     // txtNRICFIN.Properties
     //
     this.txtNRICFIN.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtNRICFIN.Properties.Appearance.Options.UseFont = true;
     this.txtNRICFIN.Properties.MaxLength = 50;
     this.txtNRICFIN.Size     = new System.Drawing.Size(232, 20);
     this.txtNRICFIN.TabIndex = 3;
     //
     // dateedtDOB
     //
     this.dateedtDOB.EditValue = new System.DateTime(2006, 1, 1, 0, 0, 0, 0);
     this.dateedtDOB.Location  = new System.Drawing.Point(116, 108);
     this.dateedtDOB.Name      = "dateedtDOB";
     //
     // dateedtDOB.Properties
     //
     this.dateedtDOB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateedtDOB.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtDOB.Size     = new System.Drawing.Size(104, 20);
     this.dateedtDOB.TabIndex = 4;
     //
     // frmNewMember
     //
     this.AcceptButton      = this.sbtnSave;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.sbtnCancel;
     this.ClientSize        = new System.Drawing.Size(362, 168);
     this.Controls.Add(this.chkedtIsSg);
     this.Controls.Add(this.txtNRICFIN);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.sbtnSave);
     this.Controls.Add(this.dateedtDOB);
     this.Controls.Add(this.Label5);
     this.Controls.Add(this.Label4);
     this.Controls.Add(this.Label2);
     this.Controls.Add(this.txtMemberName);
     this.Controls.Add(this.chkedtMember);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmNewMember";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "New Member";
     ((System.ComponentModel.ISupportInitialize)(this.chkedtMember.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkedtIsSg.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtMemberName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNRICFIN.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDOB.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.sbSearch = new DevExpress.XtraEditors.SimpleButton();
     this.deFEC_HAST = new DevExpress.XtraEditors.DateEdit();
     this.deFEC_DESD = new DevExpress.XtraEditors.DateEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.gdcResults = new DevExpress.XtraGrid.GridControl();
     this.gdvResults = new DevExpress.XtraGrid.Views.Grid.GridView();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deFEC_HAST.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFEC_HAST.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFEC_DESD.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFEC_DESD.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gdcResults)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvResults)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.sbSearch);
     this.panelControl1.Controls.Add(this.deFEC_HAST);
     this.panelControl1.Controls.Add(this.deFEC_DESD);
     this.panelControl1.Controls.Add(this.labelControl2);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(1065, 37);
     this.panelControl1.TabIndex = 0;
     //
     // sbSearch
     //
     this.sbSearch.Image = global::SISPEPERS.Properties.Resources.eye;
     this.sbSearch.Location = new System.Drawing.Point(264, 9);
     this.sbSearch.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.sbSearch.Name = "sbSearch";
     this.sbSearch.Size = new System.Drawing.Size(64, 19);
     this.sbSearch.TabIndex = 7;
     this.sbSearch.Text = "Buscar";
     this.sbSearch.Click += new System.EventHandler(this.sbSearch_Click);
     //
     // deFEC_HAST
     //
     this.deFEC_HAST.EditValue = null;
     this.deFEC_HAST.Location = new System.Drawing.Point(173, 10);
     this.deFEC_HAST.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.deFEC_HAST.Name = "deFEC_HAST";
     this.deFEC_HAST.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.deFEC_HAST.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFEC_HAST.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFEC_HAST.Size = new System.Drawing.Size(86, 20);
     this.deFEC_HAST.TabIndex = 5;
     //
     // deFEC_DESD
     //
     this.deFEC_DESD.EditValue = null;
     this.deFEC_DESD.Location = new System.Drawing.Point(45, 10);
     this.deFEC_DESD.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.deFEC_DESD.Name = "deFEC_DESD";
     this.deFEC_DESD.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.deFEC_DESD.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFEC_DESD.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFEC_DESD.Size = new System.Drawing.Size(86, 20);
     this.deFEC_DESD.TabIndex = 6;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(136, 12);
     this.labelControl2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(32, 13);
     this.labelControl2.TabIndex = 3;
     this.labelControl2.Text = "Hasta:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(6, 12);
     this.labelControl1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(34, 13);
     this.labelControl1.TabIndex = 4;
     this.labelControl1.Text = "Desde:";
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.gdcResults);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 37);
     this.panelControl2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(1065, 515);
     this.panelControl2.TabIndex = 1;
     //
     // gdcResults
     //
     this.gdcResults.Cursor = System.Windows.Forms.Cursors.Default;
     this.gdcResults.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gdcResults.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.gdcResults.Location = new System.Drawing.Point(2, 2);
     this.gdcResults.MainView = this.gdvResults;
     this.gdcResults.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.gdcResults.Name = "gdcResults";
     this.gdcResults.Size = new System.Drawing.Size(1061, 511);
     this.gdcResults.TabIndex = 0;
     this.gdcResults.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gdvResults});
     //
     // gdvResults
     //
     this.gdvResults.GridControl = this.gdcResults;
     this.gdvResults.GroupPanelText = "Registros encontrados";
     this.gdvResults.Name = "gdvResults";
     this.gdvResults.OptionsView.ColumnAutoWidth = false;
     this.gdvResults.OptionsView.ShowFooter = true;
     //
     // xfSaleOrder
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1065, 552);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Name = "xfSaleOrder";
     this.Text = "Registro de Ordenes de Venta";
     this.Activated += new System.EventHandler(this.xfSalesInvoice_Activated);
     this.Deactivate += new System.EventHandler(this.xfSalesInvoice_Deactivate);
     this.Load += new System.EventHandler(this.xfSalesInvoice_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deFEC_HAST.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFEC_HAST.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFEC_DESD.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deFEC_DESD.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gdcResults)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdvResults)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1           = new System.Windows.Forms.Label();
     this.label2           = new System.Windows.Forms.Label();
     this.label3           = new System.Windows.Forms.Label();
     this.lblContact       = new System.Windows.Forms.Label();
     this.label6           = new System.Windows.Forms.Label();
     this.dateedtDate      = new DevExpress.XtraEditors.DateEdit();
     this.luedtContact     = new DevExpress.XtraEditors.LookUpEdit();
     this.memoedtRemark    = new DevExpress.XtraEditors.MemoEdit();
     this.sbtnSave         = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnCancel       = new DevExpress.XtraEditors.SimpleButton();
     this.txtBranchCode    = new DevExpress.XtraEditors.TextEdit();
     this.label7           = new System.Windows.Forms.Label();
     this.dateedtEndTime   = new DevExpress.XtraEditors.DateEdit();
     this.dateedtStartTime = new DevExpress.XtraEditors.DateEdit();
     this.rbNew            = new System.Windows.Forms.RadioButton();
     this.rbExisting       = new System.Windows.Forms.RadioButton();
     this.label4           = new System.Windows.Forms.Label();
     this.luedtServedBy    = new DevExpress.XtraEditors.LookUpEdit();
     this.label17          = new System.Windows.Forms.Label();
     this.ucMemberID1      = new ACMS.ucMemberID();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtContact.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoedtRemark.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtServedBy.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(20, 14);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 18);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Date:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(20, 42);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 18);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Start time:";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(20, 70);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(100, 18);
     this.label3.TabIndex = 2;
     this.label3.Text     = "End time:";
     //
     // lblContact
     //
     this.lblContact.Location = new System.Drawing.Point(20, 129);
     this.lblContact.Name     = "lblContact";
     this.lblContact.Size     = new System.Drawing.Size(100, 18);
     this.lblContact.TabIndex = 4;
     this.lblContact.Text     = "Contact:";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(20, 217);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(78, 32);
     this.label6.TabIndex = 5;
     this.label6.Text     = "Remark:";
     //
     // dateedtDate
     //
     this.dateedtDate.EditValue = new System.DateTime(2006, 1, 28, 0, 0, 0, 0);
     this.dateedtDate.Location  = new System.Drawing.Point(136, 12);
     this.dateedtDate.Name      = "dateedtDate";
     this.dateedtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateedtDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.dateedtDate.Size     = new System.Drawing.Size(152, 20);
     this.dateedtDate.TabIndex = 0;
     //
     // luedtContact
     //
     this.luedtContact.Location = new System.Drawing.Point(136, 126);
     this.luedtContact.Name     = "luedtContact";
     this.luedtContact.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.luedtContact.Size     = new System.Drawing.Size(152, 20);
     this.luedtContact.TabIndex = 4;
     //
     // memoedtRemark
     //
     this.memoedtRemark.EditValue            = "";
     this.memoedtRemark.Location             = new System.Drawing.Point(136, 215);
     this.memoedtRemark.Name                 = "memoedtRemark";
     this.memoedtRemark.Properties.MaxLength = 1000;
     this.memoedtRemark.Size                 = new System.Drawing.Size(436, 168);
     this.memoedtRemark.TabIndex             = 5;
     //
     // sbtnSave
     //
     this.sbtnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnSave.Location    = new System.Drawing.Point(415, 396);
     this.sbtnSave.Name        = "sbtnSave";
     this.sbtnSave.Size        = new System.Drawing.Size(75, 23);
     this.sbtnSave.TabIndex    = 6;
     this.sbtnSave.Text        = "Save";
     this.sbtnSave.Click      += new System.EventHandler(this.sbtnSave_Click);
     //
     // sbtnCancel
     //
     this.sbtnCancel.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location     = new System.Drawing.Point(497, 396);
     this.sbtnCancel.Name         = "sbtnCancel";
     this.sbtnCancel.Size         = new System.Drawing.Size(75, 23);
     this.sbtnCancel.TabIndex     = 8;
     this.sbtnCancel.Text         = "Cancel";
     //
     // txtBranchCode
     //
     this.txtBranchCode.EditValue            = "";
     this.txtBranchCode.Enabled              = false;
     this.txtBranchCode.Location             = new System.Drawing.Point(136, 155);
     this.txtBranchCode.Name                 = "txtBranchCode";
     this.txtBranchCode.Properties.MaxLength = 50;
     this.txtBranchCode.Size                 = new System.Drawing.Size(100, 20);
     this.txtBranchCode.TabIndex             = 110;
     //
     // label7
     //
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(20, 157);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(102, 18);
     this.label7.TabIndex = 111;
     this.label7.Text     = "Branch Code :";
     //
     // dateedtEndTime
     //
     this.dateedtEndTime.EditValue = new System.DateTime(2013, 1, 1, 13, 0, 0, 0);
     this.dateedtEndTime.Location  = new System.Drawing.Point(136, 68);
     this.dateedtEndTime.Name      = "dateedtEndTime";
     this.dateedtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null)
     });
     this.dateedtEndTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dateedtEndTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dateedtEndTime.Properties.EditFormat.FormatString    = "hh:mm tt";
     this.dateedtEndTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dateedtEndTime.Properties.Mask.EditMask = "hh:mm tt";
     this.dateedtEndTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtEndTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.dateedtEndTime.Size     = new System.Drawing.Size(100, 20);
     this.dateedtEndTime.TabIndex = 113;
     //
     // dateedtStartTime
     //
     this.dateedtStartTime.EditValue = new System.DateTime(2013, 1, 1, 13, 0, 0, 0);
     this.dateedtStartTime.Location  = new System.Drawing.Point(136, 40);
     this.dateedtStartTime.Name      = "dateedtStartTime";
     this.dateedtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null)
     });
     this.dateedtStartTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dateedtStartTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dateedtStartTime.Properties.EditFormat.FormatString    = "hh:mm tt";
     this.dateedtStartTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dateedtStartTime.Properties.Mask.EditMask = "hh:mm tt";
     this.dateedtStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateedtStartTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.dateedtStartTime.Size     = new System.Drawing.Size(100, 20);
     this.dateedtStartTime.TabIndex = 112;
     //
     // rbNew
     //
     this.rbNew.AutoSize = true;
     this.rbNew.Checked  = true;
     this.rbNew.Location = new System.Drawing.Point(136, 103);
     this.rbNew.Name     = "rbNew";
     this.rbNew.Size     = new System.Drawing.Size(74, 17);
     this.rbNew.TabIndex = 115;
     this.rbNew.TabStop  = true;
     this.rbNew.Text     = "New Lead";
     this.rbNew.UseVisualStyleBackColor = true;
     this.rbNew.CheckedChanged         += new System.EventHandler(this.rbNew_CheckedChanged);
     //
     // rbExisting
     //
     this.rbExisting.AutoSize = true;
     this.rbExisting.Location = new System.Drawing.Point(225, 103);
     this.rbExisting.Name     = "rbExisting";
     this.rbExisting.Size     = new System.Drawing.Size(102, 17);
     this.rbExisting.TabIndex = 114;
     this.rbExisting.Text     = "Existing Member";
     this.rbExisting.UseVisualStyleBackColor = true;
     this.rbExisting.CheckedChanged         += new System.EventHandler(this.rbExisting_CheckedChanged);
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(20, 105);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(100, 18);
     this.label4.TabIndex = 118;
     this.label4.Text     = "Type :";
     //
     // luedtServedBy
     //
     this.luedtServedBy.EditValue = "";
     this.luedtServedBy.Location  = new System.Drawing.Point(136, 184);
     this.luedtServedBy.Name      = "luedtServedBy";
     this.luedtServedBy.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.luedtServedBy.Properties.PopupWidth = 200;
     this.luedtServedBy.Size     = new System.Drawing.Size(280, 20);
     this.luedtServedBy.TabIndex = 256;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.label17.Location = new System.Drawing.Point(20, 187);
     this.label17.Name     = "label17";
     this.label17.Size     = new System.Drawing.Size(56, 13);
     this.label17.TabIndex = 257;
     this.label17.Text     = "Served By";
     //
     // ucMemberID1
     //
     this.ucMemberID1.EditValue        = "";
     this.ucMemberID1.EditValueChanged = null;
     this.ucMemberID1.Location         = new System.Drawing.Point(136, 126);
     this.ucMemberID1.Name             = "ucMemberID1";
     this.ucMemberID1.Size             = new System.Drawing.Size(184, 20);
     this.ucMemberID1.StrBranchCode    = null;
     this.ucMemberID1.TabIndex         = 117;
     //
     // frmAppointment
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(584, 431);
     this.Controls.Add(this.luedtServedBy);
     this.Controls.Add(this.label17);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.ucMemberID1);
     this.Controls.Add(this.rbNew);
     this.Controls.Add(this.rbExisting);
     this.Controls.Add(this.dateedtEndTime);
     this.Controls.Add(this.dateedtStartTime);
     this.Controls.Add(this.txtBranchCode);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.sbtnSave);
     this.Controls.Add(this.sbtnCancel);
     this.Controls.Add(this.memoedtRemark);
     this.Controls.Add(this.luedtContact);
     this.Controls.Add(this.dateedtDate);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.lblContact);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmAppointment";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "{0} Appointment";
     this.Load           += new System.EventHandler(this.frmAppointment_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtContact.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.memoedtRemark.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtEndTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateedtStartTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtServedBy.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.txtDate = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.btn_Save = new DevExpress.XtraEditors.SimpleButton();
     this.lkBranchTo = new DevExpress.XtraEditors.LookUpEdit();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.rItem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Product = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.rQty = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Style = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.label1 = new System.Windows.Forms.Label();
     this.txtRequestedBy = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranchTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Product)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Style)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRequestedBy.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // txtDate
     //
     this.txtDate.Location = new System.Drawing.Point(8, 16);
     this.txtDate.Name = "txtDate";
     this.txtDate.Size = new System.Drawing.Size(48, 23);
     this.txtDate.TabIndex = 18;
     this.txtDate.Text = "Date";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 48);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(72, 23);
     this.label2.TabIndex = 22;
     this.label2.Text = "To Branch";
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = new System.DateTime(2005, 10, 28, 0, 0, 0, 0);
     this.dateEdit1.Location = new System.Drawing.Point(80, 12);
     this.dateEdit1.Name = "dateEdit1";
     //
     // dateEdit1.Properties
     //
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dateEdit1.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEdit1.Size = new System.Drawing.Size(104, 20);
     this.dateEdit1.TabIndex = 17;
     //
     // btn_Save
     //
     this.btn_Save.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Save.Location = new System.Drawing.Point(30, 84);
     this.btn_Save.Name = "btn_Save";
     this.btn_Save.TabIndex = 36;
     this.btn_Save.Text = "Save";
     this.btn_Save.Click += new System.EventHandler(this.btn_Save_Click);
     //
     // lkBranchTo
     //
     this.lkBranchTo.Location = new System.Drawing.Point(80, 42);
     this.lkBranchTo.Name = "lkBranchTo";
     //
     // lkBranchTo.Properties
     //
     this.lkBranchTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkBranchTo.Properties.NullText = "Select Branch";
     this.lkBranchTo.Size = new System.Drawing.Size(144, 20);
     this.lkBranchTo.TabIndex = 37;
     this.lkBranchTo.EditValueChanged += new System.EventHandler(this.BranchTo_EditValueChanged);
     //
     // gridControl1
     //
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(8, 132);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                           this.repositoryItemTextEdit1,
                                                                                                           this.lk_Product,
                                                                                                           this.lk_Style});
     this.gridControl1.Size = new System.Drawing.Size(424, 216);
     this.gridControl1.TabIndex = 38;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.rItem,
                                                                                      this.rQty,
                                                                                      this.gridColumn2});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     //
     // rItem
     //
     this.rItem.Caption = "Item Code";
     this.rItem.ColumnEdit = this.lk_Product;
     this.rItem.FieldName = "strItemCode";
     this.rItem.Name = "rItem";
     this.rItem.Visible = true;
     this.rItem.VisibleIndex = 0;
     this.rItem.Width = 120;
     //
     // lk_Product
     //
     this.lk_Product.AutoHeight = false;
     this.lk_Product.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Product.Name = "lk_Product";
     //
     // rQty
     //
     this.rQty.Caption = "Quantity";
     this.rQty.ColumnEdit = this.repositoryItemTextEdit1;
     this.rQty.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.rQty.FieldName = "nQuantity";
     this.rQty.Name = "rQty";
     this.rQty.Visible = true;
     this.rQty.VisibleIndex = 1;
     this.rQty.Width = 198;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "nEntryID";
     this.gridColumn2.FieldName = "nEntryID";
     this.gridColumn2.Name = "gridColumn2";
     //
     // lk_Style
     //
     this.lk_Style.AutoHeight = false;
     this.lk_Style.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                           new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Style.Name = "lk_Style";
     //
     // btn_Add
     //
     this.btn_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Add.Location = new System.Drawing.Point(114, 84);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.TabIndex = 39;
     this.btn_Add.Text = "Add";
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // simpleButton3
     //
     this.simpleButton3.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton3.Location = new System.Drawing.Point(198, 84);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.TabIndex = 40;
     this.simpleButton3.Text = "Delete";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton4
     //
     this.simpleButton4.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton4.Location = new System.Drawing.Point(282, 84);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.TabIndex = 41;
     this.simpleButton4.Text = "Search";
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(246, 42);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(66, 23);
     this.label1.TabIndex = 42;
     this.label1.Text = "Request By";
     //
     // txtRequestedBy
     //
     this.txtRequestedBy.EditValue = "";
     this.txtRequestedBy.Location = new System.Drawing.Point(312, 42);
     this.txtRequestedBy.Name = "txtRequestedBy";
     //
     // txtRequestedBy.Properties
     //
     this.txtRequestedBy.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.txtRequestedBy.Size = new System.Drawing.Size(104, 20);
     this.txtRequestedBy.TabIndex = 43;
     //
     // frmNewStockRequest
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(438, 353);
     this.Controls.Add(this.txtRequestedBy);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.simpleButton4);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.btn_Add);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.lkBranchTo);
     this.Controls.Add(this.btn_Save);
     this.Controls.Add(this.txtDate);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.dateEdit1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmNewStockRequest";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "New Stock Request";
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranchTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Product)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Style)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRequestedBy.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 38
0
        public string[] GetContent(List<int> wcount) {
            StringHelper sh = new StringHelper();
            string[] colArr = new string[m_ColName.Length];
            string[] useforadd = new string[m_ColName.Length];
            int[] rows = new int[m_ColName.Length];
            int max = 1;
            string newrow = "";
            DataTable dt = GetDS();
            for (int j = 0; j < dt.Rows.Count; j++) {
                max = 1;

                for (int i = 0; i < dt.Columns.Count; i++) {
                    //DataRow dr= gridView1.GetDataRow(j);
                    string oneCol = dt.Rows[j][i].ToString();
                    if (gridView1.Columns[i].ColumnEdit is RepositoryItemDateEdit && oneCol != "") {
                        DevExpress.XtraEditors.DateEdit de = new DevExpress.XtraEditors.DateEdit();
                        de.DateTime = Convert.ToDateTime(oneCol);
                        de.Properties.Mask.EditMask = gridView1.Columns[i].ColumnEdit.EditFormat.FormatString;
                        de.Properties.Mask.UseMaskAsDisplayFormat = true;
                        oneCol = de.Text;
                    } else if (gridView1.Columns[i].ColumnEdit is RepositoryItemBaseSpinEdit && oneCol != "") {
                        DevExpress.XtraEditors.SpinEdit de = new DevExpress.XtraEditors.SpinEdit();
                        de.Text = oneCol;
                        de.Properties.EditMask = gridView1.Columns[i].ColumnEdit.DisplayFormat.FormatString;
                        de.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                        de.Properties.DisplayFormat.FormatString = gridView1.Columns[i].ColumnEdit.DisplayFormat.FormatString;
                        oneCol = de.Text;
                    }

                    //if (oneCol != "")
                    {
                        //string splitRst = sh.GetPlitStringN(oneCol, wcount[i]);
                        if (oneCol == "")
                            oneCol = " ";
                        string splitRst = oneCol;
                        if (oneCol.Length > wcount[i]) splitRst = oneCol.Substring(0, wcount[i]);
                        //if (GetPlitLen(splitRst) > max)
                        //    max = GetPlitLen(splitRst);
                        colArr[i] += newrow + splitRst;
                        useforadd[i] = newrow + splitRst;
                        if (i == dt.Columns.Count - 1 && max != 1) {
                            AddMauRow(ref colArr, useforadd, max);
                        }
                    }
                }
                newrow = "\r\n";
            }
            RomoveEnd(ref colArr);
            Console.WriteLine("1");
            return colArr;
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.dateEdit2 = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.radioGroup1 = new DevExpress.XtraEditors.RadioGroup();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.dateEdit3 = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit4 = new DevExpress.XtraEditors.DateEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.radioGroup2 = new DevExpress.XtraEditors.RadioGroup();
     this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
     this.dropDownButton3 = new DevExpress.XtraEditors.DropDownButton();
     this.dropDownButton2 = new DevExpress.XtraEditors.DropDownButton();
     this.dropDownButton1 = new DevExpress.XtraEditors.DropDownButton();
     this.radioGroup3 = new DevExpress.XtraEditors.RadioGroup();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit4.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
     this.groupControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup3.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton4,
     this.toolStripButton1,
     this.toolStripButton3});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(455, 25);
     this.toolStrip1.TabIndex = 33;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton4
     //
     this.toolStripButton4.Image = global::forms.Properties.Resources.imprimir;
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(68, 22);
     this.toolStripButton4.Text = "Generar";
     //
     // toolStripButton1
     //
     this.toolStripButton1.Image = global::forms.Properties.Resources.guardar;
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(69, 22);
     this.toolStripButton1.Text = "Guardar";
     //
     // toolStripButton3
     //
     this.toolStripButton3.Image = global::forms.Properties.Resources._24_cancelar;
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.Size = new System.Drawing.Size(49, 22);
     this.toolStripButton3.Text = "Salir";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(12, 35);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(436, 316);
     this.xtraTabControl1.TabIndex = 32;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage3});
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.groupControl3);
     this.xtraTabPage1.Controls.Add(this.groupControl2);
     this.xtraTabPage1.Controls.Add(this.groupControl1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(430, 288);
     this.xtraTabPage1.Text = "Individual";
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.labelControl5);
     this.groupControl3.Controls.Add(this.dateEdit2);
     this.groupControl3.Controls.Add(this.dateEdit1);
     this.groupControl3.Controls.Add(this.labelControl4);
     this.groupControl3.Controls.Add(this.labelControl3);
     this.groupControl3.Location = new System.Drawing.Point(200, 147);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(215, 110);
     this.groupControl3.TabIndex = 38;
     this.groupControl3.Text = "Fecha";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(41, 48);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(30, 13);
     this.labelControl5.TabIndex = 39;
     this.labelControl5.Text = "Desde";
     //
     // dateEdit2
     //
     this.dateEdit2.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 35, 0);
     this.dateEdit2.Location = new System.Drawing.Point(86, 71);
     this.dateEdit2.Name = "dateEdit2";
     this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit2.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit2.Size = new System.Drawing.Size(100, 20);
     this.dateEdit2.TabIndex = 38;
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 45, 0);
     this.dateEdit1.Location = new System.Drawing.Point(86, 45);
     this.dateEdit1.Name = "dateEdit1";
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit1.Size = new System.Drawing.Size(100, 20);
     this.dateEdit1.TabIndex = 37;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(-77, 44);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(30, 13);
     this.labelControl4.TabIndex = 35;
     this.labelControl4.Text = "Desde";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(41, 74);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(28, 13);
     this.labelControl3.TabIndex = 36;
     this.labelControl3.Text = "Hasta";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.radioGroup1);
     this.groupControl2.Location = new System.Drawing.Point(13, 147);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(181, 110);
     this.groupControl2.TabIndex = 37;
     //
     // radioGroup1
     //
     this.radioGroup1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radioGroup1.Location = new System.Drawing.Point(2, 21);
     this.radioGroup1.Name = "radioGroup1";
     this.radioGroup1.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Suma"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Detalle")});
     this.radioGroup1.Size = new System.Drawing.Size(177, 87);
     this.radioGroup1.TabIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.simpleButton1);
     this.groupControl1.Controls.Add(this.textEdit2);
     this.groupControl1.Controls.Add(this.textEdit1);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Location = new System.Drawing.Point(13, 18);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(402, 110);
     this.groupControl1.TabIndex = 36;
     this.groupControl1.Text = "Empleado";
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(178, 32);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(30, 23);
     this.simpleButton1.TabIndex = 4;
     this.simpleButton1.Text = "...";
     //
     // textEdit2
     //
     this.textEdit2.Location = new System.Drawing.Point(72, 61);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Size = new System.Drawing.Size(241, 20);
     this.textEdit2.TabIndex = 3;
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(72, 35);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(100, 20);
     this.textEdit1.TabIndex = 2;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(15, 63);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(41, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "Nombre:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(15, 35);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(50, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Empleado:";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.groupControl4);
     this.xtraTabPage3.Controls.Add(this.groupControl5);
     this.xtraTabPage3.Controls.Add(this.groupControl6);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(430, 288);
     this.xtraTabPage3.Text = "General";
     //
     // groupControl4
     //
     this.groupControl4.Controls.Add(this.labelControl6);
     this.groupControl4.Controls.Add(this.dateEdit3);
     this.groupControl4.Controls.Add(this.dateEdit4);
     this.groupControl4.Controls.Add(this.labelControl7);
     this.groupControl4.Controls.Add(this.labelControl8);
     this.groupControl4.Location = new System.Drawing.Point(200, 166);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(215, 91);
     this.groupControl4.TabIndex = 38;
     this.groupControl4.Text = "Fecha";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(41, 39);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(30, 13);
     this.labelControl6.TabIndex = 39;
     this.labelControl6.Text = "Desde";
     //
     // dateEdit3
     //
     this.dateEdit3.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 35, 0);
     this.dateEdit3.Location = new System.Drawing.Point(86, 62);
     this.dateEdit3.Name = "dateEdit3";
     this.dateEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit3.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit3.Size = new System.Drawing.Size(100, 20);
     this.dateEdit3.TabIndex = 38;
     //
     // dateEdit4
     //
     this.dateEdit4.EditValue = new System.DateTime(2013, 7, 11, 21, 51, 45, 0);
     this.dateEdit4.Location = new System.Drawing.Point(86, 36);
     this.dateEdit4.Name = "dateEdit4";
     this.dateEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit4.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit4.Size = new System.Drawing.Size(100, 20);
     this.dateEdit4.TabIndex = 37;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(-77, 44);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(30, 13);
     this.labelControl7.TabIndex = 35;
     this.labelControl7.Text = "Desde";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(41, 65);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(28, 13);
     this.labelControl8.TabIndex = 36;
     this.labelControl8.Text = "Hasta";
     //
     // groupControl5
     //
     this.groupControl5.Controls.Add(this.radioGroup2);
     this.groupControl5.Location = new System.Drawing.Point(13, 166);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(181, 91);
     this.groupControl5.TabIndex = 37;
     //
     // radioGroup2
     //
     this.radioGroup2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radioGroup2.Location = new System.Drawing.Point(2, 21);
     this.radioGroup2.Name = "radioGroup2";
     this.radioGroup2.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Suma"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Detalle")});
     this.radioGroup2.Size = new System.Drawing.Size(177, 68);
     this.radioGroup2.TabIndex = 0;
     //
     // groupControl6
     //
     this.groupControl6.Controls.Add(this.dropDownButton3);
     this.groupControl6.Controls.Add(this.dropDownButton2);
     this.groupControl6.Controls.Add(this.dropDownButton1);
     this.groupControl6.Controls.Add(this.radioGroup3);
     this.groupControl6.Location = new System.Drawing.Point(13, 18);
     this.groupControl6.Name = "groupControl6";
     this.groupControl6.Size = new System.Drawing.Size(402, 142);
     this.groupControl6.TabIndex = 36;
     //
     // dropDownButton3
     //
     this.dropDownButton3.Location = new System.Drawing.Point(109, 87);
     this.dropDownButton3.Name = "dropDownButton3";
     this.dropDownButton3.Size = new System.Drawing.Size(135, 23);
     this.dropDownButton3.TabIndex = 4;
     //
     // dropDownButton2
     //
     this.dropDownButton2.Location = new System.Drawing.Point(109, 58);
     this.dropDownButton2.Name = "dropDownButton2";
     this.dropDownButton2.Size = new System.Drawing.Size(135, 23);
     this.dropDownButton2.TabIndex = 3;
     //
     // dropDownButton1
     //
     this.dropDownButton1.Location = new System.Drawing.Point(109, 29);
     this.dropDownButton1.Name = "dropDownButton1";
     this.dropDownButton1.Size = new System.Drawing.Size(135, 23);
     this.dropDownButton1.TabIndex = 2;
     //
     // radioGroup3
     //
     this.radioGroup3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radioGroup3.Location = new System.Drawing.Point(2, 21);
     this.radioGroup3.Name = "radioGroup3";
     this.radioGroup3.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Departamento"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Empleado"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Cargo"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Todos")});
     this.radioGroup3.Size = new System.Drawing.Size(398, 119);
     this.radioGroup3.TabIndex = 1;
     //
     // frmConsultaReporteAtrasosFaltas
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(455, 363);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.xtraTabControl1);
     this.Name = "frmConsultaReporteAtrasosFaltas";
     this.Text = "Consulta/Reporte de Atrasos y Faltas";
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     this.groupControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit4.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
     this.groupControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radioGroup3.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.OK = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.cancel = new DevExpress.XtraBars.BarButtonItem();
     this.createMovement = new DevExpress.XtraBars.BarButtonItem();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.NomenclatureInfoButtonsBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.State = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.Car = new Aramis.AramisSearchLookUpEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.Driver = new Aramis.AramisSearchLookUpEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.Carrier = new Aramis.AramisSearchLookUpEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.Contractor = new Aramis.AramisSearchLookUpEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TypeOfShipment = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.Date = new DevExpress.XtraEditors.DateEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.IncomeNumber = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.Info = new DevExpress.XtraEditors.LabelControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
     this.nomenclatureView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Car.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Driver.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Carrier.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Contractor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfShipment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IncomeNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.OK);
     this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
     this.ribbonStatusBar.ItemLinks.Add(this.cancel);
     this.ribbonStatusBar.ItemLinks.Add(this.createMovement);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 544);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(720, 31);
     //
     // OK
     //
     this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.OK.Caption = "OK";
     this.OK.Id = 0;
     this.OK.ImageIndex = 0;
     this.OK.Name = "OK";
     this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem2.Caption = "��������";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
     //
     // cancel
     //
     this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.cancel.Caption = "³����";
     this.cancel.Id = 2;
     this.cancel.ImageIndex = 1;
     this.cancel.Name = "cancel";
     this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
     //
     // createMovement
     //
     this.createMovement.Caption = "���������� ����������";
     this.createMovement.Id = 18;
     this.createMovement.ImageIndex = 2;
     this.createMovement.Name = "createMovement";
     this.createMovement.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.createMovement_ItemClick);
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.OK,
     this.barButtonItem2,
     this.cancel,
     this.createMovement,
     this.barButtonItem8});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 20;
     this.ribbon.Name = "ribbon";
     this.ribbon.Size = new System.Drawing.Size(720, 49);
     this.ribbon.StatusBar = this.NomenclatureInfoButtonsBar;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
     //
     // NomenclatureInfoButtonsBar
     //
     this.NomenclatureInfoButtonsBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.barButtonItem8);
     this.NomenclatureInfoButtonsBar.Location = new System.Drawing.Point(2, 2);
     this.NomenclatureInfoButtonsBar.Name = "NomenclatureInfoButtonsBar";
     this.NomenclatureInfoButtonsBar.Ribbon = this.ribbon;
     this.NomenclatureInfoButtonsBar.Size = new System.Drawing.Size(716, 27);
     //
     // panelControl
     //
     this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl.Controls.Add(this.State);
     this.panelControl.Controls.Add(this.labelControl8);
     this.panelControl.Controls.Add(this.Car);
     this.panelControl.Controls.Add(this.labelControl7);
     this.panelControl.Controls.Add(this.Driver);
     this.panelControl.Controls.Add(this.labelControl6);
     this.panelControl.Controls.Add(this.Carrier);
     this.panelControl.Controls.Add(this.labelControl5);
     this.panelControl.Controls.Add(this.Contractor);
     this.panelControl.Controls.Add(this.labelControl4);
     this.panelControl.Controls.Add(this.TypeOfShipment);
     this.panelControl.Controls.Add(this.labelControl3);
     this.panelControl.Controls.Add(this.Date);
     this.panelControl.Controls.Add(this.labelControl2);
     this.panelControl.Controls.Add(this.IncomeNumber);
     this.panelControl.Controls.Add(this.labelControl1);
     this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl.Location = new System.Drawing.Point(0, 49);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(720, 110);
     this.panelControl.TabIndex = 0;
     //
     // State
     //
     this.State.Location = new System.Drawing.Point(455, 31);
     this.State.MenuManager = this.ribbon;
     this.State.Name = "State";
     this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.State.Size = new System.Drawing.Size(209, 20);
     this.State.TabIndex = 3;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(366, 34);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(82, 13);
     this.labelControl8.TabIndex = 14;
     this.labelControl8.Text = "���� ���������";
     //
     // Car
     //
     this.Car.BaseFilter = null;
     this.Car.Location = new System.Drawing.Point(455, 83);
     this.Car.MenuManager = this.ribbon;
     this.Car.Name = "Car";
     this.Car.Properties.BaseFilter = null;
     this.Car.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Car.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Car.Properties.NullText = "";
     this.Car.Size = new System.Drawing.Size(209, 20);
     this.Car.TabIndex = 7;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(366, 86);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(40, 13);
     this.labelControl7.TabIndex = 12;
     this.labelControl7.Text = "������";
     //
     // Driver
     //
     this.Driver.BaseFilter = null;
     this.Driver.Location = new System.Drawing.Point(114, 83);
     this.Driver.MenuManager = this.ribbon;
     this.Driver.Name = "Driver";
     this.Driver.Properties.BaseFilter = null;
     this.Driver.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Driver.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Driver.Properties.NullText = "";
     this.Driver.Size = new System.Drawing.Size(246, 20);
     this.Driver.TabIndex = 6;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(10, 86);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(28, 13);
     this.labelControl6.TabIndex = 10;
     this.labelControl6.Text = "����";
     //
     // Carrier
     //
     this.Carrier.BaseFilter = null;
     this.Carrier.Location = new System.Drawing.Point(455, 57);
     this.Carrier.MenuManager = this.ribbon;
     this.Carrier.Name = "Carrier";
     this.Carrier.Properties.BaseFilter = null;
     this.Carrier.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Carrier.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Carrier.Properties.NullText = "";
     this.Carrier.Size = new System.Drawing.Size(209, 20);
     this.Carrier.TabIndex = 5;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(366, 60);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(57, 13);
     this.labelControl5.TabIndex = 8;
     this.labelControl5.Text = "���������";
     //
     // Contractor
     //
     this.Contractor.BaseFilter = null;
     this.Contractor.Location = new System.Drawing.Point(114, 57);
     this.Contractor.MenuManager = this.ribbon;
     this.Contractor.Name = "Contractor";
     this.Contractor.Properties.BaseFilter = null;
     this.Contractor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Contractor.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Contractor.Properties.NullText = "";
     this.Contractor.Size = new System.Drawing.Size(246, 20);
     this.Contractor.TabIndex = 4;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(10, 60);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(60, 13);
     this.labelControl4.TabIndex = 6;
     this.labelControl4.Text = "����������";
     //
     // TypeOfShipment
     //
     this.TypeOfShipment.Location = new System.Drawing.Point(114, 31);
     this.TypeOfShipment.MenuManager = this.ribbon;
     this.TypeOfShipment.Name = "TypeOfShipment";
     this.TypeOfShipment.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TypeOfShipment.Size = new System.Drawing.Size(246, 20);
     this.TypeOfShipment.TabIndex = 2;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(10, 34);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(99, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "��� ������������";
     //
     // Date
     //
     this.Date.EditValue = null;
     this.Date.Location = new System.Drawing.Point(260, 6);
     this.Date.MenuManager = this.ribbon;
     this.Date.Name = "Date";
     this.Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Date.Size = new System.Drawing.Size(100, 20);
     this.Date.TabIndex = 1;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(225, 8);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(29, 13);
     this.labelControl2.TabIndex = 2;
     this.labelControl2.Text = "���� ";
     //
     // IncomeNumber
     //
     this.IncomeNumber.Location = new System.Drawing.Point(114, 5);
     this.IncomeNumber.MenuManager = this.ribbon;
     this.IncomeNumber.Name = "IncomeNumber";
     this.IncomeNumber.Size = new System.Drawing.Size(105, 20);
     this.IncomeNumber.TabIndex = 0;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(10, 8);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(68, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "� ��������";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.pictureEdit1);
     this.panelControl1.Controls.Add(this.Info);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 524);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(720, 20);
     this.panelControl1.TabIndex = 0;
     //
     // pictureEdit1
     //
     this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
     this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
     this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
     this.pictureEdit1.MenuManager = this.ribbon;
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
     this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
     this.pictureEdit1.TabIndex = 3;
     this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
     this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.pictureEdit1.ToolTipTitle = "������:";
     //
     // Info
     //
     this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
     this.Info.Location = new System.Drawing.Point(24, 3);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(12, 13);
     this.Info.TabIndex = 1;
     this.Info.Text = "...";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem1.Caption = "OK";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem3.Caption = "��������";
     this.barButtonItem3.Id = 1;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem4.Caption = "³����";
     this.barButtonItem4.Id = 2;
     this.barButtonItem4.ImageIndex = 1;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // NomenclatureInfo
     //
     this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.NomenclatureInfo.Location = new System.Drawing.Point(2, 29);
     this.NomenclatureInfo.MainView = this.nomenclatureView;
     this.NomenclatureInfo.MenuManager = this.ribbon;
     this.NomenclatureInfo.Name = "NomenclatureInfo";
     this.NomenclatureInfo.Size = new System.Drawing.Size(716, 334);
     this.NomenclatureInfo.TabIndex = 1;
     this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.nomenclatureView});
     //
     // nomenclatureView
     //
     this.nomenclatureView.GridControl = this.NomenclatureInfo;
     this.nomenclatureView.Name = "nomenclatureView";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem5.Caption = "OK";
     this.barButtonItem5.Id = 0;
     this.barButtonItem5.ImageIndex = 0;
     this.barButtonItem5.Name = "barButtonItem5";
     //
     // barButtonItem6
     //
     this.barButtonItem6.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem6.Caption = "��������";
     this.barButtonItem6.Id = 1;
     this.barButtonItem6.Name = "barButtonItem6";
     //
     // barButtonItem7
     //
     this.barButtonItem7.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem7.Caption = "³����";
     this.barButtonItem7.Id = 2;
     this.barButtonItem7.ImageIndex = 1;
     this.barButtonItem7.Name = "barButtonItem7";
     //
     // panelControl3
     //
     this.panelControl3.Controls.Add(this.NomenclatureInfo);
     this.panelControl3.Controls.Add(this.NomenclatureInfoButtonsBar);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 159);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(720, 365);
     this.panelControl3.TabIndex = 25;
     //
     // barButtonItem8
     //
     this.barButtonItem8.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem8.Caption = "��������� ����";
     this.barButtonItem8.Id = 19;
     this.barButtonItem8.Name = "barButtonItem8";
     this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick);
     //
     // ShipmentPlanItemForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(720, 575);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControl);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.KeyPreview = true;
     this.Name = "ShipmentPlanItemForm";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "Item form";
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     this.panelControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Car.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Driver.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Carrier.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Contractor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfShipment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IncomeNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     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.label10              = new System.Windows.Forms.Label();
     this.textEdit1            = new DevExpress.XtraEditors.TextEdit();
     this.lkpEdtBranchCode     = new DevExpress.XtraEditors.LookUpEdit();
     this.lkpEdtDeptID         = new DevExpress.XtraEditors.LookUpEdit();
     this.lkpEdtCaseType       = new DevExpress.XtraEditors.LookUpEdit();
     this.mmEdtDetail          = new DevExpress.XtraEditors.MemoEdit();
     this.SimpleButton56       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1        = new DevExpress.XtraEditors.SimpleButton();
     this.lkpEdtCategory       = new DevExpress.XtraEditors.LookUpEdit();
     this.label11              = new System.Windows.Forms.Label();
     this.dtEdtDate            = new DevExpress.XtraEditors.DateEdit();
     this.lkpEdtStaff          = new DevExpress.XtraEditors.LookUpEdit();
     this.label7               = new System.Windows.Forms.Label();
     this.lkpEdtDeptAssignedID = new DevExpress.XtraEditors.LookUpEdit();
     this.label8               = new System.Windows.Forms.Label();
     this.txtEdtMembershipID   = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtDeptID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCaseType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mmEdtDetail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtStaff.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtDeptAssignedID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtMembershipID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(18, 12);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 20);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Subject";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(18, 40);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 20);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Date";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(18, 68);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(100, 20);
     this.label3.TabIndex = 2;
     this.label3.Text     = "Branch Code";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(18, 96);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(100, 20);
     this.label4.TabIndex = 3;
     this.label4.Text     = "Department ID";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(18, 176);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(100, 20);
     this.label5.TabIndex = 4;
     this.label5.Text     = "Case Type";
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(18, 206);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(100, 20);
     this.label6.TabIndex = 5;
     this.label6.Text     = "Membership ID";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(18, 264);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(100, 20);
     this.label10.TabIndex = 9;
     this.label10.Text     = "Detail";
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "";
     this.textEdit1.Location  = new System.Drawing.Point(142, 10);
     this.textEdit1.Name      = "textEdit1";
     this.textEdit1.Size      = new System.Drawing.Size(236, 20);
     this.textEdit1.TabIndex  = 0;
     //
     // lkpEdtBranchCode
     //
     this.lkpEdtBranchCode.EditValue = "";
     this.lkpEdtBranchCode.Location  = new System.Drawing.Point(142, 66);
     this.lkpEdtBranchCode.Name      = "lkpEdtBranchCode";
     //
     // lkpEdtBranchCode.Properties
     //
     this.lkpEdtBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtBranchCode.Size     = new System.Drawing.Size(236, 20);
     this.lkpEdtBranchCode.TabIndex = 2;
     //
     // lkpEdtDeptID
     //
     this.lkpEdtDeptID.EditValue = "";
     this.lkpEdtDeptID.Location  = new System.Drawing.Point(142, 94);
     this.lkpEdtDeptID.Name      = "lkpEdtDeptID";
     //
     // lkpEdtDeptID.Properties
     //
     this.lkpEdtDeptID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtDeptID.Size     = new System.Drawing.Size(236, 20);
     this.lkpEdtDeptID.TabIndex = 3;
     //
     // lkpEdtCaseType
     //
     this.lkpEdtCaseType.EditValue = "";
     this.lkpEdtCaseType.Location  = new System.Drawing.Point(142, 174);
     this.lkpEdtCaseType.Name      = "lkpEdtCaseType";
     //
     // lkpEdtCaseType.Properties
     //
     this.lkpEdtCaseType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtCaseType.Size     = new System.Drawing.Size(236, 20);
     this.lkpEdtCaseType.TabIndex = 6;
     //
     // mmEdtDetail
     //
     this.mmEdtDetail.EditValue = "";
     this.mmEdtDetail.Location  = new System.Drawing.Point(142, 264);
     this.mmEdtDetail.Name      = "mmEdtDetail";
     this.mmEdtDetail.Size      = new System.Drawing.Size(236, 102);
     this.mmEdtDetail.TabIndex  = 9;
     //
     // SimpleButton56
     //
     this.SimpleButton56.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.SimpleButton56.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.SimpleButton56.Location     = new System.Drawing.Point(222, 376);
     this.SimpleButton56.Name         = "SimpleButton56";
     this.SimpleButton56.Size         = new System.Drawing.Size(72, 20);
     this.SimpleButton56.TabIndex     = 10;
     this.SimpleButton56.Text         = "Save";
     this.SimpleButton56.Click       += new System.EventHandler(this.SimpleButton56_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton1.Location     = new System.Drawing.Point(302, 376);
     this.simpleButton1.Name         = "simpleButton1";
     this.simpleButton1.Size         = new System.Drawing.Size(72, 20);
     this.simpleButton1.TabIndex     = 11;
     this.simpleButton1.Text         = "Cancel";
     //
     // lkpEdtCategory
     //
     this.lkpEdtCategory.EditValue = "";
     this.lkpEdtCategory.Location  = new System.Drawing.Point(142, 122);
     this.lkpEdtCategory.Name      = "lkpEdtCategory";
     //
     // lkpEdtCategory.Properties
     //
     this.lkpEdtCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtCategory.Size              = new System.Drawing.Size(236, 20);
     this.lkpEdtCategory.TabIndex          = 4;
     this.lkpEdtCategory.EditValueChanged += new System.EventHandler(this.lkpEdtCategory_EditValueChanged);
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(18, 124);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(100, 20);
     this.label11.TabIndex = 28;
     this.label11.Text     = "Case Category";
     //
     // dtEdtDate
     //
     this.dtEdtDate.EditValue = new System.DateTime(2005, 10, 31, 0, 0, 0, 0);
     this.dtEdtDate.Location  = new System.Drawing.Point(142, 38);
     this.dtEdtDate.Name      = "dtEdtDate";
     //
     // dtEdtDate.Properties
     //
     this.dtEdtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtEdtDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtDate.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtDate.Size     = new System.Drawing.Size(236, 20);
     this.dtEdtDate.TabIndex = 1;
     //
     // lkpEdtStaff
     //
     this.lkpEdtStaff.EditValue = "";
     this.lkpEdtStaff.Location  = new System.Drawing.Point(142, 148);
     this.lkpEdtStaff.Name      = "lkpEdtStaff";
     //
     // lkpEdtStaff.Properties
     //
     this.lkpEdtStaff.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtStaff.Size     = new System.Drawing.Size(236, 20);
     this.lkpEdtStaff.TabIndex = 5;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(18, 150);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(100, 20);
     this.label7.TabIndex = 31;
     this.label7.Text     = "Case Staff";
     //
     // lkpEdtDeptAssignedID
     //
     this.lkpEdtDeptAssignedID.EditValue = "";
     this.lkpEdtDeptAssignedID.Location  = new System.Drawing.Point(142, 234);
     this.lkpEdtDeptAssignedID.Name      = "lkpEdtDeptAssignedID";
     //
     // lkpEdtDeptAssignedID.Properties
     //
     this.lkpEdtDeptAssignedID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtDeptAssignedID.Size     = new System.Drawing.Size(236, 20);
     this.lkpEdtDeptAssignedID.TabIndex = 8;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(18, 234);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(100, 20);
     this.label8.TabIndex = 7;
     this.label8.Text     = "Dept. Assigned ID";
     //
     // txtEdtMembershipID
     //
     this.txtEdtMembershipID.EditValue = "";
     this.txtEdtMembershipID.Location  = new System.Drawing.Point(142, 206);
     this.txtEdtMembershipID.Name      = "txtEdtMembershipID";
     this.txtEdtMembershipID.Size      = new System.Drawing.Size(236, 20);
     this.txtEdtMembershipID.TabIndex  = 32;
     //
     // FormNewCustomerVoice
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(440, 410);
     this.Controls.Add(this.txtEdtMembershipID);
     this.Controls.Add(this.lkpEdtStaff);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.dtEdtDate);
     this.Controls.Add(this.lkpEdtCategory);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.SimpleButton56);
     this.Controls.Add(this.mmEdtDetail);
     this.Controls.Add(this.lkpEdtDeptAssignedID);
     this.Controls.Add(this.lkpEdtCaseType);
     this.Controls.Add(this.lkpEdtDeptID);
     this.Controls.Add(this.lkpEdtBranchCode);
     this.Controls.Add(this.textEdit1);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label8);
     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.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormNewCustomerVoice";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "New Customer Voice";
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtDeptID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCaseType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mmEdtDetail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtStaff.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtDeptAssignedID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtMembershipID.Properties)).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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_recetas));
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = 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();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.btn_nuevo = new DevExpress.XtraBars.BarButtonItem();
     this.btn_cancelar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_imprimir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_salir = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.btnLoad = new DevExpress.XtraBars.BarButtonItem();
     this.btnInicio = new DevExpress.XtraBars.BarButtonItem();
     this.btnAnterior = new DevExpress.XtraBars.BarButtonItem();
     this.btnSiguiente = new DevExpress.XtraBars.BarButtonItem();
     this.btnUltimo = new DevExpress.XtraBars.BarButtonItem();
     this.textBox13 = new System.Windows.Forms.TextBox();
     this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.pnl_busqueda = new System.Windows.Forms.GroupBox();
     this.btn_buscar = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.txt_versionbus = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.txt_articnamebus = new System.Windows.Forms.TextBox();
     this.txt_articidoldbus = new System.Windows.Forms.TextBox();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.txt_version = new System.Windows.Forms.TextBox();
     this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.txt_articname = new System.Windows.Forms.TextBox();
     this.txt_articidold = new System.Windows.Forms.TextBox();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.txt_fechemi = new DevExpress.XtraEditors.DateEdit();
     this.dgv_color = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.colorid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colorname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla07 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla08 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla09 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.talla12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.pnl_busqueda.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechemi.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechemi.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_color)).BeginInit();
     this.SuspendLayout();
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.btn_nuevo,
     this.btn_cancelar,
     this.btn_imprimir,
     this.btnLoad,
     this.btnInicio,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btn_salir});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 16;
     //
     // bar1
     //
     this.bar1.BarName = "Main menu";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatLocation = new System.Drawing.Point(214, 135);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.btn_nuevo, DevExpress.XtraBars.BarItemPaintStyle.Standard),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_cancelar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_imprimir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_salir)});
     this.bar1.OptionsBar.MultiLine = true;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Main menu";
     //
     // btn_nuevo
     //
     this.btn_nuevo.Caption = "btnNew";
     this.btn_nuevo.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Glyph")));
     this.btn_nuevo.Id = 2;
     this.btn_nuevo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.LargeGlyph")));
     this.btn_nuevo.Name = "btn_nuevo";
     toolTipTitleItem1.Text = "Nuevo";
     superToolTip2.Items.Add(toolTipTitleItem1);
     this.btn_nuevo.SuperTip = superToolTip2;
     this.btn_nuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_nuevo_ItemClick);
     //
     // btn_cancelar
     //
     this.btn_cancelar.Caption = "btnCancel";
     this.btn_cancelar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.Glyph")));
     this.btn_cancelar.Id = 5;
     this.btn_cancelar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_cancelar.LargeGlyph")));
     this.btn_cancelar.Name = "btn_cancelar";
     toolTipTitleItem2.Text = "Cancelar";
     superToolTip3.Items.Add(toolTipTitleItem2);
     this.btn_cancelar.SuperTip = superToolTip3;
     this.btn_cancelar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_cancelar_ItemClick);
     //
     // btn_imprimir
     //
     this.btn_imprimir.Caption = "btnPrint";
     this.btn_imprimir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Glyph")));
     this.btn_imprimir.Id = 7;
     this.btn_imprimir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.LargeGlyph")));
     this.btn_imprimir.Name = "btn_imprimir";
     toolTipTitleItem3.Text = "Imprimir";
     superToolTip4.Items.Add(toolTipTitleItem3);
     this.btn_imprimir.SuperTip = superToolTip4;
     //
     // btn_salir
     //
     this.btn_salir.Caption = "btnExit";
     this.btn_salir.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.Glyph")));
     this.btn_salir.Id = 14;
     this.btn_salir.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_salir.LargeGlyph")));
     this.btn_salir.Name = "btn_salir";
     toolTipTitleItem4.Text = "Salir";
     superToolTip5.Items.Add(toolTipTitleItem4);
     this.btn_salir.SuperTip = superToolTip5;
     this.btn_salir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_salir_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(650, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 496);
     this.barDockControlBottom.Size = new System.Drawing.Size(650, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 472);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(650, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 472);
     //
     // btnLoad
     //
     this.btnLoad.Caption = "btnLoad";
     this.btnLoad.Glyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.Glyph")));
     this.btnLoad.Id = 8;
     this.btnLoad.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnLoad.LargeGlyph")));
     this.btnLoad.Name = "btnLoad";
     toolTipTitleItem5.Text = "Actualizar";
     superToolTip6.Items.Add(toolTipTitleItem5);
     this.btnLoad.SuperTip = superToolTip6;
     //
     // btnInicio
     //
     this.btnInicio.Caption = "btnInicio";
     this.btnInicio.Glyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.Glyph")));
     this.btnInicio.Id = 10;
     this.btnInicio.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnInicio.LargeGlyph")));
     this.btnInicio.Name = "btnInicio";
     toolTipTitleItem6.Text = "Primer Registro";
     superToolTip7.Items.Add(toolTipTitleItem6);
     this.btnInicio.SuperTip = superToolTip7;
     //
     // btnAnterior
     //
     this.btnAnterior.Caption = "btnAnterior";
     this.btnAnterior.Glyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.Glyph")));
     this.btnAnterior.Id = 11;
     this.btnAnterior.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnAnterior.LargeGlyph")));
     this.btnAnterior.Name = "btnAnterior";
     toolTipTitleItem7.Text = "Anterior Registro";
     superToolTip8.Items.Add(toolTipTitleItem7);
     this.btnAnterior.SuperTip = superToolTip8;
     //
     // btnSiguiente
     //
     this.btnSiguiente.Caption = "btnSiguiente";
     this.btnSiguiente.Glyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.Glyph")));
     this.btnSiguiente.Id = 12;
     this.btnSiguiente.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnSiguiente.LargeGlyph")));
     this.btnSiguiente.Name = "btnSiguiente";
     toolTipTitleItem8.Text = "Siguiente Registro";
     superToolTip9.Items.Add(toolTipTitleItem8);
     this.btnSiguiente.SuperTip = superToolTip9;
     //
     // btnUltimo
     //
     this.btnUltimo.Caption = "btnUltimo";
     this.btnUltimo.Glyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.Glyph")));
     this.btnUltimo.Id = 13;
     this.btnUltimo.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btnUltimo.LargeGlyph")));
     this.btnUltimo.Name = "btnUltimo";
     toolTipTitleItem9.Text = "Ultimo Registro";
     superToolTip10.Items.Add(toolTipTitleItem9);
     this.btnUltimo.SuperTip = superToolTip10;
     //
     // textBox13
     //
     this.textBox13.Location = new System.Drawing.Point(45, 28);
     this.textBox13.MaxLength = 10;
     this.textBox13.Name = "textBox13";
     this.textBox13.Size = new System.Drawing.Size(110, 20);
     this.textBox13.TabIndex = 228;
     //
     // superTooltip1
     //
     this.superTooltip1.DefaultTooltipSettings = new DevComponents.DotNetBar.SuperTooltipInfo("", "", "", null, null, DevComponents.DotNetBar.eTooltipColor.Gray);
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007VistaGlass;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.pnl_busqueda);
     this.panelControl2.Controls.Add(this.panelControl5);
     this.panelControl2.Controls.Add(this.dgv_color);
     this.panelControl2.Location = new System.Drawing.Point(0, 24);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(648, 473);
     this.panelControl2.TabIndex = 1;
     //
     // pnl_busqueda
     //
     this.pnl_busqueda.Controls.Add(this.btn_buscar);
     this.pnl_busqueda.Controls.Add(this.labelControl2);
     this.pnl_busqueda.Controls.Add(this.txt_versionbus);
     this.pnl_busqueda.Controls.Add(this.labelControl3);
     this.pnl_busqueda.Controls.Add(this.txt_articnamebus);
     this.pnl_busqueda.Controls.Add(this.txt_articidoldbus);
     this.pnl_busqueda.Location = new System.Drawing.Point(6, 56);
     this.pnl_busqueda.Name = "pnl_busqueda";
     this.pnl_busqueda.Size = new System.Drawing.Size(637, 44);
     this.pnl_busqueda.TabIndex = 441;
     this.pnl_busqueda.TabStop = false;
     this.pnl_busqueda.Text = "Busqueda";
     //
     // btn_buscar
     //
     this.btn_buscar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_buscar.Image = ((System.Drawing.Image)(resources.GetObject("btn_buscar.Image")));
     this.btn_buscar.Location = new System.Drawing.Point(538, 15);
     this.btn_buscar.Name = "btn_buscar";
     this.btn_buscar.Size = new System.Drawing.Size(59, 23);
     this.btn_buscar.TabIndex = 446;
     this.btn_buscar.Text = "Buscar";
     this.btn_buscar.ToolTip = "Buscar Receta";
     this.btn_buscar.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_buscar.Click += new System.EventHandler(this.btn_buscar_Click);
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(421, 20);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(39, 13);
     this.labelControl2.TabIndex = 445;
     this.labelControl2.Text = "Versión:";
     //
     // txt_versionbus
     //
     this.txt_versionbus.BackColor = System.Drawing.SystemColors.Window;
     this.txt_versionbus.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_versionbus.Enabled = false;
     this.txt_versionbus.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.txt_versionbus.Location = new System.Drawing.Point(464, 17);
     this.txt_versionbus.MaxLength = 7;
     this.txt_versionbus.Name = "txt_versionbus";
     this.txt_versionbus.Size = new System.Drawing.Size(50, 20);
     this.txt_versionbus.TabIndex = 444;
     this.txt_versionbus.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(25, 19);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(40, 13);
     this.labelControl3.TabIndex = 443;
     this.labelControl3.Text = "Artículo:";
     //
     // txt_articnamebus
     //
     this.txt_articnamebus.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_articnamebus.Enabled = false;
     this.txt_articnamebus.Location = new System.Drawing.Point(120, 17);
     this.txt_articnamebus.MaxLength = 10;
     this.txt_articnamebus.Name = "txt_articnamebus";
     this.txt_articnamebus.Size = new System.Drawing.Size(292, 21);
     this.txt_articnamebus.TabIndex = 442;
     //
     // txt_articidoldbus
     //
     this.txt_articidoldbus.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_articidoldbus.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_articidoldbus.Location = new System.Drawing.Point(68, 17);
     this.txt_articidoldbus.MaxLength = 7;
     this.txt_articidoldbus.Name = "txt_articidoldbus";
     this.txt_articidoldbus.Size = new System.Drawing.Size(50, 21);
     this.txt_articidoldbus.TabIndex = 441;
     this.txt_articidoldbus.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_articidbus_KeyDown);
     //
     // panelControl5
     //
     this.panelControl5.Controls.Add(this.labelControl1);
     this.panelControl5.Controls.Add(this.txt_version);
     this.panelControl5.Controls.Add(this.labelControl20);
     this.panelControl5.Controls.Add(this.labelControl4);
     this.panelControl5.Controls.Add(this.txt_articname);
     this.panelControl5.Controls.Add(this.txt_articidold);
     this.panelControl5.Controls.Add(this.labelControl13);
     this.panelControl5.Controls.Add(this.txt_fechemi);
     this.panelControl5.Location = new System.Drawing.Point(6, 3);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Size = new System.Drawing.Size(637, 51);
     this.panelControl5.TabIndex = 440;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(488, 6);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(35, 13);
     this.labelControl1.TabIndex = 440;
     this.labelControl1.Text = "Versión";
     //
     // txt_version
     //
     this.txt_version.BackColor = System.Drawing.Color.Yellow;
     this.txt_version.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_version.Enabled = false;
     this.txt_version.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.txt_version.Location = new System.Drawing.Point(485, 22);
     this.txt_version.MaxLength = 7;
     this.txt_version.Name = "txt_version";
     this.txt_version.Size = new System.Drawing.Size(50, 22);
     this.txt_version.TabIndex = 439;
     this.txt_version.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelControl20
     //
     this.labelControl20.Location = new System.Drawing.Point(131, 7);
     this.labelControl20.Name = "labelControl20";
     this.labelControl20.Size = new System.Drawing.Size(40, 13);
     this.labelControl20.TabIndex = 205;
     this.labelControl20.Text = "Artículo:";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Papyrus", 16F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Appearance.ForeColor = System.Drawing.Color.Teal;
     this.labelControl4.LineColor = System.Drawing.SystemColors.ActiveBorder;
     this.labelControl4.Location = new System.Drawing.Point(25, 8);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(81, 33);
     this.labelControl4.TabIndex = 438;
     this.labelControl4.Text = "Recetas";
     //
     // txt_articname
     //
     this.txt_articname.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_articname.Enabled = false;
     this.txt_articname.Location = new System.Drawing.Point(181, 23);
     this.txt_articname.MaxLength = 10;
     this.txt_articname.Name = "txt_articname";
     this.txt_articname.Size = new System.Drawing.Size(292, 21);
     this.txt_articname.TabIndex = 203;
     //
     // txt_articidold
     //
     this.txt_articidold.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txt_articidold.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_articidold.Location = new System.Drawing.Point(129, 23);
     this.txt_articidold.MaxLength = 7;
     this.txt_articidold.Name = "txt_articidold";
     this.txt_articidold.Size = new System.Drawing.Size(50, 21);
     this.txt_articidold.TabIndex = 202;
     this.txt_articidold.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_articidold_KeyDown);
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(544, 7);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(67, 13);
     this.labelControl13.TabIndex = 189;
     this.labelControl13.Text = "Fecha Emisión";
     //
     // txt_fechemi
     //
     this.txt_fechemi.EditValue = null;
     this.txt_fechemi.Enabled = false;
     this.txt_fechemi.Location = new System.Drawing.Point(541, 24);
     this.txt_fechemi.MenuManager = this.barManager1;
     this.txt_fechemi.Name = "txt_fechemi";
     this.txt_fechemi.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.txt_fechemi.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechemi.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechemi.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechemi.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechemi.Size = new System.Drawing.Size(84, 20);
     this.txt_fechemi.TabIndex = 188;
     //
     // dgv_color
     //
     this.dgv_color.AllowUserToAddRows = false;
     this.dgv_color.BackgroundColor = System.Drawing.Color.Teal;
     this.dgv_color.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv_color.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colorid,
     this.colorname,
     this.talla01,
     this.talla02,
     this.talla03,
     this.talla04,
     this.talla05,
     this.talla06,
     this.talla07,
     this.talla08,
     this.talla09,
     this.talla10,
     this.talla11,
     this.talla12});
     dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle13.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle13.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     dataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle13.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgv_color.DefaultCellStyle = dataGridViewCellStyle13;
     this.dgv_color.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgv_color.Location = new System.Drawing.Point(5, 101);
     this.dgv_color.Name = "dgv_color";
     this.dgv_color.ReadOnly = true;
     this.dgv_color.RowHeadersVisible = false;
     this.dgv_color.Size = new System.Drawing.Size(638, 367);
     this.dgv_color.TabIndex = 431;
     this.dgv_color.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_color_CellDoubleClick);
     //
     // colorid
     //
     this.colorid.DataPropertyName = "colorid";
     this.colorid.HeaderText = "Cod";
     this.colorid.Name = "colorid";
     this.colorid.ReadOnly = true;
     this.colorid.Width = 40;
     //
     // colorname
     //
     this.colorname.DataPropertyName = "colorname";
     this.colorname.HeaderText = "Color";
     this.colorname.Name = "colorname";
     this.colorname.ReadOnly = true;
     this.colorname.Width = 210;
     //
     // talla01
     //
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla01.DefaultCellStyle = dataGridViewCellStyle1;
     this.talla01.HeaderText = "ta01";
     this.talla01.Name = "talla01";
     this.talla01.ReadOnly = true;
     this.talla01.Width = 30;
     //
     // talla02
     //
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla02.DefaultCellStyle = dataGridViewCellStyle2;
     this.talla02.HeaderText = "ta02";
     this.talla02.Name = "talla02";
     this.talla02.ReadOnly = true;
     this.talla02.Width = 30;
     //
     // talla03
     //
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla03.DefaultCellStyle = dataGridViewCellStyle3;
     this.talla03.HeaderText = "ta03";
     this.talla03.Name = "talla03";
     this.talla03.ReadOnly = true;
     this.talla03.Width = 30;
     //
     // talla04
     //
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla04.DefaultCellStyle = dataGridViewCellStyle4;
     this.talla04.HeaderText = "ta04";
     this.talla04.Name = "talla04";
     this.talla04.ReadOnly = true;
     this.talla04.Width = 30;
     //
     // talla05
     //
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla05.DefaultCellStyle = dataGridViewCellStyle5;
     this.talla05.HeaderText = "ta05";
     this.talla05.Name = "talla05";
     this.talla05.ReadOnly = true;
     this.talla05.Width = 30;
     //
     // talla06
     //
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla06.DefaultCellStyle = dataGridViewCellStyle6;
     this.talla06.HeaderText = "ta06";
     this.talla06.Name = "talla06";
     this.talla06.ReadOnly = true;
     this.talla06.Width = 30;
     //
     // talla07
     //
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla07.DefaultCellStyle = dataGridViewCellStyle7;
     this.talla07.HeaderText = "ta07";
     this.talla07.Name = "talla07";
     this.talla07.ReadOnly = true;
     this.talla07.Width = 30;
     //
     // talla08
     //
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla08.DefaultCellStyle = dataGridViewCellStyle8;
     this.talla08.HeaderText = "ta08";
     this.talla08.Name = "talla08";
     this.talla08.ReadOnly = true;
     this.talla08.Width = 30;
     //
     // talla09
     //
     dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla09.DefaultCellStyle = dataGridViewCellStyle9;
     this.talla09.HeaderText = "ta09";
     this.talla09.Name = "talla09";
     this.talla09.ReadOnly = true;
     this.talla09.Width = 30;
     //
     // talla10
     //
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla10.DefaultCellStyle = dataGridViewCellStyle10;
     this.talla10.HeaderText = "ta10";
     this.talla10.Name = "talla10";
     this.talla10.ReadOnly = true;
     this.talla10.Width = 30;
     //
     // talla11
     //
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla11.DefaultCellStyle = dataGridViewCellStyle11;
     this.talla11.HeaderText = "ta11";
     this.talla11.Name = "talla11";
     this.talla11.ReadOnly = true;
     this.talla11.Width = 30;
     //
     // talla12
     //
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.talla12.DefaultCellStyle = dataGridViewCellStyle12;
     this.talla12.HeaderText = "ta12";
     this.talla12.Name = "talla12";
     this.talla12.ReadOnly = true;
     this.talla12.Width = 30;
     //
     // Frm_recetas
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(650, 496);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_recetas";
     this.Text = "» Frm_Recetas";
     this.Load += new System.EventHandler(this.Frm_orden_produccion_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.pnl_busqueda.ResumeLayout(false);
     this.pnl_busqueda.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     this.panelControl5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechemi.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechemi.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_color)).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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataBillFrm));
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditSalesUnitID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditSortNo1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlEditor = new DevExpress.XtraGrid.GridControl();
     this.mastergridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditEditStoreTrDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditPERSONID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditEMPID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditTotalkasm = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditEditExtraFees = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditEditREM = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditStoreID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditEditBillPayTypeID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditBillDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditBillEdit = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.xtraTabControlEditor = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
     this.BtnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.BtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.LblTotal = new DevExpress.XtraEditors.LabelControl();
     this.GridControlAddDetials = new DevExpress.XtraGrid.GridControl();
     this.gridViewAdd = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnStoreTrID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumnPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumnDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumnSort = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSort = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.TxtREM = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.TxtExtraFees = new DevExpress.XtraEditors.TextEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.TxtTotalkasm = new DevExpress.XtraEditors.TextEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.LUEStoreID = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEBillPayType = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEEMPID = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEPERSONID = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.DEStoreTrDate = new DevExpress.XtraEditors.DateEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.TxtStoreTrIDDAY = new DevExpress.XtraEditors.TextEdit();
     this.TxtStoreTrIDTYPE = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.xtraTabPageEdit = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlEditorDetial = new DevExpress.XtraGrid.GridControl();
     this.gridViewEditDetial = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnEditDetialSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditDetialSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditDetailQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDetialPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditDetialDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDetialSortNo = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditEditDetialDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDetialUpdate = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSalesUnitID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditSortNo1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mastergridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditPERSONID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditEMPID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditTotalkasm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditExtraFees)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditEditREM)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditStoreID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditBillPayTypeID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditBillDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditBillEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlEditor)).BeginInit();
     this.xtraTabControlEditor.SuspendLayout();
     this.xtraTabPageAdd.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlAddDetials)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSort)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtREM.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtExtraFees.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalkasm.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEStoreID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEBillPayType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEMPID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEPERSONID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDDAY.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDTYPE.Properties)).BeginInit();
     this.xtraTabPageEdit.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditorDetial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEditDetial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDetialSanfID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditDetailQuantity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialPrice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialSortNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDetialDelete)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialUpdate)).BeginInit();
     this.SuspendLayout();
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "رقم فاتورة المشتريات";
     this.gridColumn1.FieldName = "WaredID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "الصنف";
     this.gridColumn2.ColumnEdit = this.repositoryItemLookUpEditEditSanfID;
     this.gridColumn2.FieldName = "SanfID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 92;
     //
     // repositoryItemLookUpEditEditSanfID
     //
     this.repositoryItemLookUpEditEditSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditEditSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditEditSanfID.Name = "repositoryItemLookUpEditEditSanfID";
     this.repositoryItemLookUpEditEditSanfID.NullText = "";
     this.repositoryItemLookUpEditEditSanfID.NullValuePrompt = "اختار اسم الصنف";
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "وحدة البيع";
     this.gridColumn24.ColumnEdit = this.repositoryItemLookUpEditEditSalesUnitID;
     this.gridColumn24.FieldName = "SalesUnitID";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     //
     // repositoryItemLookUpEditEditSalesUnitID
     //
     this.repositoryItemLookUpEditEditSalesUnitID.AutoHeight = false;
     this.repositoryItemLookUpEditEditSalesUnitID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditSalesUnitID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitID", "SalesUnitID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "وحدة البيع")});
     this.repositoryItemLookUpEditEditSalesUnitID.Name = "repositoryItemLookUpEditEditSalesUnitID";
     this.repositoryItemLookUpEditEditSalesUnitID.NullText = "";
     this.repositoryItemLookUpEditEditSalesUnitID.NullValuePrompt = "اختار وحدة البيع";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "UnitID";
     this.gridColumn12.FieldName = "UnitID";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "كمية الوارد";
     this.gridColumn4.ColumnEdit = this.repositoryItemTextEditEditQuantity;
     this.gridColumn4.FieldName = "WaredQuantity";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width = 105;
     //
     // repositoryItemTextEditEditQuantity
     //
     this.repositoryItemTextEditEditQuantity.AutoHeight = false;
     this.repositoryItemTextEditEditQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditEditQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditEditQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditEditQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditQuantity.Name = "repositoryItemTextEditEditQuantity";
     this.repositoryItemTextEditEditQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "سعر الشراء";
     this.gridColumn5.ColumnEdit = this.repositoryItemCalcEditEditPrice;
     this.gridColumn5.FieldName = "WaredPrice";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 3;
     this.gridColumn5.Width = 105;
     //
     // repositoryItemCalcEditEditPrice
     //
     this.repositoryItemCalcEditEditPrice.AutoHeight = false;
     this.repositoryItemCalcEditEditPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditEditPrice.DisplayFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditPrice.EditFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditPrice.Mask.EditMask = "c2";
     this.repositoryItemCalcEditEditPrice.Name = "repositoryItemCalcEditEditPrice";
     this.repositoryItemCalcEditEditPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "الخصم";
     this.gridColumn6.ColumnEdit = this.repositoryItemCalcEditEditDiscount;
     this.gridColumn6.FieldName = "DiscountPercent";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 105;
     //
     // repositoryItemCalcEditEditDiscount
     //
     this.repositoryItemCalcEditEditDiscount.AutoHeight = false;
     this.repositoryItemCalcEditEditDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditEditDiscount.DisplayFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditDiscount.EditFormat.FormatString = "c2";
     this.repositoryItemCalcEditEditDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditEditDiscount.Mask.EditMask = "c2";
     this.repositoryItemCalcEditEditDiscount.Name = "repositoryItemCalcEditEditDiscount";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "ترتيب";
     this.gridColumn7.ColumnEdit = this.repositoryItemButtonEditEditSortNo1;
     this.gridColumn7.FieldName = "SortNo";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 105;
     //
     // repositoryItemButtonEditEditSortNo1
     //
     this.repositoryItemButtonEditEditSortNo1.AutoHeight = false;
     this.repositoryItemButtonEditEditSortNo1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditEditSortNo1.Name = "repositoryItemButtonEditEditSortNo1";
     this.repositoryItemButtonEditEditSortNo1.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "المجموع";
     this.gridColumn9.DisplayFormat.FormatString = "c2";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "Total";
     this.gridColumn9.GroupFormat.FormatString = "c2";
     this.gridColumn9.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 5;
     //
     // gridControlEditor
     //
     this.gridControlEditor.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.gridControlEditor.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlEditor.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.gridControlEditor.Location = new System.Drawing.Point(2, 21);
     this.gridControlEditor.MainView = this.mastergridView;
     this.gridControlEditor.Name = "gridControlEditor";
     this.gridControlEditor.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditEditSanfID,
     this.repositoryItemTextEditEditQuantity,
     this.repositoryItemCalcEditEditPrice,
     this.repositoryItemCalcEditEditDiscount,
     this.repositoryItemButtonEditEditSortNo1,
     this.repositoryItemDateEditEditStoreTrDate,
     this.repositoryItemLookUpEditEditPERSONID,
     this.repositoryItemLookUpEditEditEMPID,
     this.repositoryItemTextEditEditTotalkasm,
     this.repositoryItemTextEditEditExtraFees,
     this.repositoryItemLookUpEditEditStoreID,
     this.repositoryItemLookUpEditEditBillPayTypeID,
     this.repositoryItemLookUpEditEditSalesUnitID,
     this.repositoryItemMemoExEditEditREM,
     this.repositoryItemButtonEditEditBillDelete,
     this.repositoryItemButtonEditBillEdit});
     this.gridControlEditor.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gridControlEditor.Size = new System.Drawing.Size(751, 232);
     this.gridControlEditor.TabIndex = 10;
     this.gridControlEditor.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.mastergridView});
     //
     // mastergridView
     //
     this.mastergridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn8,
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn20,
     this.gridColumn22,
     this.gridColumn3,
     this.gridColumn19});
     this.mastergridView.GridControl = this.gridControlEditor;
     this.mastergridView.Name = "mastergridView";
     this.mastergridView.OptionsView.ColumnAutoWidth = false;
     this.mastergridView.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.mastergridView_FocusedRowChanged);
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "StoreTrID";
     this.gridColumn10.FieldName = "StoreTrID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "تاريخ الفاتوره";
     this.gridColumn11.ColumnEdit = this.repositoryItemDateEditEditStoreTrDate;
     this.gridColumn11.FieldName = "StoreTrDate";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 9;
     this.gridColumn11.Width = 96;
     //
     // repositoryItemDateEditEditStoreTrDate
     //
     this.repositoryItemDateEditEditStoreTrDate.AutoHeight = false;
     this.repositoryItemDateEditEditStoreTrDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditEditStoreTrDate.Name = "repositoryItemDateEditEditStoreTrDate";
     this.repositoryItemDateEditEditStoreTrDate.NullValuePrompt = "اختار التاريخ";
     this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "رقم الفاتوره";
     this.gridColumn8.FieldName = "StoreTrIDTYPE";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 10;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "المورد";
     this.gridColumn13.ColumnEdit = this.repositoryItemLookUpEditEditPERSONID;
     this.gridColumn13.FieldName = "PERSONID";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 8;
     this.gridColumn13.Width = 119;
     //
     // repositoryItemLookUpEditEditPERSONID
     //
     this.repositoryItemLookUpEditEditPERSONID.AutoHeight = false;
     this.repositoryItemLookUpEditEditPERSONID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditPERSONID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PERSON", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Tel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Mobil", "موبيل")});
     this.repositoryItemLookUpEditEditPERSONID.Name = "repositoryItemLookUpEditEditPERSONID";
     this.repositoryItemLookUpEditEditPERSONID.NullText = "";
     this.repositoryItemLookUpEditEditPERSONID.NullValuePrompt = "اختار اسم المورد";
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "المستلم";
     this.gridColumn14.ColumnEdit = this.repositoryItemLookUpEditEditEMPID;
     this.gridColumn14.FieldName = "EMPID";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 2;
     this.gridColumn14.Width = 117;
     //
     // repositoryItemLookUpEditEditEMPID
     //
     this.repositoryItemLookUpEditEditEMPID.AutoHeight = false;
     this.repositoryItemLookUpEditEditEMPID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditEMPID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPID", "EMPID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPNAME", "اسم المستلم"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("JOBName", "اسم الوظيفه"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPPHONE", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPMOBIL", "موبيل")});
     this.repositoryItemLookUpEditEditEMPID.Name = "repositoryItemLookUpEditEditEMPID";
     this.repositoryItemLookUpEditEditEMPID.NullText = "";
     this.repositoryItemLookUpEditEditEMPID.NullValuePrompt = "اختار اسم المسئول";
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "خصم كلي";
     this.gridColumn16.ColumnEdit = this.repositoryItemTextEditEditTotalkasm;
     this.gridColumn16.FieldName = "Totalkasm";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 7;
     this.gridColumn16.Width = 67;
     //
     // repositoryItemTextEditEditTotalkasm
     //
     this.repositoryItemTextEditEditTotalkasm.AutoHeight = false;
     this.repositoryItemTextEditEditTotalkasm.DisplayFormat.FormatString = "c2";
     this.repositoryItemTextEditEditTotalkasm.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.EditFormat.FormatString = "c2";
     this.repositoryItemTextEditEditTotalkasm.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.Mask.EditMask = "c2";
     this.repositoryItemTextEditEditTotalkasm.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditTotalkasm.Name = "repositoryItemTextEditEditTotalkasm";
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "مصروفات أضافيه";
     this.gridColumn17.ColumnEdit = this.repositoryItemTextEditEditExtraFees;
     this.gridColumn17.FieldName = "ExtraFees";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 6;
     this.gridColumn17.Width = 94;
     //
     // repositoryItemTextEditEditExtraFees
     //
     this.repositoryItemTextEditEditExtraFees.AutoHeight = false;
     this.repositoryItemTextEditEditExtraFees.DisplayFormat.FormatString = "c2";
     this.repositoryItemTextEditEditExtraFees.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditExtraFees.EditFormat.FormatString = "c2";
     this.repositoryItemTextEditEditExtraFees.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditEditExtraFees.Mask.EditMask = "c2";
     this.repositoryItemTextEditEditExtraFees.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditEditExtraFees.Name = "repositoryItemTextEditEditExtraFees";
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "معلومات";
     this.gridColumn18.ColumnEdit = this.repositoryItemMemoExEditEditREM;
     this.gridColumn18.FieldName = "REM";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 5;
     this.gridColumn18.Width = 56;
     //
     // repositoryItemMemoExEditEditREM
     //
     this.repositoryItemMemoExEditEditREM.AutoHeight = false;
     this.repositoryItemMemoExEditEditREM.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditEditREM.Name = "repositoryItemMemoExEditEditREM";
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "المخزن";
     this.gridColumn20.ColumnEdit = this.repositoryItemLookUpEditEditStoreID;
     this.gridColumn20.FieldName = "StoreID";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 4;
     this.gridColumn20.Width = 125;
     //
     // repositoryItemLookUpEditEditStoreID
     //
     this.repositoryItemLookUpEditEditStoreID.AutoHeight = false;
     this.repositoryItemLookUpEditEditStoreID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditStoreID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreID", "StoreID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreName", "اسم المخزن"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreOfficial", "السئول"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreTel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreMobil", "موبيل")});
     this.repositoryItemLookUpEditEditStoreID.Name = "repositoryItemLookUpEditEditStoreID";
     this.repositoryItemLookUpEditEditStoreID.NullText = "";
     this.repositoryItemLookUpEditEditStoreID.NullValuePrompt = "اختار المخزن";
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "نوع الدفع";
     this.gridColumn22.ColumnEdit = this.repositoryItemLookUpEditEditBillPayTypeID;
     this.gridColumn22.FieldName = "BillPayTypeID";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 3;
     this.gridColumn22.Width = 86;
     //
     // repositoryItemLookUpEditEditBillPayTypeID
     //
     this.repositoryItemLookUpEditEditBillPayTypeID.AutoHeight = false;
     this.repositoryItemLookUpEditEditBillPayTypeID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditEditBillPayTypeID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeID", "BillPayTypeID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeName", "نوع الدفع")});
     this.repositoryItemLookUpEditEditBillPayTypeID.Name = "repositoryItemLookUpEditEditBillPayTypeID";
     this.repositoryItemLookUpEditEditBillPayTypeID.NullText = "";
     this.repositoryItemLookUpEditEditBillPayTypeID.NullValuePrompt = "اختار نوع الدفع";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "حــــذف";
     this.gridColumn3.ColumnEdit = this.repositoryItemButtonEditEditBillDelete;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 61;
     //
     // repositoryItemButtonEditEditBillDelete
     //
     this.repositoryItemButtonEditEditBillDelete.AutoHeight = false;
     this.repositoryItemButtonEditEditBillDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditEditBillDelete.Name = "repositoryItemButtonEditEditBillDelete";
     this.repositoryItemButtonEditEditBillDelete.NullText = "حذف";
     this.repositoryItemButtonEditEditBillDelete.NullValuePrompt = "حذف";
     this.repositoryItemButtonEditEditBillDelete.NullValuePromptShowForEmptyValue = true;
     this.repositoryItemButtonEditEditBillDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditBillDelete.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditBillDelete_ButtonClick);
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "تعديــل";
     this.gridColumn19.ColumnEdit = this.repositoryItemButtonEditBillEdit;
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 57;
     //
     // repositoryItemButtonEditBillEdit
     //
     this.repositoryItemButtonEditBillEdit.AutoHeight = false;
     this.repositoryItemButtonEditBillEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditBillEdit.Name = "repositoryItemButtonEditBillEdit";
     this.repositoryItemButtonEditBillEdit.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditBillEdit.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditBillEdit_ButtonClick);
     //
     // xtraTabControlEditor
     //
     this.xtraTabControlEditor.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.xtraTabControlEditor.Location = new System.Drawing.Point(12, 12);
     this.xtraTabControlEditor.Name = "xtraTabControlEditor";
     this.xtraTabControlEditor.SelectedTabPage = this.xtraTabPageAdd;
     this.xtraTabControlEditor.Size = new System.Drawing.Size(768, 542);
     this.xtraTabControlEditor.TabIndex = 0;
     this.xtraTabControlEditor.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageAdd,
     this.xtraTabPageEdit});
     this.xtraTabControlEditor.SelectedPageChanging += new DevExpress.XtraTab.TabPageChangingEventHandler(this.xtraTabControlEditor_SelectedPageChanging);
     //
     // xtraTabPageAdd
     //
     this.xtraTabPageAdd.Controls.Add(this.BtnPrint);
     this.xtraTabPageAdd.Controls.Add(this.BtnSave);
     this.xtraTabPageAdd.Controls.Add(this.groupControl3);
     this.xtraTabPageAdd.Controls.Add(this.GridControlAddDetials);
     this.xtraTabPageAdd.Controls.Add(this.groupControl2);
     this.xtraTabPageAdd.Controls.Add(this.groupControl1);
     this.xtraTabPageAdd.Name = "xtraTabPageAdd";
     this.xtraTabPageAdd.Size = new System.Drawing.Size(762, 514);
     this.xtraTabPageAdd.Text = "اضافه";
     //
     // BtnPrint
     //
     this.BtnPrint.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.BtnPrint.Enabled = false;
     this.BtnPrint.Location = new System.Drawing.Point(8, 480);
     this.BtnPrint.Name = "BtnPrint";
     this.BtnPrint.Size = new System.Drawing.Size(154, 32);
     this.BtnPrint.TabIndex = 4;
     this.BtnPrint.Text = "طباعة اذن الاضافه";
     this.BtnPrint.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnSave
     //
     this.BtnSave.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.BtnSave.Enabled = false;
     this.BtnSave.Location = new System.Drawing.Point(188, 480);
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Size = new System.Drawing.Size(387, 32);
     this.BtnSave.TabIndex = 3;
     this.BtnSave.Text = "حفـــــــــــــــظ و اغــــــــلاق";
     this.BtnSave.ToolTip = "حفـــــــــــــــظ و اغــــــــلاق";
     this.BtnSave.ToolTipTitle = "حفظ الفاتوره F6";
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // groupControl3
     //
     this.groupControl3.Controls.Add(this.labelControl6);
     this.groupControl3.Controls.Add(this.LblTotal);
     this.groupControl3.Location = new System.Drawing.Point(8, 3);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(223, 198);
     this.groupControl3.TabIndex = 4;
     this.groupControl3.Text = "الاجمالي";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(133, 76);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(69, 13);
     this.labelControl6.TabIndex = 2;
     this.labelControl6.Text = "اجمالي الفاتوره";
     //
     // LblTotal
     //
     this.LblTotal.Appearance.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LblTotal.Appearance.ForeColor = System.Drawing.Color.Green;
     this.LblTotal.Location = new System.Drawing.Point(21, 90);
     this.LblTotal.Name = "LblTotal";
     this.LblTotal.Size = new System.Drawing.Size(17, 33);
     this.LblTotal.TabIndex = 3;
     this.LblTotal.Text = "0";
     //
     // GridControlAddDetials
     //
     this.GridControlAddDetials.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.GridControlAddDetials.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.First.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.GridControlAddDetials.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.GridControlAddDetials.Location = new System.Drawing.Point(3, 207);
     this.GridControlAddDetials.MainView = this.gridViewAdd;
     this.GridControlAddDetials.Name = "GridControlAddDetials";
     this.GridControlAddDetials.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditSanfID,
     this.repositoryItemTextEditQuantity,
     this.repositoryItemCalcEditPrice,
     this.repositoryItemCalcEditDiscount,
     this.repositoryItemButtonEditSort,
     this.repositoryItemButtonEditDelete});
     this.GridControlAddDetials.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.GridControlAddDetials.Size = new System.Drawing.Size(755, 268);
     this.GridControlAddDetials.TabIndex = 2;
     this.GridControlAddDetials.UseEmbeddedNavigator = true;
     this.GridControlAddDetials.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewAdd});
     this.GridControlAddDetials.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEventGrid);
     //
     // gridViewAdd
     //
     this.gridViewAdd.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnStoreTrID,
     this.gridColumnSanfID,
     this.gridColumnQuantity,
     this.gridColumnPrice,
     this.gridColumnDiscount,
     this.gridColumnSort,
     this.gridColumnDelete,
     this.gridColumnTotal});
     this.gridViewAdd.GridControl = this.GridControlAddDetials;
     this.gridViewAdd.Name = "gridViewAdd";
     this.gridViewAdd.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewAdd.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridViewAdd.RowCountChanged += new System.EventHandler(this.gridViewAdd_RowCountChanged);
     //
     // gridColumnStoreTrID
     //
     this.gridColumnStoreTrID.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnStoreTrID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnStoreTrID.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnStoreTrID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnStoreTrID.Caption = "رقم فاتورة المشتريات";
     this.gridColumnStoreTrID.FieldName = "StoreTrID";
     this.gridColumnStoreTrID.Name = "gridColumnStoreTrID";
     this.gridColumnStoreTrID.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumnSanfID
     //
     this.gridColumnSanfID.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSanfID.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSanfID.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSanfID.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSanfID.Caption = "كود الصنف";
     this.gridColumnSanfID.ColumnEdit = this.repositoryItemLookUpEditSanfID;
     this.gridColumnSanfID.FieldName = "SanfID";
     this.gridColumnSanfID.Name = "gridColumnSanfID";
     this.gridColumnSanfID.Visible = true;
     this.gridColumnSanfID.VisibleIndex = 0;
     this.gridColumnSanfID.Width = 220;
     //
     // repositoryItemLookUpEditSanfID
     //
     this.repositoryItemLookUpEditSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditSanfID.Name = "repositoryItemLookUpEditSanfID";
     this.repositoryItemLookUpEditSanfID.NullText = "";
     this.repositoryItemLookUpEditSanfID.NullValuePrompt = "اختار اسم الصنف";
     this.repositoryItemLookUpEditSanfID.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     //
     // gridColumnQuantity
     //
     this.gridColumnQuantity.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnQuantity.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnQuantity.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnQuantity.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnQuantity.Caption = "كمية الوارد";
     this.gridColumnQuantity.ColumnEdit = this.repositoryItemTextEditQuantity;
     this.gridColumnQuantity.FieldName = "Quantity";
     this.gridColumnQuantity.Name = "gridColumnQuantity";
     this.gridColumnQuantity.Visible = true;
     this.gridColumnQuantity.VisibleIndex = 1;
     this.gridColumnQuantity.Width = 112;
     //
     // repositoryItemTextEditQuantity
     //
     this.repositoryItemTextEditQuantity.AutoHeight = false;
     this.repositoryItemTextEditQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditQuantity.Name = "repositoryItemTextEditQuantity";
     this.repositoryItemTextEditQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumnPrice
     //
     this.gridColumnPrice.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnPrice.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnPrice.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnPrice.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnPrice.Caption = "سعر الشراء";
     this.gridColumnPrice.ColumnEdit = this.repositoryItemCalcEditPrice;
     this.gridColumnPrice.FieldName = "Price";
     this.gridColumnPrice.Name = "gridColumnPrice";
     this.gridColumnPrice.Visible = true;
     this.gridColumnPrice.VisibleIndex = 2;
     this.gridColumnPrice.Width = 92;
     //
     // repositoryItemCalcEditPrice
     //
     this.repositoryItemCalcEditPrice.AutoHeight = false;
     this.repositoryItemCalcEditPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditPrice.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditPrice.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditPrice.Mask.EditMask = "f2";
     this.repositoryItemCalcEditPrice.Name = "repositoryItemCalcEditPrice";
     this.repositoryItemCalcEditPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumnDiscount
     //
     this.gridColumnDiscount.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDiscount.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDiscount.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDiscount.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDiscount.Caption = "الخصم";
     this.gridColumnDiscount.ColumnEdit = this.repositoryItemCalcEditDiscount;
     this.gridColumnDiscount.FieldName = "Discount";
     this.gridColumnDiscount.Name = "gridColumnDiscount";
     this.gridColumnDiscount.OptionsColumn.TabStop = false;
     this.gridColumnDiscount.Visible = true;
     this.gridColumnDiscount.VisibleIndex = 3;
     this.gridColumnDiscount.Width = 86;
     //
     // repositoryItemCalcEditDiscount
     //
     this.repositoryItemCalcEditDiscount.AutoHeight = false;
     this.repositoryItemCalcEditDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDiscount.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDiscount.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDiscount.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDiscount.Name = "repositoryItemCalcEditDiscount";
     //
     // gridColumnSort
     //
     this.gridColumnSort.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSort.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSort.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSort.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSort.Caption = "ترتيب";
     this.gridColumnSort.ColumnEdit = this.repositoryItemButtonEditSort;
     this.gridColumnSort.FieldName = "SortNo";
     this.gridColumnSort.Name = "gridColumnSort";
     this.gridColumnSort.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumnSort.OptionsColumn.TabStop = false;
     this.gridColumnSort.Width = 80;
     //
     // repositoryItemButtonEditSort
     //
     this.repositoryItemButtonEditSort.AutoHeight = false;
     this.repositoryItemButtonEditSort.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditSort.Name = "repositoryItemButtonEditSort";
     this.repositoryItemButtonEditSort.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSort.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSort_ButtonClick);
     //
     // gridColumnDelete
     //
     this.gridColumnDelete.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnDelete.Caption = "حـــذف";
     this.gridColumnDelete.ColumnEdit = this.repositoryItemButtonEditDelete;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Width = 117;
     //
     // repositoryItemButtonEditDelete
     //
     this.repositoryItemButtonEditDelete.AutoHeight = false;
     this.repositoryItemButtonEditDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDelete.Name = "repositoryItemButtonEditDelete";
     this.repositoryItemButtonEditDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumnTotal
     //
     this.gridColumnTotal.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnTotal.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnTotal.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnTotal.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnTotal.Caption = "المجموع";
     this.gridColumnTotal.DisplayFormat.FormatString = "c2";
     this.gridColumnTotal.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnTotal.FieldName = "Total";
     this.gridColumnTotal.GroupFormat.FormatString = "c2";
     this.gridColumnTotal.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnTotal.Name = "gridColumnTotal";
     this.gridColumnTotal.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnTotal.OptionsColumn.ReadOnly = true;
     this.gridColumnTotal.OptionsColumn.TabStop = false;
     this.gridColumnTotal.Visible = true;
     this.gridColumnTotal.VisibleIndex = 4;
     this.gridColumnTotal.Width = 78;
     //
     // groupControl2
     //
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.TxtREM);
     this.groupControl2.Controls.Add(this.labelControl12);
     this.groupControl2.Controls.Add(this.TxtExtraFees);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.TxtTotalkasm);
     this.groupControl2.Controls.Add(this.labelControl8);
     this.groupControl2.Location = new System.Drawing.Point(237, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl2.Size = new System.Drawing.Size(263, 198);
     this.groupControl2.TabIndex = 1;
     this.groupControl2.Text = "مصاريف اضافيه و الخصم";
     //
     // TxtREM
     //
     this.TxtREM.Location = new System.Drawing.Point(5, 75);
     this.TxtREM.Name = "TxtREM";
     this.TxtREM.Properties.MaxLength = 100;
     this.TxtREM.Properties.NullValuePrompt = "معلومات عن الفاتوره";
     this.TxtREM.Size = new System.Drawing.Size(199, 84);
     this.TxtREM.TabIndex = 2;
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(210, 78);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(39, 13);
     this.labelControl12.TabIndex = 4;
     this.labelControl12.Text = "معلومات";
     //
     // TxtExtraFees
     //
     this.TxtExtraFees.EditValue = "0";
     this.TxtExtraFees.Location = new System.Drawing.Point(5, 49);
     this.TxtExtraFees.Name = "TxtExtraFees";
     this.TxtExtraFees.Properties.DisplayFormat.FormatString = "c2";
     this.TxtExtraFees.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtExtraFees.Properties.EditFormat.FormatString = "c2";
     this.TxtExtraFees.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtExtraFees.Properties.Mask.EditMask = "f2";
     this.TxtExtraFees.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtExtraFees.Properties.NullValuePrompt = "ادخل قيمة المصارف الاضافيه";
     this.TxtExtraFees.Size = new System.Drawing.Size(150, 20);
     this.TxtExtraFees.TabIndex = 1;
     this.TxtExtraFees.EditValueChanged += new System.EventHandler(this.TxtExtraPayValue_EditValueChanged);
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(181, 52);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(68, 13);
     this.labelControl5.TabIndex = 0;
     this.labelControl5.Text = "مصاريف اضافيه";
     //
     // TxtTotalkasm
     //
     this.TxtTotalkasm.EditValue = "0";
     this.TxtTotalkasm.Location = new System.Drawing.Point(5, 24);
     this.TxtTotalkasm.Name = "TxtTotalkasm";
     this.TxtTotalkasm.Properties.DisplayFormat.FormatString = "c2";
     this.TxtTotalkasm.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtTotalkasm.Properties.EditFormat.FormatString = "c2";
     this.TxtTotalkasm.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.TxtTotalkasm.Properties.Mask.EditMask = "f2";
     this.TxtTotalkasm.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtTotalkasm.Properties.NullValuePrompt = "ادخل قيمة الخصم الكلي";
     this.TxtTotalkasm.Size = new System.Drawing.Size(150, 20);
     this.TxtTotalkasm.TabIndex = 0;
     this.TxtTotalkasm.EditValueChanged += new System.EventHandler(this.TxtDiscount_EditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(202, 27);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(47, 13);
     this.labelControl8.TabIndex = 0;
     this.labelControl8.Text = "خصم كلي";
     //
     // groupControl1
     //
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.LUEStoreID);
     this.groupControl1.Controls.Add(this.LUEBillPayType);
     this.groupControl1.Controls.Add(this.LUEEMPID);
     this.groupControl1.Controls.Add(this.LUEPERSONID);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.DEStoreTrDate);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.TxtStoreTrIDDAY);
     this.groupControl1.Controls.Add(this.TxtStoreTrIDTYPE);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.labelControl9);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Location = new System.Drawing.Point(506, 3);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.groupControl1.Size = new System.Drawing.Size(252, 198);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "بيانات عامــه";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(206, 178);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(41, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "نوع الدفع";
     //
     // LUEStoreID
     //
     this.LUEStoreID.Location = new System.Drawing.Point(5, 150);
     this.LUEStoreID.Name = "LUEStoreID";
     this.LUEStoreID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEStoreID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreName", "اسم المخزن"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StorePlace", "عنوان"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreTel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("StoreMobil", "موبيل")});
     this.LUEStoreID.Properties.NullText = "";
     this.LUEStoreID.Properties.NullValuePrompt = "اختار اسم المخزن";
     this.LUEStoreID.Size = new System.Drawing.Size(150, 20);
     this.LUEStoreID.TabIndex = 3;
     //
     // LUEBillPayType
     //
     this.LUEBillPayType.Location = new System.Drawing.Point(5, 175);
     this.LUEBillPayType.Name = "LUEBillPayType";
     this.LUEBillPayType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEBillPayType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BillPayTypeName", "اسم نوع الدفع")});
     this.LUEBillPayType.Properties.NullText = "";
     this.LUEBillPayType.Properties.NullValuePrompt = "اختار نوع الدفع";
     this.LUEBillPayType.Size = new System.Drawing.Size(150, 20);
     this.LUEBillPayType.TabIndex = 4;
     //
     // LUEEMPID
     //
     this.LUEEMPID.Location = new System.Drawing.Point(5, 125);
     this.LUEEMPID.Name = "LUEEMPID";
     this.LUEEMPID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEEMPID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPNAME", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPPHONE", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("EMPMOBIL", "موبيل")});
     this.LUEEMPID.Properties.NullText = "";
     this.LUEEMPID.Properties.NullValuePrompt = "اختار اسم المستــلم";
     this.LUEEMPID.Size = new System.Drawing.Size(150, 20);
     this.LUEEMPID.TabIndex = 2;
     //
     // LUEPERSONID
     //
     this.LUEPERSONID.Location = new System.Drawing.Point(5, 100);
     this.LUEPERSONID.Name = "LUEPERSONID";
     this.LUEPERSONID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEPERSONID.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("PERSON", "اسم المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Addess", "عنوان المورد"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Tel", "تليفون"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Mobil", "محمول")});
     this.LUEPERSONID.Properties.NullText = "";
     this.LUEPERSONID.Properties.NullValuePrompt = "اختار اسم المورد";
     this.LUEPERSONID.Size = new System.Drawing.Size(150, 20);
     this.LUEPERSONID.TabIndex = 1;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(215, 153);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(32, 13);
     this.labelControl11.TabIndex = 0;
     this.labelControl11.Text = "المخزن";
     //
     // DEStoreTrDate
     //
     this.DEStoreTrDate.EditValue = null;
     this.DEStoreTrDate.Location = new System.Drawing.Point(5, 75);
     this.DEStoreTrDate.Name = "DEStoreTrDate";
     this.DEStoreTrDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DEStoreTrDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DEStoreTrDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.DEStoreTrDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.DEStoreTrDate.Properties.NullValuePrompt = "ادخل تاريخ الفاتوره";
     this.DEStoreTrDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DEStoreTrDate.Size = new System.Drawing.Size(150, 20);
     this.DEStoreTrDate.TabIndex = 0;
     this.DEStoreTrDate.EditValueChanged += new System.EventHandler(this.DEStoreTrDate_EditValueChanged);
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(185, 128);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(62, 13);
     this.labelControl4.TabIndex = 0;
     this.labelControl4.Text = "المستـــــــلم";
     //
     // TxtStoreTrIDDAY
     //
     this.TxtStoreTrIDDAY.Location = new System.Drawing.Point(5, 49);
     this.TxtStoreTrIDDAY.Name = "TxtStoreTrIDDAY";
     this.TxtStoreTrIDDAY.Properties.ReadOnly = true;
     this.TxtStoreTrIDDAY.Size = new System.Drawing.Size(150, 20);
     this.TxtStoreTrIDDAY.TabIndex = 0;
     this.TxtStoreTrIDDAY.TabStop = false;
     //
     // TxtStoreTrIDTYPE
     //
     this.TxtStoreTrIDTYPE.Location = new System.Drawing.Point(5, 24);
     this.TxtStoreTrIDTYPE.Name = "TxtStoreTrIDTYPE";
     this.TxtStoreTrIDTYPE.Properties.ReadOnly = true;
     this.TxtStoreTrIDTYPE.Size = new System.Drawing.Size(150, 20);
     this.TxtStoreTrIDTYPE.TabIndex = 0;
     this.TxtStoreTrIDTYPE.TabStop = false;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(195, 103);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(52, 13);
     this.labelControl3.TabIndex = 0;
     this.labelControl3.Text = "اسم المورد";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(160, 52);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(87, 13);
     this.labelControl9.TabIndex = 0;
     this.labelControl9.Text = "رقم الفاتوره اليومي";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(195, 78);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 13);
     this.labelControl2.TabIndex = 0;
     this.labelControl2.Text = "تارخ الفاتوره";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(195, 27);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "رقم الفاتوره";
     //
     // xtraTabPageEdit
     //
     this.xtraTabPageEdit.Controls.Add(this.groupControl4);
     this.xtraTabPageEdit.Name = "xtraTabPageEdit";
     this.xtraTabPageEdit.Size = new System.Drawing.Size(762, 514);
     this.xtraTabPageEdit.Text = "تعديــل";
     //
     // groupControl4
     //
     this.groupControl4.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.groupControl4.Controls.Add(this.gridControlEditorDetial);
     this.groupControl4.Controls.Add(this.gridControlEditor);
     this.groupControl4.Location = new System.Drawing.Point(3, 3);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(755, 506);
     this.groupControl4.TabIndex = 4;
     this.groupControl4.Text = "جميع تفاصيل الفاتوره";
     //
     // gridControlEditorDetial
     //
     this.gridControlEditorDetial.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.gridControlEditorDetial.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlEditorDetial.EmbeddedNavigator.CustomButtons.AddRange(new DevExpress.XtraEditors.NavigatorCustomButton[] {
     new DevExpress.XtraEditors.NavigatorCustomButton()});
     this.gridControlEditorDetial.Location = new System.Drawing.Point(2, 262);
     this.gridControlEditorDetial.MainView = this.gridViewEditDetial;
     this.gridControlEditorDetial.Name = "gridControlEditorDetial";
     this.gridControlEditorDetial.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEditDetialSanfID,
     this.repositoryItemTextEditDetailQuantity,
     this.repositoryItemCalcEditDetialPrice,
     this.repositoryItemCalcEditDetialDiscount,
     this.repositoryItemButtonEditDetialSortNo,
     this.repositoryItemButtonEditEditDetialDelete,
     this.repositoryItemButtonEditDetialUpdate});
     this.gridControlEditorDetial.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.gridControlEditorDetial.Size = new System.Drawing.Size(751, 242);
     this.gridControlEditorDetial.TabIndex = 11;
     this.gridControlEditorDetial.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewEditDetial});
     //
     // gridViewEditDetial
     //
     this.gridViewEditDetial.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumnEditDetialSanfID,
     this.gridColumn23,
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27,
     this.gridColumn28,
     this.gridColumn29,
     this.gridColumn30});
     this.gridViewEditDetial.GridControl = this.gridControlEditorDetial;
     this.gridViewEditDetial.Name = "gridViewEditDetial";
     this.gridViewEditDetial.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.True;
     this.gridViewEditDetial.OptionsView.ColumnAutoWidth = false;
     this.gridViewEditDetial.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewEditDetial_CellValueChanging);
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "رقم فاتورة المشتريات";
     this.gridColumn15.FieldName = "StoreTrID";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
     //
     // gridColumnEditDetialSanfID
     //
     this.gridColumnEditDetialSanfID.Caption = "كود الصنف";
     this.gridColumnEditDetialSanfID.ColumnEdit = this.repositoryItemLookUpEditDetialSanfID;
     this.gridColumnEditDetialSanfID.FieldName = "SanfID";
     this.gridColumnEditDetialSanfID.Name = "gridColumnEditDetialSanfID";
     this.gridColumnEditDetialSanfID.Visible = true;
     this.gridColumnEditDetialSanfID.VisibleIndex = 6;
     this.gridColumnEditDetialSanfID.Width = 207;
     //
     // repositoryItemLookUpEditDetialSanfID
     //
     this.repositoryItemLookUpEditDetialSanfID.AutoHeight = false;
     this.repositoryItemLookUpEditDetialSanfID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditDetialSanfID.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SanfName", "اسم الصنــف"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SalesUnitName", "نوع وحدة البيع")});
     this.repositoryItemLookUpEditDetialSanfID.Name = "repositoryItemLookUpEditDetialSanfID";
     this.repositoryItemLookUpEditDetialSanfID.NullText = "";
     this.repositoryItemLookUpEditDetialSanfID.NullValuePrompt = "اختار اسم الصنف";
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "كمية الوارد";
     this.gridColumn23.ColumnEdit = this.repositoryItemTextEditDetailQuantity;
     this.gridColumn23.FieldName = "Quantity";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 5;
     this.gridColumn23.Width = 110;
     //
     // repositoryItemTextEditDetailQuantity
     //
     this.repositoryItemTextEditDetailQuantity.AutoHeight = false;
     this.repositoryItemTextEditDetailQuantity.DisplayFormat.FormatString = "d";
     this.repositoryItemTextEditDetailQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditDetailQuantity.EditFormat.FormatString = "d";
     this.repositoryItemTextEditDetailQuantity.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditDetailQuantity.Mask.EditMask = "d";
     this.repositoryItemTextEditDetailQuantity.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditDetailQuantity.Name = "repositoryItemTextEditDetailQuantity";
     this.repositoryItemTextEditDetailQuantity.NullValuePrompt = "ادخل الكميه";
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "سعر الشراء";
     this.gridColumn25.ColumnEdit = this.repositoryItemCalcEditDetialPrice;
     this.gridColumn25.FieldName = "Price";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 4;
     this.gridColumn25.Width = 110;
     //
     // repositoryItemCalcEditDetialPrice
     //
     this.repositoryItemCalcEditDetialPrice.AutoHeight = false;
     this.repositoryItemCalcEditDetialPrice.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDetialPrice.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialPrice.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialPrice.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialPrice.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDetialPrice.Name = "repositoryItemCalcEditDetialPrice";
     this.repositoryItemCalcEditDetialPrice.NullValuePrompt = "سعر الوحده";
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "الخصم";
     this.gridColumn26.ColumnEdit = this.repositoryItemCalcEditDetialDiscount;
     this.gridColumn26.FieldName = "Discount";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 3;
     this.gridColumn26.Width = 110;
     //
     // repositoryItemCalcEditDetialDiscount
     //
     this.repositoryItemCalcEditDetialDiscount.AutoHeight = false;
     this.repositoryItemCalcEditDetialDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditDetialDiscount.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialDiscount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialDiscount.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditDetialDiscount.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditDetialDiscount.Mask.EditMask = "f2";
     this.repositoryItemCalcEditDetialDiscount.Name = "repositoryItemCalcEditDetialDiscount";
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "ترتيب";
     this.gridColumn27.ColumnEdit = this.repositoryItemButtonEditDetialSortNo;
     this.gridColumn27.FieldName = "SortNo";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn27.Width = 105;
     //
     // repositoryItemButtonEditDetialSortNo
     //
     this.repositoryItemButtonEditDetialSortNo.AutoHeight = false;
     this.repositoryItemButtonEditDetialSortNo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Up),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Down)});
     this.repositoryItemButtonEditDetialSortNo.Name = "repositoryItemButtonEditDetialSortNo";
     this.repositoryItemButtonEditDetialSortNo.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "حـــذف";
     this.gridColumn28.ColumnEdit = this.repositoryItemButtonEditEditDetialDelete;
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 0;
     this.gridColumn28.Width = 41;
     //
     // repositoryItemButtonEditEditDetialDelete
     //
     this.repositoryItemButtonEditEditDetialDelete.AutoHeight = false;
     this.repositoryItemButtonEditEditDetialDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditEditDetialDelete.Name = "repositoryItemButtonEditEditDetialDelete";
     this.repositoryItemButtonEditEditDetialDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditEditDetialDelete.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditEditDetialDelete_ButtonClick);
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "المجموع";
     this.gridColumn29.DisplayFormat.FormatString = "c2";
     this.gridColumn29.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn29.FieldName = "Total";
     this.gridColumn29.GroupFormat.FormatString = "c2";
     this.gridColumn29.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.ReadOnly = true;
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 2;
     this.gridColumn29.Width = 78;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "حفظ تعديل";
     this.gridColumn30.ColumnEdit = this.repositoryItemButtonEditDetialUpdate;
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 1;
     this.gridColumn30.Width = 59;
     //
     // repositoryItemButtonEditDetialUpdate
     //
     this.repositoryItemButtonEditDetialUpdate.AutoHeight = false;
     this.repositoryItemButtonEditDetialUpdate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditDetialUpdate.Name = "repositoryItemButtonEditDetialUpdate";
     this.repositoryItemButtonEditDetialUpdate.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDetialUpdate.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDetialUpdate_ButtonClick);
     //
     // DataBillFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(792, 566);
     this.Controls.Add(this.xtraTabControlEditor);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "DataBillFrm";
     this.Text = "فاتورة مشتريات";
     this.Load += new System.EventHandler(this.DataBillFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditSalesUnitID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditEditDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditSortNo1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mastergridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditEditStoreTrDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditPERSONID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditEMPID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditTotalkasm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditEditExtraFees)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditEditREM)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditStoreID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditEditBillPayTypeID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditBillDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditBillEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlEditor)).EndInit();
     this.xtraTabControlEditor.ResumeLayout(false);
     this.xtraTabPageAdd.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.groupControl3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlAddDetials)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSort)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TxtREM.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtExtraFees.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtTotalkasm.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEStoreID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEBillPayType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEEMPID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEPERSONID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DEStoreTrDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDDAY.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStoreTrIDTYPE.Properties)).EndInit();
     this.xtraTabPageEdit.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlEditorDetial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewEditDetial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDetialSanfID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditDetailQuantity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialPrice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditDetialDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialSortNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditEditDetialDelete)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDetialUpdate)).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.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.lkpEdtLeaveType     = new DevExpress.XtraEditors.LookUpEdit();
     this.dtEdtLeaveStartDate = new DevExpress.XtraEditors.DateEdit();
     this.dtEdtLeaveEndDate   = new DevExpress.XtraEditors.DateEdit();
     this.dtEdtNewExpiry      = new DevExpress.XtraEditors.DateEdit();
     this.lblnewPackageExt    = new System.Windows.Forms.Label();
     this.simpleButtonCancel  = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK      = new DevExpress.XtraEditors.SimpleButton();
     this.txtOther            = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtLeaveType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveStartDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveStartDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveEndDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveEndDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtNewExpiry.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtNewExpiry.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 130);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Leave Type";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10, 32);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 23);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Leave Start Date";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 64);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(100, 23);
     this.label3.TabIndex = 2;
     this.label3.Text     = "Leave End Date";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(10, 96);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(100, 23);
     this.label4.TabIndex = 3;
     this.label4.Text     = "Old Expiry Date";
     this.label4.Visible  = false;
     //
     // lkpEdtLeaveType
     //
     this.lkpEdtLeaveType.EditValue = "";
     this.lkpEdtLeaveType.Location  = new System.Drawing.Point(116, 132);
     this.lkpEdtLeaveType.Name      = "lkpEdtLeaveType";
     this.lkpEdtLeaveType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtLeaveType.Size              = new System.Drawing.Size(216, 20);
     this.lkpEdtLeaveType.TabIndex          = 0;
     this.lkpEdtLeaveType.EditValueChanged += new System.EventHandler(this.lkpEdtLeaveType_EditValueChanged);
     //
     // dtEdtLeaveStartDate
     //
     this.dtEdtLeaveStartDate.EditValue = new System.DateTime(2005, 11, 15, 0, 0, 0, 0);
     this.dtEdtLeaveStartDate.Location  = new System.Drawing.Point(118, 32);
     this.dtEdtLeaveStartDate.Name      = "dtEdtLeaveStartDate";
     this.dtEdtLeaveStartDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtEdtLeaveStartDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtLeaveStartDate.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtLeaveStartDate.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.dtEdtLeaveStartDate.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtLeaveStartDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.dtEdtLeaveStartDate.Size     = new System.Drawing.Size(172, 20);
     this.dtEdtLeaveStartDate.TabIndex = 1;
     //
     // dtEdtLeaveEndDate
     //
     this.dtEdtLeaveEndDate.EditValue = new System.DateTime(2005, 11, 15, 0, 0, 0, 0);
     this.dtEdtLeaveEndDate.Location  = new System.Drawing.Point(118, 64);
     this.dtEdtLeaveEndDate.Name      = "dtEdtLeaveEndDate";
     this.dtEdtLeaveEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtEdtLeaveEndDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtLeaveEndDate.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtLeaveEndDate.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.dtEdtLeaveEndDate.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtLeaveEndDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.dtEdtLeaveEndDate.Size     = new System.Drawing.Size(172, 20);
     this.dtEdtLeaveEndDate.TabIndex = 2;
     //
     // dtEdtNewExpiry
     //
     this.dtEdtNewExpiry.EditValue = new System.DateTime(2005, 11, 15, 0, 0, 0, 0);
     this.dtEdtNewExpiry.Enabled   = false;
     this.dtEdtNewExpiry.Location  = new System.Drawing.Point(118, 96);
     this.dtEdtNewExpiry.Name      = "dtEdtNewExpiry";
     this.dtEdtNewExpiry.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtEdtNewExpiry.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtNewExpiry.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtNewExpiry.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.dtEdtNewExpiry.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtNewExpiry.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.dtEdtNewExpiry.Size     = new System.Drawing.Size(172, 20);
     this.dtEdtNewExpiry.TabIndex = 3;
     this.dtEdtNewExpiry.Visible  = false;
     //
     // lblnewPackageExt
     //
     this.lblnewPackageExt.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblnewPackageExt.Location = new System.Drawing.Point(10, 4);
     this.lblnewPackageExt.Name     = "lblnewPackageExt";
     this.lblnewPackageExt.Size     = new System.Drawing.Size(384, 20);
     this.lblnewPackageExt.TabIndex = 49;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(214, 232);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.Size         = new System.Drawing.Size(75, 23);
     this.simpleButtonCancel.TabIndex     = 6;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(134, 232);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.Size         = new System.Drawing.Size(75, 23);
     this.simpleButtonOK.TabIndex     = 5;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // txtOther
     //
     this.txtOther.Enabled   = false;
     this.txtOther.Location  = new System.Drawing.Point(118, 164);
     this.txtOther.Multiline = true;
     this.txtOther.Name      = "txtOther";
     this.txtOther.Size      = new System.Drawing.Size(212, 56);
     this.txtOther.TabIndex  = 50;
     //
     // FormNewMemberPackageExtension
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(398, 272);
     this.Controls.Add(this.txtOther);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.Controls.Add(this.lblnewPackageExt);
     this.Controls.Add(this.dtEdtNewExpiry);
     this.Controls.Add(this.dtEdtLeaveEndDate);
     this.Controls.Add(this.dtEdtLeaveStartDate);
     this.Controls.Add(this.lkpEdtLeaveType);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormNewMemberPackageExtension";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Member Package Extension";
     this.Load           += new System.EventHandler(this.FormNewMemberPackageExtension_Load);
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtLeaveType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveStartDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveStartDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveEndDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveEndDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtNewExpiry.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtNewExpiry.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 45
0
        private static void txtSpin_KeyDown(object sender, KeyEventArgs e)
        {
            switch (e.KeyCode)
            {
            case Keys.Up:
                if (sender is DevExpress.XtraEditors.ComboBoxEdit)
                {
                    DevExpress.XtraEditors.ComboBoxEdit oSender = sender as DevExpress.XtraEditors.ComboBoxEdit;
                    if (oSender != null && oSender.IsPopupOpen == false)
                    {
                        System.Windows.Forms.SendKeys.Send("+{TAB}");
                        e.Handled = true;
                    }
                }
                else if (sender is DevExpress.XtraEditors.DateEdit)
                {
                    DevExpress.XtraEditors.DateEdit oSender = sender as DevExpress.XtraEditors.DateEdit;
                    if (oSender != null && oSender.IsPopupOpen == false)
                    {
                        System.Windows.Forms.SendKeys.Send("+{TAB}");
                        e.Handled = true;
                    }
                }
                else
                {
                    System.Windows.Forms.SendKeys.Send("+{TAB}");
                    e.Handled = true;
                }
                break;

            case Keys.Down:
                if (sender is DevExpress.XtraEditors.ComboBoxEdit)
                {
                    DevExpress.XtraEditors.ComboBoxEdit oSender = sender as DevExpress.XtraEditors.ComboBoxEdit;
                    if (oSender != null && oSender.IsPopupOpen == false)
                    {
                        System.Windows.Forms.SendKeys.Send("{TAB}");
                        e.Handled = true;
                    }
                }
                else if (sender is DevExpress.XtraEditors.DateEdit)
                {
                    DevExpress.XtraEditors.DateEdit oSender = sender as DevExpress.XtraEditors.DateEdit;
                    if (oSender != null && oSender.IsPopupOpen == false)
                    {
                        System.Windows.Forms.SendKeys.Send("{TAB}");
                        e.Handled = true;
                    }
                }
                else
                {
                    System.Windows.Forms.SendKeys.Send("{TAB}");
                    e.Handled = true;
                }
                break;

            case Keys.Delete:
                if (sender is DevExpress.XtraEditors.DateEdit)
                {
                    DevExpress.XtraEditors.DateEdit oSender = sender as DevExpress.XtraEditors.DateEdit;
                    if (oSender != null && oSender.Properties.AllowNullInput == DevExpress.Utils.DefaultBoolean.True)
                    {
                        oSender.EditValue = null;
                        e.Handled         = true;
                    }
                }
                break;
            }

            //if (e.KeyCode == Keys.Up || e.KeyCode == Keys.Down)
            //{
            //    switch (e.KeyCode)
            //    {
            //        case Keys.Up:
            //            System.Windows.Forms.SendKeys.Send("+{TAB}");
            //            break;
            //        case Keys.Down:
            //            System.Windows.Forms.SendKeys.Send("{TAB}");
            //            break;
            //    }
            //    e.Handled = true;
            //}
        }
 private void InitializeComponent()
 {
     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.lkpEdtLeaveType = new DevExpress.XtraEditors.LookUpEdit();
     this.dtEdtLeaveStartDate = new DevExpress.XtraEditors.DateEdit();
     this.dtEdtLeaveEndDate = new DevExpress.XtraEditors.DateEdit();
     this.dtEdtNewExpiry = new DevExpress.XtraEditors.DateEdit();
     this.lblnewPackageExt = new System.Windows.Forms.Label();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     this.txtOther = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtLeaveType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveStartDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveStartDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveEndDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveEndDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtNewExpiry.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtNewExpiry.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 130);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(100, 23);
     this.label1.TabIndex = 0;
     this.label1.Text = "Leave Type";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(10, 32);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 23);
     this.label2.TabIndex = 1;
     this.label2.Text = "Leave Start Date";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 64);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(100, 23);
     this.label3.TabIndex = 2;
     this.label3.Text = "Leave End Date";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(10, 96);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(100, 23);
     this.label4.TabIndex = 3;
     this.label4.Text = "Old Expiry Date";
     this.label4.Visible = false;
     //
     // lkpEdtLeaveType
     //
     this.lkpEdtLeaveType.EditValue = "";
     this.lkpEdtLeaveType.Location = new System.Drawing.Point(116, 132);
     this.lkpEdtLeaveType.Name = "lkpEdtLeaveType";
     this.lkpEdtLeaveType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtLeaveType.Size = new System.Drawing.Size(216, 20);
     this.lkpEdtLeaveType.TabIndex = 0;
     this.lkpEdtLeaveType.EditValueChanged += new System.EventHandler(this.lkpEdtLeaveType_EditValueChanged);
     //
     // dtEdtLeaveStartDate
     //
     this.dtEdtLeaveStartDate.EditValue = new System.DateTime(2005, 11, 15, 0, 0, 0, 0);
     this.dtEdtLeaveStartDate.Location = new System.Drawing.Point(118, 32);
     this.dtEdtLeaveStartDate.Name = "dtEdtLeaveStartDate";
     this.dtEdtLeaveStartDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtEdtLeaveStartDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtLeaveStartDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtLeaveStartDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtLeaveStartDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtLeaveStartDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtEdtLeaveStartDate.Size = new System.Drawing.Size(172, 20);
     this.dtEdtLeaveStartDate.TabIndex = 1;
     //
     // dtEdtLeaveEndDate
     //
     this.dtEdtLeaveEndDate.EditValue = new System.DateTime(2005, 11, 15, 0, 0, 0, 0);
     this.dtEdtLeaveEndDate.Location = new System.Drawing.Point(118, 64);
     this.dtEdtLeaveEndDate.Name = "dtEdtLeaveEndDate";
     this.dtEdtLeaveEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtEdtLeaveEndDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtLeaveEndDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtLeaveEndDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtLeaveEndDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtLeaveEndDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtEdtLeaveEndDate.Size = new System.Drawing.Size(172, 20);
     this.dtEdtLeaveEndDate.TabIndex = 2;
     //
     // dtEdtNewExpiry
     //
     this.dtEdtNewExpiry.EditValue = new System.DateTime(2005, 11, 15, 0, 0, 0, 0);
     this.dtEdtNewExpiry.Enabled = false;
     this.dtEdtNewExpiry.Location = new System.Drawing.Point(118, 96);
     this.dtEdtNewExpiry.Name = "dtEdtNewExpiry";
     this.dtEdtNewExpiry.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtEdtNewExpiry.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtNewExpiry.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtNewExpiry.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtEdtNewExpiry.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtNewExpiry.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
             new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtEdtNewExpiry.Size = new System.Drawing.Size(172, 20);
     this.dtEdtNewExpiry.TabIndex = 3;
     this.dtEdtNewExpiry.Visible = false;
     //
     // lblnewPackageExt
     //
     this.lblnewPackageExt.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.lblnewPackageExt.Location = new System.Drawing.Point(10, 4);
     this.lblnewPackageExt.Name = "lblnewPackageExt";
     this.lblnewPackageExt.Size = new System.Drawing.Size(384, 20);
     this.lblnewPackageExt.TabIndex = 49;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(214, 232);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonCancel.TabIndex = 6;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(134, 232);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonOK.TabIndex = 5;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // txtOther
     //
     this.txtOther.Enabled = false;
     this.txtOther.Location = new System.Drawing.Point(118, 164);
     this.txtOther.Multiline = true;
     this.txtOther.Name = "txtOther";
     this.txtOther.Size = new System.Drawing.Size(212, 56);
     this.txtOther.TabIndex = 50;
     //
     // FormNewMemberPackageExtension
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(398, 272);
     this.Controls.Add(this.txtOther);
     this.Controls.Add(this.simpleButtonCancel);
     this.Controls.Add(this.simpleButtonOK);
     this.Controls.Add(this.lblnewPackageExt);
     this.Controls.Add(this.dtEdtNewExpiry);
     this.Controls.Add(this.dtEdtLeaveEndDate);
     this.Controls.Add(this.dtEdtLeaveStartDate);
     this.Controls.Add(this.lkpEdtLeaveType);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormNewMemberCreditPackageExtension";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Member Credit Package Extension";
     this.Load += new System.EventHandler(this.FormNewMemberCreditPackageExtension_Load);
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtLeaveType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveStartDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveStartDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveEndDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtLeaveEndDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtNewExpiry.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtNewExpiry.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 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.label1        = new System.Windows.Forms.Label();
     this.btnSave       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.ReceivedDate  = new DevExpress.XtraEditors.DateEdit();
     ((System.ComponentModel.ISupportInitialize)(this.ReceivedDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(24, 16);
     this.label1.Name     = "label1";
     this.label1.TabIndex = 31;
     this.label1.Text     = "Date Received";
     //
     // btnSave
     //
     this.btnSave.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSave.Location    = new System.Drawing.Point(80, 56);
     this.btnSave.Name        = "btnSave";
     this.btnSave.Size        = new System.Drawing.Size(62, 20);
     this.btnSave.TabIndex    = 32;
     this.btnSave.Text        = "Save";
     this.btnSave.Click      += new System.EventHandler(this.btnSave_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton1.Location    = new System.Drawing.Point(152, 56);
     this.simpleButton1.Name        = "simpleButton1";
     this.simpleButton1.Size        = new System.Drawing.Size(62, 20);
     this.simpleButton1.TabIndex    = 33;
     this.simpleButton1.Text        = "Close";
     this.simpleButton1.Click      += new System.EventHandler(this.simpleButton1_Click);
     //
     // ReceivedDate
     //
     this.ReceivedDate.EditValue = new System.DateTime(2006, 5, 5, 0, 0, 0, 0);
     this.ReceivedDate.Location  = new System.Drawing.Point(136, 16);
     this.ReceivedDate.Name      = "ReceivedDate";
     //
     // ReceivedDate.Properties
     //
     this.ReceivedDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.ReceivedDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.ReceivedDate.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.ReceivedDate.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ReceivedDate.Size     = new System.Drawing.Size(144, 22);
     this.ReceivedDate.TabIndex = 30;
     //
     // frmIPP_Received
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(320, 93);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.ReceivedDate);
     this.Name  = "frmIPP_Received";
     this.Text  = "IPP Received";
     this.Load += new System.EventHandler(this.frmIPP_Received_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ReceivedDate.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 48
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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DivStreamForm));
     this.gridDivs            = new DevExpress.XtraGrid.GridControl();
     this.gridDividends       = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDivDate          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDivAmount        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.defaultLookAndFeel1 = new DevExpress.LookAndFeel.DefaultLookAndFeel(this.components);
     this.label1        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.label3        = new System.Windows.Forms.Label();
     this.OK            = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel     = new DevExpress.XtraEditors.SimpleButton();
     this.tbAmount      = new DevExpress.XtraEditors.CalcEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.tbDateStep    = new DevExpress.XtraEditors.TextEdit();
     this.dtDate        = new DevExpress.XtraEditors.DateEdit();
     this.btnAdd        = new DevExpress.XtraEditors.SimpleButton();
     this.btnRemove     = new DevExpress.XtraEditors.SimpleButton();
     this.btnRemoveAll  = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridDivs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDividends)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbDateStep.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridDivs
     //
     this.gridDivs.EmbeddedNavigator.Name = "";
     this.gridDivs.Location = new System.Drawing.Point(8, 121);
     this.gridDivs.MainView = this.gridDividends;
     this.gridDivs.Name     = "gridDivs";
     this.gridDivs.Size     = new System.Drawing.Size(256, 343);
     this.gridDivs.TabIndex = 5;
     this.gridDivs.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridDividends
     });
     //
     // gridDividends
     //
     this.gridDividends.Appearance.ColumnFilterButton.BackColor                    = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.ColumnFilterButton.BorderColor                  = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.ColumnFilterButton.ForeColor                    = System.Drawing.Color.DimGray;
     this.gridDividends.Appearance.ColumnFilterButton.Options.UseBackColor         = true;
     this.gridDividends.Appearance.ColumnFilterButton.Options.UseBorderColor       = true;
     this.gridDividends.Appearance.ColumnFilterButton.Options.UseForeColor         = true;
     this.gridDividends.Appearance.ColumnFilterButtonActive.BackColor              = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.ColumnFilterButtonActive.BorderColor            = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.ColumnFilterButtonActive.ForeColor              = System.Drawing.Color.Gainsboro;
     this.gridDividends.Appearance.ColumnFilterButtonActive.Options.UseBackColor   = true;
     this.gridDividends.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridDividends.Appearance.ColumnFilterButtonActive.Options.UseForeColor   = true;
     this.gridDividends.Appearance.Empty.BackColor                          = System.Drawing.Color.White;
     this.gridDividends.Appearance.Empty.BackColor2                         = System.Drawing.Color.WhiteSmoke;
     this.gridDividends.Appearance.Empty.GradientMode                       = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridDividends.Appearance.Empty.Options.UseBackColor               = true;
     this.gridDividends.Appearance.EvenRow.BackColor                        = System.Drawing.Color.White;
     this.gridDividends.Appearance.EvenRow.Options.UseBackColor             = true;
     this.gridDividends.Appearance.FilterCloseButton.BackColor              = System.Drawing.Color.Gray;
     this.gridDividends.Appearance.FilterCloseButton.BorderColor            = System.Drawing.Color.Gray;
     this.gridDividends.Appearance.FilterCloseButton.Options.UseBackColor   = true;
     this.gridDividends.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridDividends.Appearance.FilterPanel.BackColor                    = System.Drawing.Color.Gray;
     this.gridDividends.Appearance.FilterPanel.ForeColor                    = System.Drawing.Color.Black;
     this.gridDividends.Appearance.FilterPanel.Options.UseBackColor         = true;
     this.gridDividends.Appearance.FilterPanel.Options.UseForeColor         = true;
     this.gridDividends.Appearance.FocusedRow.BackColor                     = System.Drawing.Color.Black;
     this.gridDividends.Appearance.FocusedRow.ForeColor                     = System.Drawing.Color.White;
     this.gridDividends.Appearance.FocusedRow.Options.UseBackColor          = true;
     this.gridDividends.Appearance.FocusedRow.Options.UseForeColor          = true;
     this.gridDividends.Appearance.FooterPanel.BackColor                    = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.FooterPanel.BorderColor                  = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.FooterPanel.Options.UseBackColor         = true;
     this.gridDividends.Appearance.FooterPanel.Options.UseBorderColor       = true;
     this.gridDividends.Appearance.GroupButton.BackColor                    = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupButton.BorderColor                  = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupButton.Options.UseBackColor         = true;
     this.gridDividends.Appearance.GroupButton.Options.UseBorderColor       = true;
     this.gridDividends.Appearance.GroupFooter.BackColor                    = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupFooter.BorderColor                  = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupFooter.Options.UseBackColor         = true;
     this.gridDividends.Appearance.GroupFooter.Options.UseBorderColor       = true;
     this.gridDividends.Appearance.GroupPanel.BackColor                     = System.Drawing.Color.WhiteSmoke;
     this.gridDividends.Appearance.GroupPanel.ForeColor                     = System.Drawing.Color.White;
     this.gridDividends.Appearance.GroupPanel.Options.UseBackColor          = true;
     this.gridDividends.Appearance.GroupPanel.Options.UseForeColor          = true;
     this.gridDividends.Appearance.GroupRow.BackColor                       = System.Drawing.Color.Silver;
     this.gridDividends.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridDividends.Appearance.GroupRow.Options.UseBackColor         = true;
     this.gridDividends.Appearance.GroupRow.Options.UseFont              = true;
     this.gridDividends.Appearance.HeaderPanel.BackColor                 = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.HeaderPanel.BorderColor               = System.Drawing.Color.DarkGray;
     this.gridDividends.Appearance.HeaderPanel.Options.UseBackColor      = true;
     this.gridDividends.Appearance.HeaderPanel.Options.UseBorderColor    = true;
     this.gridDividends.Appearance.HideSelectionRow.BackColor            = System.Drawing.Color.LightSlateGray;
     this.gridDividends.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridDividends.Appearance.HorzLine.BackColor            = System.Drawing.Color.LightGray;
     this.gridDividends.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridDividends.Appearance.OddRow.BackColor             = System.Drawing.Color.WhiteSmoke;
     this.gridDividends.Appearance.OddRow.Options.UseBackColor  = true;
     this.gridDividends.Appearance.Preview.BackColor            = System.Drawing.Color.Gainsboro;
     this.gridDividends.Appearance.Preview.ForeColor            = System.Drawing.Color.DimGray;
     this.gridDividends.Appearance.Preview.Options.UseBackColor = true;
     this.gridDividends.Appearance.Preview.Options.UseForeColor = true;
     this.gridDividends.Appearance.Row.BackColor                     = System.Drawing.Color.White;
     this.gridDividends.Appearance.Row.Options.UseBackColor          = true;
     this.gridDividends.Appearance.RowSeparator.BackColor            = System.Drawing.Color.DimGray;
     this.gridDividends.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridDividends.Appearance.SelectedRow.BackColor             = System.Drawing.Color.DimGray;
     this.gridDividends.Appearance.SelectedRow.Options.UseBackColor  = true;
     this.gridDividends.Appearance.VertLine.BackColor                = System.Drawing.Color.LightGray;
     this.gridDividends.Appearance.VertLine.Options.UseBackColor     = true;
     this.gridDividends.BestFitMaxRowCount = 10;
     this.gridDividends.BorderStyle        = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.gridDividends.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colDivDate,
         this.colDivAmount
     });
     this.gridDividends.GridControl = this.gridDivs;
     this.gridDividends.Name        = "gridDividends";
     this.gridDividends.OptionsCustomization.AllowColumnMoving = false;
     this.gridDividends.OptionsMenu.EnableColumnMenu           = false;
     this.gridDividends.OptionsView.EnableAppearanceEvenRow    = true;
     this.gridDividends.OptionsView.EnableAppearanceOddRow     = true;
     this.gridDividends.OptionsView.ShowFilterPanel            = false;
     this.gridDividends.OptionsView.ShowGroupPanel             = false;
     this.gridDividends.OptionsView.ShowIndicator = false;
     this.gridDividends.PaintStyleName            = "MixedXP";
     this.gridDividends.ShowButtonMode            = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowForFocusedRow;
     //
     // colDivDate
     //
     this.colDivDate.Caption = "Dates";
     this.colDivDate.Name    = "colDivDate";
     this.colDivDate.OptionsColumn.ShowInCustomizationForm = false;
     this.colDivDate.Visible      = true;
     this.colDivDate.VisibleIndex = 0;
     //
     // colDivAmount
     //
     this.colDivAmount.Caption = "Amounts";
     this.colDivAmount.Name    = "colDivAmount";
     this.colDivAmount.OptionsColumn.ShowInCustomizationForm = false;
     this.colDivAmount.Visible      = true;
     this.colDivAmount.VisibleIndex = 1;
     //
     // defaultLookAndFeel1
     //
     this.defaultLookAndFeel1.LookAndFeel.SkinName          = "Money Twins";
     this.defaultLookAndFeel1.LookAndFeel.Style             = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.defaultLookAndFeel1.LookAndFeel.UseWindowsXPTheme = false;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(79, 28);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(35, 16);
     this.label1.TabIndex = 9;
     this.label1.Text     = "Date:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(50, 51);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(64, 16);
     this.label2.TabIndex = 10;
     this.label2.Text     = "Amount ($):";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 74);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(110, 16);
     this.label3.TabIndex = 14;
     this.label3.Text     = "Add with step (days):";
     //
     // OK
     //
     this.OK.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.OK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.OK.Location     = new System.Drawing.Point(270, 410);
     this.OK.Name         = "OK";
     this.OK.Size         = new System.Drawing.Size(88, 24);
     this.OK.TabIndex     = 9;
     this.OK.Text         = "OK";
     this.OK.Click       += new System.EventHandler(this.OK_Click);
     //
     // btnCancel
     //
     this.btnCancel.ButtonStyle          = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnCancel.DialogResult         = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location             = new System.Drawing.Point(270, 440);
     this.btnCancel.LookAndFeel.SkinName = "Coffee";
     this.btnCancel.LookAndFeel.Style    = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(88, 24);
     this.btnCancel.TabIndex = 10;
     this.btnCancel.Text     = "Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // tbAmount
     //
     this.tbAmount.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.tbAmount.Location = new System.Drawing.Point(122, 51);
     this.tbAmount.Name     = "tbAmount";
     this.tbAmount.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.tbAmount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.tbAmount.Properties.Mask.EditMask = "c5";
     this.tbAmount.Size     = new System.Drawing.Size(128, 20);
     this.tbAmount.TabIndex = 3;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.tbDateStep);
     this.groupControl1.Controls.Add(this.dtDate);
     this.groupControl1.Controls.Add(this.tbAmount);
     this.groupControl1.Controls.Add(this.label1);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Location = new System.Drawing.Point(8, 8);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(256, 107);
     this.groupControl1.TabIndex = 1;
     this.groupControl1.Text     = "Add";
     //
     // tbDateStep
     //
     this.tbDateStep.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.tbDateStep.EditValue = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.tbDateStep.Location = new System.Drawing.Point(121, 77);
     this.tbDateStep.Name     = "tbDateStep";
     this.tbDateStep.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.tbDateStep.Properties.BorderStyle    = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.tbDateStep.Properties.Mask.EditMask  = "d";
     this.tbDateStep.Properties.Mask.MaskType  = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.tbDateStep.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.tbDateStep.Size        = new System.Drawing.Size(130, 20);
     this.tbDateStep.TabIndex    = 4;
     //
     // dtDate
     //
     this.dtDate.EditValue = new System.DateTime(2005, 12, 6, 0, 0, 0, 0);
     this.dtDate.Location  = new System.Drawing.Point(122, 24);
     this.dtDate.Name      = "dtDate";
     this.dtDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.dtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtDate.Size     = new System.Drawing.Size(128, 20);
     this.dtDate.TabIndex = 2;
     //
     // btnAdd
     //
     this.btnAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnAdd.Location    = new System.Drawing.Point(270, 91);
     this.btnAdd.Name        = "btnAdd";
     this.btnAdd.Size        = new System.Drawing.Size(88, 24);
     this.btnAdd.TabIndex    = 6;
     this.btnAdd.Text        = "Add";
     this.btnAdd.Click      += new System.EventHandler(this.btnAdd_Click);
     //
     // btnRemove
     //
     this.btnRemove.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnRemove.Location    = new System.Drawing.Point(270, 121);
     this.btnRemove.Name        = "btnRemove";
     this.btnRemove.Size        = new System.Drawing.Size(88, 24);
     this.btnRemove.TabIndex    = 7;
     this.btnRemove.Text        = "Delete";
     this.btnRemove.Click      += new System.EventHandler(this.btnRemove_Click);
     //
     // btnRemoveAll
     //
     this.btnRemoveAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnRemoveAll.Location    = new System.Drawing.Point(270, 151);
     this.btnRemoveAll.Name        = "btnRemoveAll";
     this.btnRemoveAll.Size        = new System.Drawing.Size(88, 24);
     this.btnRemoveAll.TabIndex    = 8;
     this.btnRemoveAll.Text        = "Delete All";
     this.btnRemoveAll.Click      += new System.EventHandler(this.btnRemoveAll_Click);
     //
     // DivStreamForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.Gainsboro;
     this.ClientSize        = new System.Drawing.Size(365, 472);
     this.Controls.Add(this.btnRemoveAll);
     this.Controls.Add(this.btnRemove);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.OK);
     this.Controls.Add(this.gridDivs);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "DivStreamForm";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Dividend Stream";
     this.Load           += new System.EventHandler(this.DivStreamForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridDivs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDividends)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAmount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbDateStep.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 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.mdPKG_lblStrPackageCategory = new System.Windows.Forms.Label();
     this.mdPKG_txtStrPackageCode = new DevExpress.XtraEditors.TextEdit();
     this.btnPackageGrpCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackageGrpUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.mdPKG_txtMListPrice = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_txtStrDescription = new DevExpress.XtraEditors.TextEdit();
     this.mdPKG_dtValidEnd = new DevExpress.XtraEditors.DateEdit();
     this.mdPKG_dtValidStart = new DevExpress.XtraEditors.DateEdit();
     this.mdPKG_lbldtValidEnd = new System.Windows.Forms.Label();
     this.mdPKG_lbldtValidStart = new System.Windows.Forms.Label();
     this.mdPKG_lblMListPrice = new System.Windows.Forms.Label();
     this.mdPKG_lblStrDescription = new System.Windows.Forms.Label();
     this.mdPKG_lblStrPackageCode = new System.Windows.Forms.Label();
     this.PackageCategory = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrPackageCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtMListPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PackageCategory.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // mdPKG_lblStrPackageCategory
     //
     this.mdPKG_lblStrPackageCategory.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrPackageCategory.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrPackageCategory.Location = new System.Drawing.Point(256, 24);
     this.mdPKG_lblStrPackageCategory.Name = "mdPKG_lblStrPackageCategory";
     this.mdPKG_lblStrPackageCategory.Size = new System.Drawing.Size(112, 16);
     this.mdPKG_lblStrPackageCategory.TabIndex = 179;
     this.mdPKG_lblStrPackageCategory.Text = "Package Category";
     this.mdPKG_lblStrPackageCategory.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_txtStrPackageCode
     //
     this.mdPKG_txtStrPackageCode.EditValue = "";
     this.mdPKG_txtStrPackageCode.Location = new System.Drawing.Point(152, 24);
     this.mdPKG_txtStrPackageCode.Name = "mdPKG_txtStrPackageCode";
     //
     // mdPKG_txtStrPackageCode.Properties
     //
     this.mdPKG_txtStrPackageCode.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_txtStrPackageCode.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtStrPackageCode.Size = new System.Drawing.Size(88, 20);
     this.mdPKG_txtStrPackageCode.TabIndex = 177;
     //
     // btnPackageGrpCancel
     //
     this.btnPackageGrpCancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageGrpCancel.Location = new System.Drawing.Point(120, 160);
     this.btnPackageGrpCancel.Name = "btnPackageGrpCancel";
     this.btnPackageGrpCancel.Size = new System.Drawing.Size(64, 24);
     this.btnPackageGrpCancel.TabIndex = 175;
     this.btnPackageGrpCancel.Text = "Cancel";
     //
     // btnPackageGrpUpdate
     //
     this.btnPackageGrpUpdate.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackageGrpUpdate.Location = new System.Drawing.Point(48, 160);
     this.btnPackageGrpUpdate.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.btnPackageGrpUpdate.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnPackageGrpUpdate.Name = "btnPackageGrpUpdate";
     this.btnPackageGrpUpdate.Size = new System.Drawing.Size(64, 24);
     this.btnPackageGrpUpdate.TabIndex = 174;
     this.btnPackageGrpUpdate.Text = "Save";
     this.btnPackageGrpUpdate.Click += new System.EventHandler(this.btnPackageGrpUpdate_Click);
     //
     // mdPKG_txtMListPrice
     //
     this.mdPKG_txtMListPrice.EditValue = "";
     this.mdPKG_txtMListPrice.Location = new System.Drawing.Point(152, 72);
     this.mdPKG_txtMListPrice.Name = "mdPKG_txtMListPrice";
     //
     // mdPKG_txtMListPrice.Properties
     //
     this.mdPKG_txtMListPrice.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_txtMListPrice.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtMListPrice.Properties.Mask.EditMask = "#####0.00";
     this.mdPKG_txtMListPrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.mdPKG_txtMListPrice.Size = new System.Drawing.Size(64, 20);
     this.mdPKG_txtMListPrice.TabIndex = 173;
     //
     // mdPKG_txtStrDescription
     //
     this.mdPKG_txtStrDescription.EditValue = "";
     this.mdPKG_txtStrDescription.Location = new System.Drawing.Point(152, 48);
     this.mdPKG_txtStrDescription.Name = "mdPKG_txtStrDescription";
     //
     // mdPKG_txtStrDescription.Properties
     //
     this.mdPKG_txtStrDescription.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_txtStrDescription.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_txtStrDescription.Size = new System.Drawing.Size(416, 20);
     this.mdPKG_txtStrDescription.TabIndex = 172;
     //
     // mdPKG_dtValidEnd
     //
     this.mdPKG_dtValidEnd.EditValue = new System.DateTime(2005, 12, 28, 0, 0, 0, 0);
     this.mdPKG_dtValidEnd.Location = new System.Drawing.Point(152, 120);
     this.mdPKG_dtValidEnd.Name = "mdPKG_dtValidEnd";
     //
     // mdPKG_dtValidEnd.Properties
     //
     this.mdPKG_dtValidEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                              new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPKG_dtValidEnd.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_dtValidEnd.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_dtValidEnd.Size = new System.Drawing.Size(88, 20);
     this.mdPKG_dtValidEnd.TabIndex = 171;
     //
     // mdPKG_dtValidStart
     //
     this.mdPKG_dtValidStart.EditValue = new System.DateTime(2005, 12, 28, 0, 0, 0, 0);
     this.mdPKG_dtValidStart.Location = new System.Drawing.Point(152, 96);
     this.mdPKG_dtValidStart.Name = "mdPKG_dtValidStart";
     //
     // mdPKG_dtValidStart.Properties
     //
     this.mdPKG_dtValidStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                                new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.mdPKG_dtValidStart.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.mdPKG_dtValidStart.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.mdPKG_dtValidStart.Size = new System.Drawing.Size(88, 20);
     this.mdPKG_dtValidStart.TabIndex = 170;
     //
     // mdPKG_lbldtValidEnd
     //
     this.mdPKG_lbldtValidEnd.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lbldtValidEnd.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lbldtValidEnd.Location = new System.Drawing.Point(8, 120);
     this.mdPKG_lbldtValidEnd.Name = "mdPKG_lbldtValidEnd";
     this.mdPKG_lbldtValidEnd.Size = new System.Drawing.Size(120, 16);
     this.mdPKG_lbldtValidEnd.TabIndex = 169;
     this.mdPKG_lbldtValidEnd.Text = "Effective End Date";
     this.mdPKG_lbldtValidEnd.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lbldtValidStart
     //
     this.mdPKG_lbldtValidStart.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lbldtValidStart.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lbldtValidStart.Location = new System.Drawing.Point(8, 96);
     this.mdPKG_lbldtValidStart.Name = "mdPKG_lbldtValidStart";
     this.mdPKG_lbldtValidStart.Size = new System.Drawing.Size(120, 16);
     this.mdPKG_lbldtValidStart.TabIndex = 168;
     this.mdPKG_lbldtValidStart.Text = "Effective Start Start";
     this.mdPKG_lbldtValidStart.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblMListPrice
     //
     this.mdPKG_lblMListPrice.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblMListPrice.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblMListPrice.Location = new System.Drawing.Point(8, 72);
     this.mdPKG_lblMListPrice.Name = "mdPKG_lblMListPrice";
     this.mdPKG_lblMListPrice.Size = new System.Drawing.Size(120, 16);
     this.mdPKG_lblMListPrice.TabIndex = 167;
     this.mdPKG_lblMListPrice.Text = "Package Group Price";
     this.mdPKG_lblMListPrice.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblStrDescription
     //
     this.mdPKG_lblStrDescription.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrDescription.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrDescription.Location = new System.Drawing.Point(8, 48);
     this.mdPKG_lblStrDescription.Name = "mdPKG_lblStrDescription";
     this.mdPKG_lblStrDescription.Size = new System.Drawing.Size(88, 16);
     this.mdPKG_lblStrDescription.TabIndex = 166;
     this.mdPKG_lblStrDescription.Text = "Description";
     this.mdPKG_lblStrDescription.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblStrPackageCode
     //
     this.mdPKG_lblStrPackageCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrPackageCode.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrPackageCode.Location = new System.Drawing.Point(8, 24);
     this.mdPKG_lblStrPackageCode.Name = "mdPKG_lblStrPackageCode";
     this.mdPKG_lblStrPackageCode.Size = new System.Drawing.Size(128, 16);
     this.mdPKG_lblStrPackageCode.TabIndex = 165;
     this.mdPKG_lblStrPackageCode.Text = "Package Group Code";
     this.mdPKG_lblStrPackageCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // PackageCategory
     //
     this.PackageCategory.EditValue = "";
     this.PackageCategory.Location = new System.Drawing.Point(384, 24);
     this.PackageCategory.Name = "PackageCategory";
     //
     // PackageCategory.Properties
     //
     this.PackageCategory.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.PackageCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.PackageCategory.Properties.ReadOnly = true;
     this.PackageCategory.Size = new System.Drawing.Size(128, 20);
     this.PackageCategory.TabIndex = 180;
     //
     // frmMD_PackageGroupAdd
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(576, 222);
     this.Controls.Add(this.PackageCategory);
     this.Controls.Add(this.mdPKG_lblStrPackageCategory);
     this.Controls.Add(this.mdPKG_txtStrPackageCode);
     this.Controls.Add(this.btnPackageGrpCancel);
     this.Controls.Add(this.btnPackageGrpUpdate);
     this.Controls.Add(this.mdPKG_txtMListPrice);
     this.Controls.Add(this.mdPKG_txtStrDescription);
     this.Controls.Add(this.mdPKG_dtValidEnd);
     this.Controls.Add(this.mdPKG_dtValidStart);
     this.Controls.Add(this.mdPKG_lbldtValidEnd);
     this.Controls.Add(this.mdPKG_lbldtValidStart);
     this.Controls.Add(this.mdPKG_lblMListPrice);
     this.Controls.Add(this.mdPKG_lblStrDescription);
     this.Controls.Add(this.mdPKG_lblStrPackageCode);
     this.Name = "frmMD_PackageGroupAdd";
     this.Text = "Package Group Add";
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrPackageCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtMListPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_txtStrDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.mdPKG_dtValidStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PackageCategory.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dateEdit2 = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.label7    = new System.Windows.Forms.Label();
     this.label6    = new System.Windows.Forms.Label();
     this.label3    = new System.Windows.Forms.Label();
     this.luedtRPStaffSalesPerfmCategory = new DevExpress.XtraEditors.LookUpEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.gridPromotionPackage = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField1      = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField2      = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField3      = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField4      = new DevExpress.XtraPivotGrid.PivotGridField();
     this.btnReset             = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnReset            = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPromotionPackage)).BeginInit();
     this.SuspendLayout();
     //
     // dateEdit2
     //
     this.dateEdit2.EditValue = null;
     this.dateEdit2.Location  = new System.Drawing.Point(216, 8);
     this.dateEdit2.Name      = "dateEdit2";
     //
     // dateEdit2.Properties
     //
     this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEdit2.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dateEdit2.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.dateEdit2.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.dateEdit2.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.Custom;
     this.dateEdit2.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateEdit2.Size     = new System.Drawing.Size(100, 22);
     this.dateEdit2.TabIndex = 77;
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location  = new System.Drawing.Point(40, 8);
     this.dateEdit1.Name      = "dateEdit1";
     //
     // dateEdit1.Properties
     //
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEdit1.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dateEdit1.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.dateEdit1.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.dateEdit1.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.Custom;
     this.dateEdit1.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dateEdit1.Size     = new System.Drawing.Size(100, 22);
     this.dateEdit1.TabIndex = 76;
     //
     // label7
     //
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label7.Location = new System.Drawing.Point(144, 8);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(24, 23);
     this.label7.TabIndex = 75;
     this.label7.Text     = "To";
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label6.Location = new System.Drawing.Point(176, 8);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(40, 23);
     this.label6.TabIndex = 74;
     this.label6.Text     = "Date";
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location = new System.Drawing.Point(0, 8);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(40, 16);
     this.label3.TabIndex = 73;
     this.label3.Text     = "Date";
     //
     // luedtRPStaffSalesPerfmCategory
     //
     this.luedtRPStaffSalesPerfmCategory.EditValue = "";
     this.luedtRPStaffSalesPerfmCategory.Location  = new System.Drawing.Point(400, 8);
     this.luedtRPStaffSalesPerfmCategory.Name      = "luedtRPStaffSalesPerfmCategory";
     //
     // luedtRPStaffSalesPerfmCategory.Properties
     //
     this.luedtRPStaffSalesPerfmCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.luedtRPStaffSalesPerfmCategory.Size     = new System.Drawing.Size(152, 22);
     this.luedtRPStaffSalesPerfmCategory.TabIndex = 72;
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(328, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(64, 23);
     this.label1.TabIndex = 71;
     this.label1.Text     = "Category";
     //
     // gridPromotionPackage
     //
     this.gridPromotionPackage.Cursor = System.Windows.Forms.Cursors.Default;
     this.gridPromotionPackage.Dock   = System.Windows.Forms.DockStyle.Bottom;
     this.gridPromotionPackage.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
         this.pivotGridField1,
         this.pivotGridField2,
         this.pivotGridField3,
         this.pivotGridField4
     });
     this.gridPromotionPackage.Location = new System.Drawing.Point(0, 38);
     this.gridPromotionPackage.Name     = "gridPromotionPackage";
     this.gridPromotionPackage.OptionsCustomization.AllowDrag   = false;
     this.gridPromotionPackage.OptionsCustomization.AllowExpand = false;
     this.gridPromotionPackage.OptionsCustomization.AllowFilter = false;
     this.gridPromotionPackage.OptionsCustomization.AllowSort   = false;
     this.gridPromotionPackage.OptionsView.ShowDataHeaders      = false;
     this.gridPromotionPackage.OptionsView.ShowFilterHeaders    = false;
     this.gridPromotionPackage.Size     = new System.Drawing.Size(976, 424);
     this.gridPromotionPackage.TabIndex = 70;
     //
     // pivotGridField1
     //
     this.pivotGridField1.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField1.AreaIndex = 0;
     this.pivotGridField1.Caption   = "Package Code";
     this.pivotGridField1.CellFormat.FormatString = "d/MM/yyyy";
     this.pivotGridField1.CellFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.pivotGridField1.FieldName = "strCode";
     this.pivotGridField1.Name      = "pivotGridField1";
     //
     // pivotGridField2
     //
     this.pivotGridField2.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField2.AreaIndex = 1;
     this.pivotGridField2.Caption   = "Description";
     this.pivotGridField2.FieldName = "strDescription";
     this.pivotGridField2.MinWidth  = 40;
     this.pivotGridField2.Name      = "pivotGridField2";
     //
     // pivotGridField3
     //
     this.pivotGridField3.Area      = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField3.AreaIndex = 0;
     this.pivotGridField3.Caption   = "Branch";
     this.pivotGridField3.FieldName = "strBranchCode";
     this.pivotGridField3.Name      = "pivotGridField3";
     //
     // pivotGridField4
     //
     this.pivotGridField4.Area      = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField4.AreaIndex = 0;
     this.pivotGridField4.Caption   = "Amount";
     this.pivotGridField4.FieldName = "nQuantity";
     this.pivotGridField4.Name      = "pivotGridField4";
     //
     // btnReset
     //
     this.btnReset.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location    = new System.Drawing.Point(616, 8);
     this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnReset.Name     = "btnReset";
     this.btnReset.Size     = new System.Drawing.Size(48, 16);
     this.btnReset.TabIndex = 199;
     this.btnReset.Text     = "Reset";
     this.btnReset.Click   += new System.EventHandler(this.btnReset_Click);
     //
     // sbtnReset
     //
     this.sbtnReset.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.sbtnReset.Appearance.Options.UseFont = true;
     this.sbtnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnReset.Location    = new System.Drawing.Point(560, 8);
     this.sbtnReset.LookAndFeel.UseDefaultLookAndFeel = false;
     this.sbtnReset.Name     = "sbtnReset";
     this.sbtnReset.Size     = new System.Drawing.Size(48, 16);
     this.sbtnReset.TabIndex = 200;
     this.sbtnReset.Text     = "Enquiry";
     this.sbtnReset.Click   += new System.EventHandler(this.sbtnReset_Click);
     //
     // RPPromotionSalesPkg
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(976, 462);
     this.Controls.Add(this.sbtnReset);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.dateEdit2);
     this.Controls.Add(this.dateEdit1);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.luedtRPStaffSalesPerfmCategory);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.gridPromotionPackage);
     this.Name        = "RPPromotionSalesPkg";
     this.Text        = "Promotion Package Sales Analysis";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.RPPromotionSalesPkg_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.luedtRPStaffSalesPerfmCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPromotionPackage)).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.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.OK = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.cancel = new DevExpress.XtraBars.BarButtonItem();
            this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.showTareBarButtonItem = new DevExpress.XtraBars.BarCheckItem();
            this.showNomenclatureBarButtonItem = new DevExpress.XtraBars.BarCheckItem();
            this.openPalletButton = new DevExpress.XtraBars.BarButtonItem();
            this.NomenclatureInfoButtonsBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.PlansBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.panelControl = new DevExpress.XtraEditors.PanelControl();
            this.date = new DevExpress.XtraEditors.DateEdit();
            this.Car = new DevExpress.XtraEditors.LabelControl();
            this.Carrier = new DevExpress.XtraEditors.LabelControl();
            this.Driver = new DevExpress.XtraEditors.LabelControl();
            this.Contractor = new DevExpress.XtraEditors.LabelControl();
            this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.State = new DevExpress.XtraEditors.ComboBoxEdit();
            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
            this.label = new DevExpress.XtraEditors.LabelControl();
            this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
            this.nomenclatureView = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
            this.Info = new DevExpress.XtraEditors.LabelControl();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.tabControl = new DevExpress.XtraTab.XtraTabControl();
            this.waresTabPage = new DevExpress.XtraTab.XtraTabPage();
            this.plansTabPage = new DevExpress.XtraTab.XtraTabPage();
            this.Plans = new DevExpress.XtraGrid.GridControl();
            this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.barCheckItem1 = new DevExpress.XtraBars.BarCheckItem();
            this.barCheckItem2 = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
            this.createAcceptanceButtonItem = new DevExpress.XtraBars.BarButtonItem();
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
            this.panelControl.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabControl)).BeginInit();
            this.tabControl.SuspendLayout();
            this.waresTabPage.SuspendLayout();
            this.plansTabPage.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.Plans)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
            this.SuspendLayout();
            //
            // ribbonStatusBar
            //
            this.ribbonStatusBar.ItemLinks.Add(this.OK);
            this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
            this.ribbonStatusBar.ItemLinks.Add(this.cancel);
            this.ribbonStatusBar.Location = new System.Drawing.Point(0, 572);
            this.ribbonStatusBar.Name = "ribbonStatusBar";
            this.ribbonStatusBar.Ribbon = this.ribbon;
            this.ribbonStatusBar.Size = new System.Drawing.Size(884, 31);
            //
            // OK
            //
            this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.OK.Caption = "OK";
            this.OK.Id = 0;
            this.OK.ImageIndex = 0;
            this.OK.Name = "OK";
            this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
            //
            // barButtonItem2
            //
            this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem2.Caption = "��������";
            this.barButtonItem2.Id = 1;
            this.barButtonItem2.Name = "barButtonItem2";
            this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
            //
            // cancel
            //
            this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.cancel.Caption = "³����";
            this.cancel.Id = 2;
            this.cancel.ImageIndex = 1;
            this.cancel.Name = "cancel";
            this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
            //
            // ribbon
            //
            this.ribbon.ApplicationButtonText = null;
            this.ribbon.ExpandCollapseItem.Id = 0;
            this.ribbon.ExpandCollapseItem.Name = "";
            this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbon.ExpandCollapseItem,
            this.OK,
            this.barButtonItem2,
            this.cancel,
            this.showTareBarButtonItem,
            this.showNomenclatureBarButtonItem,
            this.openPalletButton});
            this.ribbon.Location = new System.Drawing.Point(0, 0);
            this.ribbon.MaxItemId = 22;
            this.ribbon.Name = "ribbon";
            this.ribbon.Size = new System.Drawing.Size(884, 49);
            this.ribbon.StatusBar = this.PlansBar;
            this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
            //
            // showTareBarButtonItem
            //
            this.showTareBarButtonItem.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.showTareBarButtonItem.Caption = "����";
            this.showTareBarButtonItem.Id = 18;
            this.showTareBarButtonItem.Name = "showTareBarButtonItem";
            this.showTareBarButtonItem.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.showTareBarButtonItem_CheckedChanged);
            //
            // showNomenclatureBarButtonItem
            //
            this.showNomenclatureBarButtonItem.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.showNomenclatureBarButtonItem.Caption = "������������";
            this.showNomenclatureBarButtonItem.Id = 20;
            this.showNomenclatureBarButtonItem.Name = "showNomenclatureBarButtonItem";
            this.showNomenclatureBarButtonItem.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.showNomenclatureBarButtonItem_CheckedChanged);
            //
            // openPalletButton
            //
            this.openPalletButton.Caption = "�������� ������";
            this.openPalletButton.Id = 21;
            this.openPalletButton.Name = "openPalletButton";
            this.openPalletButton.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.openPalletButton_ItemClick);
            //
            // NomenclatureInfoButtonsBar
            //
            this.NomenclatureInfoButtonsBar.Dock = System.Windows.Forms.DockStyle.Top;
            this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.showNomenclatureBarButtonItem);
            this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.showTareBarButtonItem);
            this.NomenclatureInfoButtonsBar.ItemLinks.Add(this.openPalletButton);
            this.NomenclatureInfoButtonsBar.Location = new System.Drawing.Point(0, 0);
            this.NomenclatureInfoButtonsBar.Name = "NomenclatureInfoButtonsBar";
            this.NomenclatureInfoButtonsBar.Ribbon = this.ribbon;
            this.NomenclatureInfoButtonsBar.Size = new System.Drawing.Size(878, 27);
            //
            // PlansBar
            //
            this.PlansBar.Dock = System.Windows.Forms.DockStyle.Top;
            this.PlansBar.Location = new System.Drawing.Point(0, 0);
            this.PlansBar.Name = "PlansBar";
            this.PlansBar.Ribbon = this.ribbon;
            this.PlansBar.Size = new System.Drawing.Size(878, 27);
            //
            // panelControl
            //
            this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl.Controls.Add(this.date);
            this.panelControl.Controls.Add(this.Car);
            this.panelControl.Controls.Add(this.Carrier);
            this.panelControl.Controls.Add(this.Driver);
            this.panelControl.Controls.Add(this.Contractor);
            this.panelControl.Controls.Add(this.labelControl7);
            this.panelControl.Controls.Add(this.labelControl6);
            this.panelControl.Controls.Add(this.labelControl5);
            this.panelControl.Controls.Add(this.labelControl4);
            this.panelControl.Controls.Add(this.State);
            this.panelControl.Controls.Add(this.labelControl3);
            this.panelControl.Controls.Add(this.label);
            this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl.Location = new System.Drawing.Point(0, 49);
            this.panelControl.Name = "panelControl";
            this.panelControl.Size = new System.Drawing.Size(884, 94);
            this.panelControl.TabIndex = 2;
            //
            // date
            //
            this.date.EditValue = null;
            this.date.Location = new System.Drawing.Point(366, 8);
            this.date.MenuManager = this.ribbon;
            this.date.Name = "date";
            this.date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.date.Size = new System.Drawing.Size(100, 20);
            this.date.TabIndex = 17;
            //
            // Car
            //
            this.Car.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Car.Location = new System.Drawing.Point(366, 72);
            this.Car.Name = "Car";
            this.Car.Size = new System.Drawing.Size(21, 13);
            this.Car.TabIndex = 16;
            this.Car.Text = "{0}";
            //
            // Carrier
            //
            this.Carrier.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Carrier.Location = new System.Drawing.Point(366, 53);
            this.Carrier.Name = "Carrier";
            this.Carrier.Size = new System.Drawing.Size(21, 13);
            this.Carrier.TabIndex = 15;
            this.Carrier.Text = "{0}";
            //
            // Driver
            //
            this.Driver.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Driver.Location = new System.Drawing.Point(99, 72);
            this.Driver.Name = "Driver";
            this.Driver.Size = new System.Drawing.Size(21, 13);
            this.Driver.TabIndex = 14;
            this.Driver.Text = "{0}";
            //
            // Contractor
            //
            this.Contractor.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.Contractor.Location = new System.Drawing.Point(99, 53);
            this.Contractor.Name = "Contractor";
            this.Contractor.Size = new System.Drawing.Size(21, 13);
            this.Contractor.TabIndex = 13;
            this.Contractor.Text = "{0}";
            //
            // labelControl7
            //
            this.labelControl7.Location = new System.Drawing.Point(261, 72);
            this.labelControl7.Name = "labelControl7";
            this.labelControl7.Size = new System.Drawing.Size(40, 13);
            this.labelControl7.TabIndex = 12;
            this.labelControl7.Text = "������";
            //
            // labelControl6
            //
            this.labelControl6.Location = new System.Drawing.Point(10, 72);
            this.labelControl6.Name = "labelControl6";
            this.labelControl6.Size = new System.Drawing.Size(28, 13);
            this.labelControl6.TabIndex = 10;
            this.labelControl6.Text = "����";
            //
            // labelControl5
            //
            this.labelControl5.Location = new System.Drawing.Point(261, 53);
            this.labelControl5.Name = "labelControl5";
            this.labelControl5.Size = new System.Drawing.Size(57, 13);
            this.labelControl5.TabIndex = 8;
            this.labelControl5.Text = "���������";
            //
            // labelControl4
            //
            this.labelControl4.Location = new System.Drawing.Point(10, 53);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(60, 13);
            this.labelControl4.TabIndex = 6;
            this.labelControl4.Text = "����������";
            //
            // State
            //
            this.State.Location = new System.Drawing.Point(99, 8);
            this.State.MenuManager = this.ribbon;
            this.State.Name = "State";
            this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.State.Size = new System.Drawing.Size(156, 20);
            this.State.TabIndex = 0;
            //
            // labelControl3
            //
            this.labelControl3.Location = new System.Drawing.Point(10, 11);
            this.labelControl3.Name = "labelControl3";
            this.labelControl3.Size = new System.Drawing.Size(82, 13);
            this.labelControl3.TabIndex = 4;
            this.labelControl3.Text = "���� ���������";
            //
            // label
            //
            this.label.Location = new System.Drawing.Point(272, 11);
            this.label.Name = "label";
            this.label.Size = new System.Drawing.Size(83, 13);
            this.label.TabIndex = 2;
            this.label.Text = "���� ���������";
            //
            // NomenclatureInfo
            //
            this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.NomenclatureInfo.Location = new System.Drawing.Point(0, 27);
            this.NomenclatureInfo.MainView = this.nomenclatureView;
            this.NomenclatureInfo.MenuManager = this.ribbon;
            this.NomenclatureInfo.Name = "NomenclatureInfo";
            this.NomenclatureInfo.Size = new System.Drawing.Size(878, 354);
            this.NomenclatureInfo.TabIndex = 1;
            this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.nomenclatureView});
            //
            // nomenclatureView
            //
            this.nomenclatureView.GridControl = this.NomenclatureInfo;
            this.nomenclatureView.Name = "nomenclatureView";
            this.nomenclatureView.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.nomenclatureView_RowStyle);
            //
            // panelControl1
            //
            this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl1.Controls.Add(this.pictureEdit1);
            this.panelControl1.Controls.Add(this.Info);
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelControl1.Location = new System.Drawing.Point(0, 552);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(884, 20);
            this.panelControl1.TabIndex = 0;
            //
            // pictureEdit1
            //
            this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
            this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
            this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
            this.pictureEdit1.MenuManager = this.ribbon;
            this.pictureEdit1.Name = "pictureEdit1";
            this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
            this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
            this.pictureEdit1.TabIndex = 3;
            this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
            this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
            this.pictureEdit1.ToolTipTitle = "������:";
            //
            // Info
            //
            this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
            this.Info.Location = new System.Drawing.Point(24, 3);
            this.Info.Name = "Info";
            this.Info.Size = new System.Drawing.Size(12, 13);
            this.Info.TabIndex = 1;
            this.Info.Text = "...";
            //
            // barButtonItem1
            //
            this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem1.Caption = "OK";
            this.barButtonItem1.Id = 0;
            this.barButtonItem1.ImageIndex = 0;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem3
            //
            this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem3.Caption = "��������";
            this.barButtonItem3.Id = 1;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem4.Caption = "³����";
            this.barButtonItem4.Id = 2;
            this.barButtonItem4.ImageIndex = 1;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // tabControl
            //
            this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl.Location = new System.Drawing.Point(0, 143);
            this.tabControl.Name = "tabControl";
            this.tabControl.SelectedTabPage = this.waresTabPage;
            this.tabControl.Size = new System.Drawing.Size(884, 409);
            this.tabControl.TabIndex = 9;
            this.tabControl.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.waresTabPage,
            this.plansTabPage});
            //
            // waresTabPage
            //
            this.waresTabPage.Controls.Add(this.NomenclatureInfo);
            this.waresTabPage.Controls.Add(this.NomenclatureInfoButtonsBar);
            this.waresTabPage.Name = "waresTabPage";
            this.waresTabPage.Size = new System.Drawing.Size(878, 381);
            this.waresTabPage.Text = "������������";
            //
            // plansTabPage
            //
            this.plansTabPage.Controls.Add(this.Plans);
            this.plansTabPage.Controls.Add(this.PlansBar);
            this.plansTabPage.Name = "plansTabPage";
            this.plansTabPage.Size = new System.Drawing.Size(878, 381);
            this.plansTabPage.Text = "������ ���������";
            //
            // Plans
            //
            this.Plans.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Plans.Location = new System.Drawing.Point(0, 27);
            this.Plans.MainView = this.gridView3;
            this.Plans.MenuManager = this.ribbon;
            this.Plans.Name = "Plans";
            this.Plans.Size = new System.Drawing.Size(878, 354);
            this.Plans.TabIndex = 7;
            this.Plans.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView3});
            //
            // gridView3
            //
            this.gridView3.GridControl = this.Plans;
            this.gridView3.Name = "gridView3";
            //
            // barCheckItem1
            //
            this.barCheckItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barCheckItem1.Caption = "������������";
            this.barCheckItem1.Id = 20;
            this.barCheckItem1.Name = "barCheckItem1";
            //
            // barCheckItem2
            //
            this.barCheckItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barCheckItem2.Caption = "����";
            this.barCheckItem2.Id = 18;
            this.barCheckItem2.Name = "barCheckItem2";
            //
            // barButtonItem5
            //
            this.barButtonItem5.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem5.Caption = "OK";
            this.barButtonItem5.Id = 0;
            this.barButtonItem5.ImageIndex = 0;
            this.barButtonItem5.Name = "barButtonItem5";
            //
            // barButtonItem6
            //
            this.barButtonItem6.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem6.Caption = "��������";
            this.barButtonItem6.Id = 1;
            this.barButtonItem6.Name = "barButtonItem6";
            //
            // barButtonItem7
            //
            this.barButtonItem7.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem7.Caption = "³����";
            this.barButtonItem7.Id = 2;
            this.barButtonItem7.ImageIndex = 1;
            this.barButtonItem7.Name = "barButtonItem7";
            //
            // barButtonItem8
            //
            this.barButtonItem8.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem8.Caption = "OK";
            this.barButtonItem8.Id = 0;
            this.barButtonItem8.ImageIndex = 0;
            this.barButtonItem8.Name = "barButtonItem8";
            //
            // barButtonItem9
            //
            this.barButtonItem9.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem9.Caption = "��������";
            this.barButtonItem9.Id = 1;
            this.barButtonItem9.Name = "barButtonItem9";
            //
            // barButtonItem10
            //
            this.barButtonItem10.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.barButtonItem10.Caption = "³����";
            this.barButtonItem10.Id = 2;
            this.barButtonItem10.ImageIndex = 1;
            this.barButtonItem10.Name = "barButtonItem10";
            //
            // createAcceptanceButtonItem
            //
            this.createAcceptanceButtonItem.Caption = "�������� \"��������� ������\"";
            this.createAcceptanceButtonItem.Id = 18;
            this.createAcceptanceButtonItem.Name = "createAcceptanceButtonItem";
            //
            // AcceptanceOfGoodsItemForm
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(884, 603);
            this.Controls.Add(this.tabControl);
            this.Controls.Add(this.panelControl1);
            this.Controls.Add(this.panelControl);
            this.Controls.Add(this.ribbonStatusBar);
            this.Controls.Add(this.ribbon);
            this.KeyPreview = true;
            this.Name = "AcceptanceOfGoodsItemForm";
            this.Ribbon = this.ribbon;
            this.StatusBar = this.ribbonStatusBar;
            this.Text = "Item form";

            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
            this.panelControl.ResumeLayout(false);
            this.panelControl.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.date.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.panelControl1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tabControl)).EndInit();
            this.tabControl.ResumeLayout(false);
            this.waresTabPage.ResumeLayout(false);
            this.plansTabPage.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.Plans)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).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.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.printToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.printPreviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.exportToHTMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportToXMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportToTXTToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.dataSet11 = new Scheduler.BusinessLayer.DataSet1();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDepartment = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colClientName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colProgramName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colClassName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colClassType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colClientShortName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStartDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.colEndDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.colDayName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCalendarEventId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPaidHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.colTeacherID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInstructorName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colScheduledHours = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.colEventDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.colHomeworkMinutes = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.pnlBody = new System.Windows.Forms.Panel();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.dateEditEndDate = new DevExpress.XtraEditors.DateEdit();
     this.dateEditStartDate = new DevExpress.XtraEditors.DateEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     this.pnlBody.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEndDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditStartDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gridControl1
     //
     this.gridControl1.ContextMenuStrip = this.contextMenuStrip1;
     this.gridControl1.DataMember = "viewInstructorPaymentDetails";
     this.gridControl1.DataSource = this.dataSet11;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(2, 2);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTimeEdit1,
     this.repositoryItemDateEdit1,
     this.repositoryItemTimeEdit2,
     this.repositoryItemDateEdit2,
     this.repositoryItemSpinEdit1,
     this.repositoryItemSpinEdit2});
     this.gridControl1.Size = new System.Drawing.Size(871, 547);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.printToolStripMenuItem,
     this.printPreviewToolStripMenuItem,
     this.exportToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(144, 70);
     //
     // printToolStripMenuItem
     //
     this.printToolStripMenuItem.Name = "printToolStripMenuItem";
     this.printToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.printToolStripMenuItem.Text = "Print";
     this.printToolStripMenuItem.Click += new System.EventHandler(this.printToolStripMenuItem_Click);
     //
     // printPreviewToolStripMenuItem
     //
     this.printPreviewToolStripMenuItem.Name = "printPreviewToolStripMenuItem";
     this.printPreviewToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.printPreviewToolStripMenuItem.Text = "Print Preview";
     this.printPreviewToolStripMenuItem.Click += new System.EventHandler(this.printPreviewToolStripMenuItem_Click);
     //
     // exportToolStripMenuItem
     //
     this.exportToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exportToolStripMenuItem1,
     this.exportToHTMLToolStripMenuItem,
     this.exportToXMLToolStripMenuItem,
     this.exportToTXTToolStripMenuItem});
     this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
     this.exportToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.exportToolStripMenuItem.Text = "Export";
     this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
     //
     // exportToolStripMenuItem1
     //
     this.exportToolStripMenuItem1.Name = "exportToolStripMenuItem1";
     this.exportToolStripMenuItem1.Size = new System.Drawing.Size(157, 22);
     this.exportToolStripMenuItem1.Text = "Export To Excel";
     this.exportToolStripMenuItem1.Click += new System.EventHandler(this.exportToolStripMenuItem1_Click);
     //
     // exportToHTMLToolStripMenuItem
     //
     this.exportToHTMLToolStripMenuItem.Name = "exportToHTMLToolStripMenuItem";
     this.exportToHTMLToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
     this.exportToHTMLToolStripMenuItem.Text = "Export to HTML";
     this.exportToHTMLToolStripMenuItem.Click += new System.EventHandler(this.exportToHTMLToolStripMenuItem_Click);
     //
     // exportToXMLToolStripMenuItem
     //
     this.exportToXMLToolStripMenuItem.Name = "exportToXMLToolStripMenuItem";
     this.exportToXMLToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
     this.exportToXMLToolStripMenuItem.Text = "Export to XML";
     this.exportToXMLToolStripMenuItem.Click += new System.EventHandler(this.exportToXMLToolStripMenuItem_Click);
     //
     // exportToTXTToolStripMenuItem
     //
     this.exportToTXTToolStripMenuItem.Name = "exportToTXTToolStripMenuItem";
     this.exportToTXTToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
     this.exportToTXTToolStripMenuItem.Text = "Export to TXT";
     this.exportToTXTToolStripMenuItem.Click += new System.EventHandler(this.exportToTXTToolStripMenuItem_Click);
     //
     // dataSet11
     //
     this.dataSet11.DataSetName = "DataSet1";
     this.dataSet11.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDepartment,
     this.colClientName,
     this.colProgramName,
     this.colClassName,
     this.colClassType,
     this.colClientShortName,
     this.colStartDateTime,
     this.colEndDateTime,
     this.colDayName,
     this.colCalendarEventId,
     this.colPaidHours,
     this.colTeacherID,
     this.colInstructorName,
     this.colScheduledHours,
     this.colEventDate,
     this.colHomeworkMinutes});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.GroupCount = 1;
     this.gridView1.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
     this.gridView1.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "ScheduledHours", null, "Scheduled Hours = {0}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "PaidHours", null, "Total Paid Hours = {0}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "ScheduledHours", this.colScheduledHours, "Scheduled Hours = {0}"),
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "PaidHours", this.colPaidHours, "Total Paid Hours = {0}")});
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowAutoFilterRow = true;
     this.gridView1.OptionsView.ShowFooter = true;
     this.gridView1.OptionsView.ShowGroupedColumns = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colInstructorName, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colDepartment
     //
     this.colDepartment.Caption = "Department";
     this.colDepartment.FieldName = "Department";
     this.colDepartment.Name = "colDepartment";
     this.colDepartment.OptionsColumn.AllowEdit = false;
     this.colDepartment.OptionsColumn.ReadOnly = true;
     this.colDepartment.Width = 69;
     //
     // colClientName
     //
     this.colClientName.Caption = "ClientName";
     this.colClientName.FieldName = "ClientName";
     this.colClientName.Name = "colClientName";
     this.colClientName.OptionsColumn.AllowEdit = false;
     this.colClientName.OptionsColumn.ReadOnly = true;
     this.colClientName.Width = 66;
     //
     // colProgramName
     //
     this.colProgramName.Caption = "Program";
     this.colProgramName.FieldName = "ProgramName";
     this.colProgramName.Name = "colProgramName";
     this.colProgramName.OptionsColumn.AllowEdit = false;
     this.colProgramName.OptionsColumn.ReadOnly = true;
     this.colProgramName.Visible = true;
     this.colProgramName.VisibleIndex = 6;
     this.colProgramName.Width = 62;
     //
     // colClassName
     //
     this.colClassName.Caption = "Class";
     this.colClassName.FieldName = "Class";
     this.colClassName.Name = "colClassName";
     this.colClassName.OptionsColumn.AllowEdit = false;
     this.colClassName.OptionsColumn.ReadOnly = true;
     this.colClassName.Visible = true;
     this.colClassName.VisibleIndex = 7;
     this.colClassName.Width = 47;
     //
     // colClassType
     //
     this.colClassType.Caption = "Job Type";
     this.colClassType.FieldName = "JobType";
     this.colClassType.Name = "colClassType";
     this.colClassType.OptionsColumn.AllowEdit = false;
     this.colClassType.OptionsColumn.ReadOnly = true;
     this.colClassType.Visible = true;
     this.colClassType.VisibleIndex = 8;
     this.colClassType.Width = 66;
     //
     // colClientShortName
     //
     this.colClientShortName.Caption = "Client";
     this.colClientShortName.FieldName = "ClientNickName";
     this.colClientShortName.Name = "colClientShortName";
     this.colClientShortName.OptionsColumn.AllowEdit = false;
     this.colClientShortName.OptionsColumn.ReadOnly = true;
     this.colClientShortName.Visible = true;
     this.colClientShortName.VisibleIndex = 5;
     this.colClientShortName.Width = 49;
     //
     // colStartDateTime
     //
     this.colStartDateTime.Caption = "Start Time";
     this.colStartDateTime.ColumnEdit = this.repositoryItemTimeEdit1;
     this.colStartDateTime.FieldName = "StartDateTime";
     this.colStartDateTime.Name = "colStartDateTime";
     this.colStartDateTime.OptionsColumn.AllowEdit = false;
     this.colStartDateTime.OptionsColumn.ReadOnly = true;
     this.colStartDateTime.Visible = true;
     this.colStartDateTime.VisibleIndex = 3;
     this.colStartDateTime.Width = 71;
     //
     // repositoryItemTimeEdit1
     //
     this.repositoryItemTimeEdit1.AutoHeight = false;
     this.repositoryItemTimeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit1.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.repositoryItemTimeEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemTimeEdit1.Mask.EditMask = "hh:mm:ss tt";
     this.repositoryItemTimeEdit1.Name = "repositoryItemTimeEdit1";
     //
     // colEndDateTime
     //
     this.colEndDateTime.Caption = "End Time";
     this.colEndDateTime.ColumnEdit = this.repositoryItemTimeEdit2;
     this.colEndDateTime.FieldName = "EndDateTime";
     this.colEndDateTime.Name = "colEndDateTime";
     this.colEndDateTime.OptionsColumn.AllowEdit = false;
     this.colEndDateTime.OptionsColumn.ReadOnly = true;
     this.colEndDateTime.Visible = true;
     this.colEndDateTime.VisibleIndex = 4;
     this.colEndDateTime.Width = 65;
     //
     // repositoryItemTimeEdit2
     //
     this.repositoryItemTimeEdit2.AutoHeight = false;
     this.repositoryItemTimeEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit2.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.repositoryItemTimeEdit2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemTimeEdit2.Name = "repositoryItemTimeEdit2";
     //
     // colDayName
     //
     this.colDayName.Caption = "Day";
     this.colDayName.FieldName = "DayName";
     this.colDayName.Name = "colDayName";
     this.colDayName.OptionsColumn.AllowEdit = false;
     this.colDayName.OptionsColumn.ReadOnly = true;
     this.colDayName.Visible = true;
     this.colDayName.VisibleIndex = 2;
     this.colDayName.Width = 41;
     //
     // colCalendarEventId
     //
     this.colCalendarEventId.Caption = "CalendarEventId";
     this.colCalendarEventId.FieldName = "CalendarEventId";
     this.colCalendarEventId.Name = "colCalendarEventId";
     this.colCalendarEventId.OptionsColumn.AllowEdit = false;
     this.colCalendarEventId.OptionsColumn.ReadOnly = true;
     this.colCalendarEventId.Width = 93;
     //
     // colPaidHours
     //
     this.colPaidHours.Caption = "Paid Hours";
     this.colPaidHours.ColumnEdit = this.repositoryItemSpinEdit2;
     this.colPaidHours.FieldName = "PaidHours";
     this.colPaidHours.Name = "colPaidHours";
     this.colPaidHours.OptionsColumn.AllowEdit = false;
     this.colPaidHours.OptionsColumn.ReadOnly = true;
     this.colPaidHours.SummaryItem.DisplayFormat = "Paid Hours = {0}";
     this.colPaidHours.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colPaidHours.Visible = true;
     this.colPaidHours.VisibleIndex = 10;
     this.colPaidHours.Width = 172;
     //
     // repositoryItemSpinEdit2
     //
     this.repositoryItemSpinEdit2.AutoHeight = false;
     this.repositoryItemSpinEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit2.DisplayFormat.FormatString = "n";
     this.repositoryItemSpinEdit2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemSpinEdit2.Mask.EditMask = "n";
     this.repositoryItemSpinEdit2.Name = "repositoryItemSpinEdit2";
     //
     // colTeacherID
     //
     this.colTeacherID.Caption = "TeacherID";
     this.colTeacherID.FieldName = "TeacherId";
     this.colTeacherID.Name = "colTeacherID";
     this.colTeacherID.OptionsColumn.AllowEdit = false;
     this.colTeacherID.OptionsColumn.ReadOnly = true;
     this.colTeacherID.Width = 62;
     //
     // colInstructorName
     //
     this.colInstructorName.Caption = "Instructor Name";
     this.colInstructorName.FieldName = "InstructorName";
     this.colInstructorName.Name = "colInstructorName";
     this.colInstructorName.OptionsColumn.AllowEdit = false;
     this.colInstructorName.OptionsColumn.ReadOnly = true;
     this.colInstructorName.Visible = true;
     this.colInstructorName.VisibleIndex = 0;
     this.colInstructorName.Width = 113;
     //
     // colScheduledHours
     //
     this.colScheduledHours.Caption = "Scheduled Hours";
     this.colScheduledHours.ColumnEdit = this.repositoryItemSpinEdit1;
     this.colScheduledHours.FieldName = "ScheduledHours";
     this.colScheduledHours.Name = "colScheduledHours";
     this.colScheduledHours.OptionsColumn.AllowEdit = false;
     this.colScheduledHours.OptionsColumn.ReadOnly = true;
     this.colScheduledHours.SummaryItem.DisplayFormat = "Scheduled Hours = {0}";
     this.colScheduledHours.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colScheduledHours.Visible = true;
     this.colScheduledHours.VisibleIndex = 9;
     this.colScheduledHours.Width = 162;
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.DisplayFormat.FormatString = "n";
     this.repositoryItemSpinEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemSpinEdit1.Mask.EditMask = "n";
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // colEventDate
     //
     this.colEventDate.Caption = "Date";
     this.colEventDate.ColumnEdit = this.repositoryItemDateEdit2;
     this.colEventDate.FieldName = "StartDateTime";
     this.colEventDate.Name = "colEventDate";
     this.colEventDate.OptionsColumn.AllowEdit = false;
     this.colEventDate.OptionsColumn.ReadOnly = true;
     this.colEventDate.Visible = true;
     this.colEventDate.VisibleIndex = 1;
     this.colEventDate.Width = 45;
     //
     // repositoryItemDateEdit2
     //
     this.repositoryItemDateEdit2.AutoHeight = false;
     this.repositoryItemDateEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit2.DisplayFormat.FormatString = "MM/dd/yyyy";
     this.repositoryItemDateEdit2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit2.Mask.EditMask = "MM/dd/yyyy";
     this.repositoryItemDateEdit2.Name = "repositoryItemDateEdit2";
     //
     // colHomeworkMinutes
     //
     this.colHomeworkMinutes.Caption = "HomeworkMinutes";
     this.colHomeworkMinutes.FieldName = "HomeworkMinutes";
     this.colHomeworkMinutes.Name = "colHomeworkMinutes";
     this.colHomeworkMinutes.OptionsColumn.AllowEdit = false;
     this.colHomeworkMinutes.OptionsColumn.ReadOnly = true;
     //
     // repositoryItemDateEdit1
     //
     this.repositoryItemDateEdit1.AutoHeight = false;
     this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
     //
     // pnlBody
     //
     this.pnlBody.Controls.Add(this.panelControl2);
     this.pnlBody.Controls.Add(this.panelControl1);
     this.pnlBody.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlBody.Location = new System.Drawing.Point(0, 0);
     this.pnlBody.Name = "pnlBody";
     this.pnlBody.Size = new System.Drawing.Size(875, 642);
     this.pnlBody.TabIndex = 1;
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.gridControl1);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 91);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(875, 551);
     this.panelControl2.TabIndex = 2;
     this.panelControl2.Text = "panelControl2";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.checkEdit2);
     this.panelControl1.Controls.Add(this.checkEdit1);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Controls.Add(this.dateEditEndDate);
     this.panelControl1.Controls.Add(this.dateEditStartDate);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(875, 91);
     this.panelControl1.TabIndex = 1;
     this.panelControl1.Text = "panelControl1";
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(23, 49);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "End Date:";
     this.checkEdit2.Size = new System.Drawing.Size(75, 19);
     this.checkEdit2.TabIndex = 12;
     this.checkEdit2.CheckedChanged += new System.EventHandler(this.checkEdit2_CheckedChanged);
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(23, 24);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "Start Date:";
     this.checkEdit1.Size = new System.Drawing.Size(75, 19);
     this.checkEdit1.TabIndex = 11;
     this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(305, 24);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(81, 44);
     this.simpleButton1.TabIndex = 10;
     this.simpleButton1.Text = "Search";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // dateEditEndDate
     //
     this.dateEditEndDate.EditValue = new System.DateTime(2007, 3, 22, 7, 25, 31, 171);
     this.dateEditEndDate.Enabled = false;
     this.dateEditEndDate.Location = new System.Drawing.Point(130, 49);
     this.dateEditEndDate.Name = "dateEditEndDate";
     this.dateEditEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditEndDate.Properties.DisplayFormat.FormatString = "D";
     this.dateEditEndDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEndDate.Size = new System.Drawing.Size(169, 20);
     this.dateEditEndDate.TabIndex = 9;
     //
     // dateEditStartDate
     //
     this.dateEditStartDate.EditValue = new System.DateTime(2007, 3, 22, 7, 25, 23, 234);
     this.dateEditStartDate.Enabled = false;
     this.dateEditStartDate.Location = new System.Drawing.Point(130, 24);
     this.dateEditStartDate.Name = "dateEditStartDate";
     this.dateEditStartDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditStartDate.Properties.DisplayFormat.FormatString = "D";
     this.dateEditStartDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditStartDate.Size = new System.Drawing.Size(169, 20);
     this.dateEditStartDate.TabIndex = 8;
     //
     // frmInstructorPayroll
     //
     this.ClientSize = new System.Drawing.Size(875, 642);
     this.Controls.Add(this.pnlBody);
     this.Name = "frmInstructorPayroll";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Pay Details By Instructor";
     this.Load += new System.EventHandler(this.frmInstructorPayroll_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataSet11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     this.pnlBody.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEndDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditStartDate.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnTimeSheetAdd = new DevExpress.XtraEditors.SimpleButton();
     this.txtRemarks = new DevExpress.XtraEditors.MemoEdit();
     this.txtTime = new DevExpress.XtraEditors.TimeEdit();
     this.dtDate = new DevExpress.XtraEditors.DateEdit();
     this.mdPKG_lblStrReceiptDesc = new System.Windows.Forms.Label();
     this.mdPKG_lblStrDescription = new System.Windows.Forms.Label();
     this.mdPKG_lblStrPackageCode = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // btnClose
     //
     this.btnClose.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnClose.Appearance.Options.UseFont = true;
     this.btnClose.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnClose.Location = new System.Drawing.Point(320, 176);
     this.btnClose.Name = "btnClose";
     this.btnClose.TabIndex = 223;
     this.btnClose.Text = "Close";
     //
     // btnTimeSheetAdd
     //
     this.btnTimeSheetAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnTimeSheetAdd.Appearance.Options.UseFont = true;
     this.btnTimeSheetAdd.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnTimeSheetAdd.Location = new System.Drawing.Point(240, 176);
     this.btnTimeSheetAdd.Name = "btnTimeSheetAdd";
     this.btnTimeSheetAdd.TabIndex = 222;
     this.btnTimeSheetAdd.Text = "Save";
     this.btnTimeSheetAdd.Click += new System.EventHandler(this.btnTimeSheetAdd_Click);
     //
     // txtRemarks
     //
     this.txtRemarks.EditValue = "";
     this.txtRemarks.Location = new System.Drawing.Point(120, 64);
     this.txtRemarks.Name = "txtRemarks";
     //
     // txtRemarks.Properties
     //
     this.txtRemarks.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtRemarks.Size = new System.Drawing.Size(272, 96);
     this.txtRemarks.TabIndex = 221;
     //
     // txtTime
     //
     this.txtTime.EditValue = null;
     this.txtTime.Location = new System.Drawing.Point(120, 40);
     this.txtTime.Name = "txtTime";
     //
     // txtTime.Properties
     //
     this.txtTime.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.txtTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtTime.Properties.EditFormat.FormatString = "hh:mm tt";
     this.txtTime.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtTime.Properties.Mask.EditMask = "hh:mm tt";
     this.txtTime.Size = new System.Drawing.Size(88, 22);
     this.txtTime.TabIndex = 220;
     //
     // dtDate
     //
     this.dtDate.EditValue = null;
     this.dtDate.Enabled = false;
     this.dtDate.Location = new System.Drawing.Point(120, 16);
     this.dtDate.Name = "dtDate";
     //
     // dtDate.Properties
     //
     this.dtDate.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.dtDate.Properties.Appearance.Options.UseForeColor = true;
     this.dtDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                    new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtDate.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.dtDate.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.dtDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dtDate.Properties.ReadOnly = true;
     this.dtDate.Size = new System.Drawing.Size(88, 22);
     this.dtDate.TabIndex = 219;
     //
     // mdPKG_lblStrReceiptDesc
     //
     this.mdPKG_lblStrReceiptDesc.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrReceiptDesc.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrReceiptDesc.Location = new System.Drawing.Point(16, 64);
     this.mdPKG_lblStrReceiptDesc.Name = "mdPKG_lblStrReceiptDesc";
     this.mdPKG_lblStrReceiptDesc.Size = new System.Drawing.Size(120, 16);
     this.mdPKG_lblStrReceiptDesc.TabIndex = 218;
     this.mdPKG_lblStrReceiptDesc.Text = "Remarks";
     this.mdPKG_lblStrReceiptDesc.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblStrDescription
     //
     this.mdPKG_lblStrDescription.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrDescription.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrDescription.Location = new System.Drawing.Point(16, 40);
     this.mdPKG_lblStrDescription.Name = "mdPKG_lblStrDescription";
     this.mdPKG_lblStrDescription.Size = new System.Drawing.Size(96, 16);
     this.mdPKG_lblStrDescription.TabIndex = 217;
     this.mdPKG_lblStrDescription.Text = "Time";
     this.mdPKG_lblStrDescription.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // mdPKG_lblStrPackageCode
     //
     this.mdPKG_lblStrPackageCode.BackColor = System.Drawing.Color.Transparent;
     this.mdPKG_lblStrPackageCode.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.mdPKG_lblStrPackageCode.Location = new System.Drawing.Point(16, 16);
     this.mdPKG_lblStrPackageCode.Name = "mdPKG_lblStrPackageCode";
     this.mdPKG_lblStrPackageCode.Size = new System.Drawing.Size(96, 16);
     this.mdPKG_lblStrPackageCode.TabIndex = 216;
     this.mdPKG_lblStrPackageCode.Text = "Date";
     this.mdPKG_lblStrPackageCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // frmTimeSheetUpdate
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(416, 213);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnTimeSheetAdd);
     this.Controls.Add(this.txtRemarks);
     this.Controls.Add(this.txtTime);
     this.Controls.Add(this.dtDate);
     this.Controls.Add(this.mdPKG_lblStrReceiptDesc);
     this.Controls.Add(this.mdPKG_lblStrDescription);
     this.Controls.Add(this.mdPKG_lblStrPackageCode);
     this.Name = "frmTimeSheetUpdate";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Timesheet Update";
     this.Load += new System.EventHandler(this.frmTimeSheetUpdate_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoomCheckOut));
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlList = new DevExpress.XtraEditors.GroupControl();
     this.gridControlRoom = new DevExpress.XtraGrid.GridControl();
     this.gridViewRoom = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.check_out_room_code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_room_name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_building_label = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_floor_code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_roomtype_label = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_room_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_tenant_name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_tenant_surname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_leave_date = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_room_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_tenant_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_check_in_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_insurerate_rate_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_insurerate_rate_weekly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_insurerate_rate_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_deposite_rate_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_deposite_rate_weekly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_deposite_rate_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_unit_rate_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_unit_rate_weekly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_unit_rate_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_unit_rate_min = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_price_rate_min = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_unit_rate_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_unit_rate_weekly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_unit_rate_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_unit_rate_min = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_price_rate_min = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.groupExpense = new DevExpress.XtraEditors.GroupControl();
     this.groupControlItem = new DevExpress.XtraEditors.GroupControl();
     this.gridControlItem = new DevExpress.XtraGrid.GridControl();
     this.gridViewItemList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInvoiceItemName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnAmountPerUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInvoiceItemPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnVat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnVating = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInvoiceItemId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemNetPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.bttRemoveItem = new DevExpress.XtraEditors.SimpleButton();
     this.bttAddItem = new DevExpress.XtraEditors.SimpleButton();
     this.labelControlBaht3 = new DevExpress.XtraEditors.LabelControl();
     this.textEditRefund = new DevExpress.XtraEditors.TextEdit();
     this.labelControlRefund = new DevExpress.XtraEditors.LabelControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlGeneralCost = new DevExpress.XtraGrid.GridControl();
     this.gridViewGeneralCost = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnNetPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControlCalculate = new DevExpress.XtraEditors.PanelControl();
     this.dateEditInvoiceDueDate = new DevExpress.XtraEditors.DateEdit();
     this.panelControlPricePerDay = new DevExpress.XtraEditors.PanelControl();
     this.textEditChargePrice = new DevExpress.XtraEditors.TextEdit();
     this.labelControlPrice = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBaht2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlTipMSG = new DevExpress.XtraEditors.LabelControl();
     this.dateEditLeaveDate = new DevExpress.XtraEditors.DateEdit();
     this.bttCalculate = new DevExpress.XtraEditors.SimpleButton();
     this.labelControlRentalPrice = new DevExpress.XtraEditors.LabelControl();
     this.labelControlCheckOutDate = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditCharge = new DevExpress.XtraEditors.LookUpEdit();
     this.groupControlMeter = new DevExpress.XtraEditors.GroupControl();
     this.textEditPhonePrice = new DevExpress.XtraEditors.TextEdit();
     this.groupControlEndMeter = new DevExpress.XtraEditors.GroupControl();
     this.textEditWMeterPresent = new DevExpress.XtraEditors.TextEdit();
     this.textEditEMeterPresent = new DevExpress.XtraEditors.TextEdit();
     this.groupControlEndDate = new DevExpress.XtraEditors.GroupControl();
     this.dateEditWMeterPresentDate = new DevExpress.XtraEditors.DateEdit();
     this.dateEditEMeterPresentDate = new DevExpress.XtraEditors.DateEdit();
     this.dateEditPhoneStart = new DevExpress.XtraEditors.DateEdit();
     this.dateEditPhoneEnd = new DevExpress.XtraEditors.DateEdit();
     this.textEditWaterMeterId = new DevExpress.XtraEditors.TextEdit();
     this.textEditElectricMeterId = new DevExpress.XtraEditors.TextEdit();
     this.groupControlStartMeter = new DevExpress.XtraEditors.GroupControl();
     this.textEditWMeterPreviousUnit = new DevExpress.XtraEditors.TextEdit();
     this.textEditEMeterPreviousUnit = new DevExpress.XtraEditors.TextEdit();
     this.labelControlPhoneMeter = new DevExpress.XtraEditors.LabelControl();
     this.labelControlTelAmount = new DevExpress.XtraEditors.LabelControl();
     this.labelControlTelEnd = new DevExpress.XtraEditors.LabelControl();
     this.labelControlTelStart = new DevExpress.XtraEditors.LabelControl();
     this.labelControlWaterMeter = new DevExpress.XtraEditors.LabelControl();
     this.labelControlElectricMeter = new DevExpress.XtraEditors.LabelControl();
     this.groupControlStartDate = new DevExpress.XtraEditors.GroupControl();
     this.dateEditWMeterPreviousDate = new DevExpress.XtraEditors.DateEdit();
     this.dateEditEMeterPreviousDate = new DevExpress.XtraEditors.DateEdit();
     this.groupRoomInfo = new DevExpress.XtraEditors.GroupControl();
     this.textEditRoomPrice = new DevExpress.XtraEditors.TextEdit();
     this.labelControlBaht0 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlMonth2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBaht1 = new DevExpress.XtraEditors.LabelControl();
     this.textEditInsurerate = new DevExpress.XtraEditors.TextEdit();
     this.textEditAdvance = new DevExpress.XtraEditors.TextEdit();
     this.labelControlInsurance = new DevExpress.XtraEditors.LabelControl();
     this.labelControlDeposit = new DevExpress.XtraEditors.LabelControl();
     this.labelControlMonthlyRate = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditFloorId = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControlFloor = new DevExpress.XtraEditors.LabelControl();
     this.textEditRoomLabel = new DevExpress.XtraEditors.TextEdit();
     this.labelControlRoomName = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditRoomTypeId = new DevExpress.XtraEditors.LookUpEdit();
     this.lookUpEditBuildingId = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControlRoomType = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBuilding = new DevExpress.XtraEditors.LabelControl();
     this.groupControlRental = new DevExpress.XtraEditors.GroupControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.textEditTenantName = new DevExpress.XtraEditors.TextEdit();
     this.labelControlSurname = new DevExpress.XtraEditors.LabelControl();
     this.labelControlName = new DevExpress.XtraEditors.LabelControl();
     this.textEditTenantSurname = new DevExpress.XtraEditors.TextEdit();
     this.labelControlTitle = new DevExpress.XtraEditors.LabelControl();
     this.textEditPrefix = new DevExpress.XtraEditors.TextEdit();
     this.groupControlCheckOut = new DevExpress.XtraEditors.GroupControl();
     this.lookUpEditContractType = new DevExpress.XtraEditors.LookUpEdit();
     this.dateEditCheckInDate = new DevExpress.XtraEditors.DateEdit();
     this.labelControlMonth = new DevExpress.XtraEditors.LabelControl();
     this.labelControlMinimum = new DevExpress.XtraEditors.LabelControl();
     this.labelControlRentType = new DevExpress.XtraEditors.LabelControl();
     this.labelControlContractDate = new DevExpress.XtraEditors.LabelControl();
     this.labelControlContractNo = new DevExpress.XtraEditors.LabelControl();
     this.textEditMinimum = new DevExpress.XtraEditors.TextEdit();
     this.textEditContractNo = new DevExpress.XtraEditors.TextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.bttPrintInvoice = new DevExpress.XtraEditors.SimpleButton();
     this.bttPrintInsurance = new DevExpress.XtraEditors.SimpleButton();
     this.textEditRoomStatus = new DevExpress.XtraEditors.TextEdit();
     this.textEditCheckInId = new DevExpress.XtraEditors.TextEdit();
     this.textEditTenantId = new DevExpress.XtraEditors.TextEdit();
     this.textEditRoomId = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.textEditRoomCode = new DevExpress.XtraEditors.TextEdit();
     this.bttEdit = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlList)).BeginInit();
     this.groupControlList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlRoom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupExpense)).BeginInit();
     this.groupExpense.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlItem)).BeginInit();
     this.groupControlItem.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewItemList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRefund.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGeneralCost)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGeneralCost)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlCalculate)).BeginInit();
     this.panelControlCalculate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditInvoiceDueDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditInvoiceDueDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPricePerDay)).BeginInit();
     this.panelControlPricePerDay.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditChargePrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLeaveDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLeaveDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditCharge.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlMeter)).BeginInit();
     this.groupControlMeter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPhonePrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEndMeter)).BeginInit();
     this.groupControlEndMeter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditWMeterPresent.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditEMeterPresent.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEndDate)).BeginInit();
     this.groupControlEndDate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPresentDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPresentDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPresentDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPresentDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditWaterMeterId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditElectricMeterId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlStartMeter)).BeginInit();
     this.groupControlStartMeter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditWMeterPreviousUnit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditEMeterPreviousUnit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlStartDate)).BeginInit();
     this.groupControlStartDate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPreviousDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPreviousDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPreviousDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPreviousDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupRoomInfo)).BeginInit();
     this.groupRoomInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditInsurerate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditAdvance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditFloorId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomLabel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditRoomTypeId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditBuildingId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlRental)).BeginInit();
     this.groupControlRental.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantSurname.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPrefix.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlCheckOut)).BeginInit();
     this.groupControlCheckOut.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditContractType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditCheckInDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditCheckInDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditMinimum.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditContractNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditCheckInId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Location = new System.Drawing.Point(7, 7);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.groupControlList);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl3);
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl1);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1296, 634);
     this.splitContainerControl2.SplitterPosition = 667;
     this.splitContainerControl2.TabIndex = 17;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlList
     //
     this.groupControlList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlList.AppearanceCaption.Options.UseFont = true;
     this.groupControlList.Controls.Add(this.gridControlRoom);
     this.groupControlList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlList.Location = new System.Drawing.Point(0, 0);
     this.groupControlList.Name = "groupControlList";
     this.groupControlList.Size = new System.Drawing.Size(667, 634);
     this.groupControlList.TabIndex = 0;
     this.groupControlList.Text = "รายการห้องที่มี่ผู้เช่าและแจ้งย้ายออก";
     //
     // gridControlRoom
     //
     this.gridControlRoom.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlRoom.Location = new System.Drawing.Point(2, 22);
     this.gridControlRoom.MainView = this.gridViewRoom;
     this.gridControlRoom.Name = "gridControlRoom";
     this.gridControlRoom.Size = new System.Drawing.Size(663, 610);
     this.gridControlRoom.TabIndex = 1;
     this.gridControlRoom.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewRoom});
     //
     // gridViewRoom
     //
     this.gridViewRoom.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.check_out_room_code,
     this.grid_check_out_room_name,
     this.grid_check_out_building_label,
     this.grid_check_out_floor_code,
     this.grid_check_out_roomtype_label,
     this.grid_check_out_room_status,
     this.grid_check_out_tenant_name,
     this.grid_check_out_tenant_surname,
     this.grid_check_out_leave_date,
     this.check_out_room_id,
     this.check_out_tenant_id,
     this.check_out_check_in_id,
     this.check_out_insurerate_rate_monthly,
     this.check_out_insurerate_rate_weekly,
     this.check_out_insurerate_rate_daily,
     this.check_out_deposite_rate_monthly,
     this.check_out_deposite_rate_weekly,
     this.check_out_deposite_rate_daily,
     this.electricity_unit_rate_monthly,
     this.electricity_unit_rate_weekly,
     this.electricity_unit_rate_daily,
     this.electricity_unit_rate_min,
     this.electricity_price_rate_min,
     this.water_unit_rate_monthly,
     this.water_unit_rate_weekly,
     this.water_unit_rate_daily,
     this.water_unit_rate_min,
     this.water_price_rate_min});
     this.gridViewRoom.GridControl = this.gridControlRoom;
     this.gridViewRoom.Name = "gridViewRoom";
     this.gridViewRoom.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridViewRoom.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridViewRoom.OptionsFind.AlwaysVisible = true;
     this.gridViewRoom.OptionsFind.ShowCloseButton = false;
     this.gridViewRoom.OptionsView.ShowGroupPanel = false;
     //
     // check_out_room_code
     //
     this.check_out_room_code.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.check_out_room_code.AppearanceHeader.Options.UseFont = true;
     this.check_out_room_code.Caption = "รหัสห้อง";
     this.check_out_room_code.FieldName = "coderef";
     this.check_out_room_code.Name = "check_out_room_code";
     this.check_out_room_code.OptionsColumn.AllowEdit = false;
     this.check_out_room_code.OptionsColumn.AllowFocus = false;
     this.check_out_room_code.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.check_out_room_code.OptionsColumn.AllowMove = false;
     //
     // grid_check_out_room_name
     //
     this.grid_check_out_room_name.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_room_name.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_room_name.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_room_name.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_room_name.Caption = "ชื่อห้อง";
     this.grid_check_out_room_name.FieldName = "room_label";
     this.grid_check_out_room_name.Name = "grid_check_out_room_name";
     this.grid_check_out_room_name.OptionsColumn.AllowEdit = false;
     this.grid_check_out_room_name.OptionsColumn.AllowFocus = false;
     this.grid_check_out_room_name.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_room_name.OptionsColumn.AllowMove = false;
     this.grid_check_out_room_name.Visible = true;
     this.grid_check_out_room_name.VisibleIndex = 0;
     this.grid_check_out_room_name.Width = 70;
     //
     // grid_check_out_building_label
     //
     this.grid_check_out_building_label.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_building_label.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_building_label.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_building_label.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_building_label.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_building_label.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_building_label.Caption = "อาคาร";
     this.grid_check_out_building_label.FieldName = "building_label";
     this.grid_check_out_building_label.Name = "grid_check_out_building_label";
     this.grid_check_out_building_label.OptionsColumn.AllowEdit = false;
     this.grid_check_out_building_label.OptionsColumn.AllowFocus = false;
     this.grid_check_out_building_label.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_building_label.OptionsColumn.AllowMove = false;
     this.grid_check_out_building_label.Visible = true;
     this.grid_check_out_building_label.VisibleIndex = 1;
     this.grid_check_out_building_label.Width = 50;
     //
     // grid_check_out_floor_code
     //
     this.grid_check_out_floor_code.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_floor_code.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_floor_code.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_floor_code.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_floor_code.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_floor_code.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_floor_code.Caption = "ชั้น";
     this.grid_check_out_floor_code.FieldName = "floor_code";
     this.grid_check_out_floor_code.Name = "grid_check_out_floor_code";
     this.grid_check_out_floor_code.OptionsColumn.AllowEdit = false;
     this.grid_check_out_floor_code.OptionsColumn.AllowFocus = false;
     this.grid_check_out_floor_code.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_floor_code.OptionsColumn.AllowMove = false;
     this.grid_check_out_floor_code.Visible = true;
     this.grid_check_out_floor_code.VisibleIndex = 2;
     this.grid_check_out_floor_code.Width = 48;
     //
     // grid_check_out_roomtype_label
     //
     this.grid_check_out_roomtype_label.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_roomtype_label.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_roomtype_label.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_roomtype_label.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_roomtype_label.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_roomtype_label.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_roomtype_label.Caption = "ประเภท";
     this.grid_check_out_roomtype_label.FieldName = "roomtype_label";
     this.grid_check_out_roomtype_label.Name = "grid_check_out_roomtype_label";
     this.grid_check_out_roomtype_label.OptionsColumn.AllowEdit = false;
     this.grid_check_out_roomtype_label.OptionsColumn.AllowFocus = false;
     this.grid_check_out_roomtype_label.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_roomtype_label.OptionsColumn.AllowMove = false;
     this.grid_check_out_roomtype_label.Visible = true;
     this.grid_check_out_roomtype_label.VisibleIndex = 3;
     this.grid_check_out_roomtype_label.Width = 60;
     //
     // grid_check_out_room_status
     //
     this.grid_check_out_room_status.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_room_status.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_room_status.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_room_status.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_room_status.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_room_status.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_room_status.Caption = "สถานะห้อง";
     this.grid_check_out_room_status.FieldName = "room_status_label";
     this.grid_check_out_room_status.Name = "grid_check_out_room_status";
     this.grid_check_out_room_status.OptionsColumn.AllowEdit = false;
     this.grid_check_out_room_status.OptionsColumn.AllowFocus = false;
     this.grid_check_out_room_status.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_room_status.OptionsColumn.AllowMove = false;
     this.grid_check_out_room_status.Visible = true;
     this.grid_check_out_room_status.VisibleIndex = 4;
     this.grid_check_out_room_status.Width = 64;
     //
     // grid_check_out_tenant_name
     //
     this.grid_check_out_tenant_name.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_tenant_name.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_tenant_name.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_tenant_name.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_tenant_name.Caption = "ชื่อ";
     this.grid_check_out_tenant_name.FieldName = "tenant_name";
     this.grid_check_out_tenant_name.Name = "grid_check_out_tenant_name";
     this.grid_check_out_tenant_name.OptionsColumn.AllowEdit = false;
     this.grid_check_out_tenant_name.OptionsColumn.AllowFocus = false;
     this.grid_check_out_tenant_name.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_tenant_name.OptionsColumn.AllowMove = false;
     this.grid_check_out_tenant_name.Visible = true;
     this.grid_check_out_tenant_name.VisibleIndex = 5;
     this.grid_check_out_tenant_name.Width = 82;
     //
     // grid_check_out_tenant_surname
     //
     this.grid_check_out_tenant_surname.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_tenant_surname.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_tenant_surname.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_tenant_surname.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_tenant_surname.Caption = "นามสกุล";
     this.grid_check_out_tenant_surname.FieldName = "tenant_surname";
     this.grid_check_out_tenant_surname.Name = "grid_check_out_tenant_surname";
     this.grid_check_out_tenant_surname.OptionsColumn.AllowEdit = false;
     this.grid_check_out_tenant_surname.OptionsColumn.AllowFocus = false;
     this.grid_check_out_tenant_surname.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_tenant_surname.OptionsColumn.AllowMove = false;
     this.grid_check_out_tenant_surname.Visible = true;
     this.grid_check_out_tenant_surname.VisibleIndex = 6;
     this.grid_check_out_tenant_surname.Width = 82;
     //
     // grid_check_out_leave_date
     //
     this.grid_check_out_leave_date.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_leave_date.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_leave_date.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_leave_date.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_leave_date.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_leave_date.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_leave_date.Caption = "วันที่ต้องการย้ายออก";
     this.grid_check_out_leave_date.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.grid_check_out_leave_date.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.grid_check_out_leave_date.FieldName = "leave_date";
     this.grid_check_out_leave_date.Name = "grid_check_out_leave_date";
     this.grid_check_out_leave_date.OptionsColumn.AllowEdit = false;
     this.grid_check_out_leave_date.OptionsColumn.AllowFocus = false;
     this.grid_check_out_leave_date.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_leave_date.OptionsColumn.AllowMove = false;
     this.grid_check_out_leave_date.Visible = true;
     this.grid_check_out_leave_date.VisibleIndex = 7;
     this.grid_check_out_leave_date.Width = 111;
     //
     // check_out_room_id
     //
     this.check_out_room_id.Caption = "room_id";
     this.check_out_room_id.FieldName = "room_id";
     this.check_out_room_id.Name = "check_out_room_id";
     //
     // check_out_tenant_id
     //
     this.check_out_tenant_id.Caption = "tenant_id";
     this.check_out_tenant_id.FieldName = "tenant_id";
     this.check_out_tenant_id.Name = "check_out_tenant_id";
     //
     // check_out_check_in_id
     //
     this.check_out_check_in_id.Caption = "check_in_id";
     this.check_out_check_in_id.FieldName = "check_in_id";
     this.check_out_check_in_id.Name = "check_out_check_in_id";
     //
     // check_out_insurerate_rate_monthly
     //
     this.check_out_insurerate_rate_monthly.Caption = "insurerate_rate_monthly";
     this.check_out_insurerate_rate_monthly.FieldName = "insurerate_rate_monthly";
     this.check_out_insurerate_rate_monthly.Name = "check_out_insurerate_rate_monthly";
     //
     // check_out_insurerate_rate_weekly
     //
     this.check_out_insurerate_rate_weekly.Caption = "check_out_insurerate_rate_weekly";
     this.check_out_insurerate_rate_weekly.FieldName = "insurerate_rate_weekly";
     this.check_out_insurerate_rate_weekly.Name = "check_out_insurerate_rate_weekly";
     //
     // check_out_insurerate_rate_daily
     //
     this.check_out_insurerate_rate_daily.Caption = "check_out_insurerate_rate_daily";
     this.check_out_insurerate_rate_daily.FieldName = "insurerate_rate_daily";
     this.check_out_insurerate_rate_daily.Name = "check_out_insurerate_rate_daily";
     //
     // check_out_deposite_rate_monthly
     //
     this.check_out_deposite_rate_monthly.Caption = "check_out_deposite_rate_monthly";
     this.check_out_deposite_rate_monthly.FieldName = "deposite_rate_monthly";
     this.check_out_deposite_rate_monthly.Name = "check_out_deposite_rate_monthly";
     //
     // check_out_deposite_rate_weekly
     //
     this.check_out_deposite_rate_weekly.Caption = "check_out_deposite_rate_weekly";
     this.check_out_deposite_rate_weekly.FieldName = "deposite_rate_weekly";
     this.check_out_deposite_rate_weekly.Name = "check_out_deposite_rate_weekly";
     //
     // check_out_deposite_rate_daily
     //
     this.check_out_deposite_rate_daily.Caption = "check_out_deposite_rate_daily";
     this.check_out_deposite_rate_daily.FieldName = "deposite_rate_daily";
     this.check_out_deposite_rate_daily.Name = "check_out_deposite_rate_daily";
     //
     // electricity_unit_rate_monthly
     //
     this.electricity_unit_rate_monthly.Caption = "electricity_unit_rate_monthly";
     this.electricity_unit_rate_monthly.FieldName = "electricity_unit_rate_monthly";
     this.electricity_unit_rate_monthly.Name = "electricity_unit_rate_monthly";
     //
     // electricity_unit_rate_weekly
     //
     this.electricity_unit_rate_weekly.Caption = "electricity_unit_rate_weekly";
     this.electricity_unit_rate_weekly.FieldName = "electricity_unit_rate_weekly";
     this.electricity_unit_rate_weekly.Name = "electricity_unit_rate_weekly";
     //
     // electricity_unit_rate_daily
     //
     this.electricity_unit_rate_daily.Caption = "electricity_unit_rate_daily";
     this.electricity_unit_rate_daily.FieldName = "electricity_unit_rate_daily";
     this.electricity_unit_rate_daily.Name = "electricity_unit_rate_daily";
     //
     // electricity_unit_rate_min
     //
     this.electricity_unit_rate_min.Caption = "electricity_unit_rate_min";
     this.electricity_unit_rate_min.FieldName = "electricity_unit_rate_min";
     this.electricity_unit_rate_min.Name = "electricity_unit_rate_min";
     //
     // electricity_price_rate_min
     //
     this.electricity_price_rate_min.Caption = "electricity_price_rate_min";
     this.electricity_price_rate_min.FieldName = "electricity_price_rate_min";
     this.electricity_price_rate_min.Name = "electricity_price_rate_min";
     //
     // water_unit_rate_monthly
     //
     this.water_unit_rate_monthly.Caption = "water_unit_rate_monthly";
     this.water_unit_rate_monthly.FieldName = "water_unit_rate_monthly";
     this.water_unit_rate_monthly.Name = "water_unit_rate_monthly";
     //
     // water_unit_rate_weekly
     //
     this.water_unit_rate_weekly.Caption = "water_unit_rate_weekly";
     this.water_unit_rate_weekly.FieldName = "water_unit_rate_weekly";
     this.water_unit_rate_weekly.Name = "water_unit_rate_weekly";
     //
     // water_unit_rate_daily
     //
     this.water_unit_rate_daily.Caption = "water_unit_rate_daily";
     this.water_unit_rate_daily.FieldName = "water_unit_rate_daily";
     this.water_unit_rate_daily.Name = "water_unit_rate_daily";
     //
     // water_unit_rate_min
     //
     this.water_unit_rate_min.Caption = "water_unit_rate_min";
     this.water_unit_rate_min.FieldName = "water_unit_rate_min";
     this.water_unit_rate_min.Name = "water_unit_rate_min";
     //
     // water_price_rate_min
     //
     this.water_price_rate_min.Caption = "water_price_rate_min";
     this.water_price_rate_min.FieldName = "water_price_rate_min";
     this.water_price_rate_min.Name = "water_price_rate_min";
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.xtraScrollableControl1);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(624, 568);
     this.panelControl3.TabIndex = 12;
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.groupExpense);
     this.xtraScrollableControl1.Controls.Add(this.panelControlCalculate);
     this.xtraScrollableControl1.Controls.Add(this.groupControlMeter);
     this.xtraScrollableControl1.Controls.Add(this.groupRoomInfo);
     this.xtraScrollableControl1.Controls.Add(this.groupControlRental);
     this.xtraScrollableControl1.Controls.Add(this.groupControlCheckOut);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(624, 568);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // groupExpense
     //
     this.groupExpense.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupExpense.AppearanceCaption.Options.UseFont = true;
     this.groupExpense.Controls.Add(this.groupControlItem);
     this.groupExpense.Controls.Add(this.panelControl4);
     this.groupExpense.Controls.Add(this.panelControl2);
     this.groupExpense.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupExpense.Location = new System.Drawing.Point(0, 612);
     this.groupExpense.Name = "groupExpense";
     this.groupExpense.Size = new System.Drawing.Size(607, 347);
     this.groupExpense.TabIndex = 367;
     this.groupExpense.Text = "รายการค่าใช้จ่ายประจำเดือน";
     //
     // groupControlItem
     //
     this.groupControlItem.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlItem.AppearanceCaption.Options.UseFont = true;
     this.groupControlItem.Controls.Add(this.gridControlItem);
     this.groupControlItem.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlItem.Location = new System.Drawing.Point(2, 138);
     this.groupControlItem.Name = "groupControlItem";
     this.groupControlItem.Size = new System.Drawing.Size(603, 147);
     this.groupControlItem.TabIndex = 316;
     this.groupControlItem.Text = "รายการค่าใช้จ่ายเพิ่มเติม";
     //
     // gridControlItem
     //
     this.gridControlItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlItem.Location = new System.Drawing.Point(2, 22);
     this.gridControlItem.MainView = this.gridViewItemList;
     this.gridControlItem.Name = "gridControlItem";
     this.gridControlItem.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.gridControlItem.Size = new System.Drawing.Size(599, 123);
     this.gridControlItem.TabIndex = 284;
     this.gridControlItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewItemList});
     //
     // gridViewItemList
     //
     this.gridViewItemList.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewItemList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumNo,
     this.colInvoiceItemName,
     this.gridColumnAmount,
     this.gridColumnAmountPerUnit,
     this.colInvoiceItemPrice,
     this.gridColumnVat,
     this.gridColumnVating,
     this.colInvoiceItemId,
     this.gridColumnItemNetPrice});
     this.gridViewItemList.GridControl = this.gridControlItem;
     this.gridViewItemList.Name = "gridViewItemList";
     this.gridViewItemList.OptionsView.ShowGroupPanel = false;
     //
     // gridColumNo
     //
     this.gridColumNo.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumNo.AppearanceHeader.Options.UseFont = true;
     this.gridColumNo.Caption = "ลำดับ";
     this.gridColumNo.FieldName = "order";
     this.gridColumNo.Name = "gridColumNo";
     this.gridColumNo.OptionsColumn.AllowEdit = false;
     this.gridColumNo.OptionsColumn.AllowFocus = false;
     this.gridColumNo.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumNo.OptionsColumn.AllowMove = false;
     this.gridColumNo.OptionsColumn.FixedWidth = true;
     this.gridColumNo.OptionsColumn.ReadOnly = true;
     this.gridColumNo.OptionsColumn.ShowCaption = false;
     this.gridColumNo.Visible = true;
     this.gridColumNo.VisibleIndex = 0;
     this.gridColumNo.Width = 39;
     //
     // colInvoiceItemName
     //
     this.colInvoiceItemName.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colInvoiceItemName.AppearanceHeader.Options.UseFont = true;
     this.colInvoiceItemName.Caption = "รายการ";
     this.colInvoiceItemName.FieldName = "item_name";
     this.colInvoiceItemName.Name = "colInvoiceItemName";
     this.colInvoiceItemName.OptionsColumn.AllowEdit = false;
     this.colInvoiceItemName.OptionsColumn.AllowFocus = false;
     this.colInvoiceItemName.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceItemName.OptionsColumn.AllowMove = false;
     this.colInvoiceItemName.OptionsColumn.FixedWidth = true;
     this.colInvoiceItemName.OptionsColumn.ReadOnly = true;
     this.colInvoiceItemName.OptionsColumn.ShowCaption = false;
     this.colInvoiceItemName.Visible = true;
     this.colInvoiceItemName.VisibleIndex = 1;
     this.colInvoiceItemName.Width = 63;
     //
     // gridColumnAmount
     //
     this.gridColumnAmount.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnAmount.AppearanceHeader.Options.UseFont = true;
     this.gridColumnAmount.Caption = "จำนวน";
     this.gridColumnAmount.DisplayFormat.FormatString = "n2";
     this.gridColumnAmount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnAmount.FieldName = "item_amount";
     this.gridColumnAmount.Name = "gridColumnAmount";
     this.gridColumnAmount.OptionsColumn.AllowEdit = false;
     this.gridColumnAmount.OptionsColumn.AllowFocus = false;
     this.gridColumnAmount.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnAmount.OptionsColumn.AllowMove = false;
     this.gridColumnAmount.OptionsColumn.FixedWidth = true;
     this.gridColumnAmount.OptionsColumn.ReadOnly = true;
     this.gridColumnAmount.OptionsColumn.ShowCaption = false;
     this.gridColumnAmount.Visible = true;
     this.gridColumnAmount.VisibleIndex = 2;
     this.gridColumnAmount.Width = 63;
     //
     // gridColumnAmountPerUnit
     //
     this.gridColumnAmountPerUnit.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnAmountPerUnit.AppearanceHeader.Options.UseFont = true;
     this.gridColumnAmountPerUnit.Caption = "จำนวนเงินต่อหน่วย";
     this.gridColumnAmountPerUnit.DisplayFormat.FormatString = "n2";
     this.gridColumnAmountPerUnit.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnAmountPerUnit.FieldName = "item_priceperunit";
     this.gridColumnAmountPerUnit.Name = "gridColumnAmountPerUnit";
     this.gridColumnAmountPerUnit.OptionsColumn.AllowEdit = false;
     this.gridColumnAmountPerUnit.OptionsColumn.AllowFocus = false;
     this.gridColumnAmountPerUnit.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnAmountPerUnit.OptionsColumn.AllowMove = false;
     this.gridColumnAmountPerUnit.OptionsColumn.FixedWidth = true;
     this.gridColumnAmountPerUnit.OptionsColumn.ReadOnly = true;
     this.gridColumnAmountPerUnit.OptionsColumn.ShowCaption = false;
     this.gridColumnAmountPerUnit.Visible = true;
     this.gridColumnAmountPerUnit.VisibleIndex = 3;
     this.gridColumnAmountPerUnit.Width = 134;
     //
     // colInvoiceItemPrice
     //
     this.colInvoiceItemPrice.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colInvoiceItemPrice.AppearanceHeader.Options.UseFont = true;
     this.colInvoiceItemPrice.Caption = "จำนวนเงินรวม";
     this.colInvoiceItemPrice.DisplayFormat.FormatString = "n2";
     this.colInvoiceItemPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colInvoiceItemPrice.FieldName = "item_sumprice";
     this.colInvoiceItemPrice.Name = "colInvoiceItemPrice";
     this.colInvoiceItemPrice.OptionsColumn.AllowEdit = false;
     this.colInvoiceItemPrice.OptionsColumn.AllowFocus = false;
     this.colInvoiceItemPrice.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceItemPrice.OptionsColumn.AllowMove = false;
     this.colInvoiceItemPrice.OptionsColumn.FixedWidth = true;
     this.colInvoiceItemPrice.OptionsColumn.ReadOnly = true;
     this.colInvoiceItemPrice.OptionsColumn.ShowCaption = false;
     this.colInvoiceItemPrice.Visible = true;
     this.colInvoiceItemPrice.VisibleIndex = 4;
     this.colInvoiceItemPrice.Width = 134;
     //
     // gridColumnVat
     //
     this.gridColumnVat.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnVat.AppearanceHeader.Options.UseFont = true;
     this.gridColumnVat.Caption = "ภาษี";
     this.gridColumnVat.DisplayFormat.FormatString = "n2";
     this.gridColumnVat.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnVat.FieldName = "item_vatprice";
     this.gridColumnVat.Name = "gridColumnVat";
     this.gridColumnVat.OptionsColumn.AllowEdit = false;
     this.gridColumnVat.OptionsColumn.AllowFocus = false;
     this.gridColumnVat.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnVat.OptionsColumn.AllowMove = false;
     this.gridColumnVat.OptionsColumn.FixedWidth = true;
     this.gridColumnVat.OptionsColumn.ReadOnly = true;
     this.gridColumnVat.OptionsColumn.ShowCaption = false;
     this.gridColumnVat.Visible = true;
     this.gridColumnVat.VisibleIndex = 5;
     this.gridColumnVat.Width = 63;
     //
     // gridColumnVating
     //
     this.gridColumnVating.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnVating.AppearanceHeader.Options.UseFont = true;
     this.gridColumnVating.Caption = "คิดภาษี";
     this.gridColumnVating.FieldName = "item_vat_bool";
     this.gridColumnVating.Name = "gridColumnVating";
     this.gridColumnVating.OptionsColumn.AllowEdit = false;
     this.gridColumnVating.OptionsColumn.AllowFocus = false;
     this.gridColumnVating.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnVating.OptionsColumn.AllowMove = false;
     this.gridColumnVating.OptionsColumn.FixedWidth = true;
     this.gridColumnVating.OptionsColumn.ReadOnly = true;
     this.gridColumnVating.OptionsColumn.ShowCaption = false;
     this.gridColumnVating.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnVating.Visible = true;
     this.gridColumnVating.VisibleIndex = 7;
     this.gridColumnVating.Width = 67;
     //
     // colInvoiceItemId
     //
     this.colInvoiceItemId.Caption = "ItemId";
     this.colInvoiceItemId.FieldName = "item_id";
     this.colInvoiceItemId.Name = "colInvoiceItemId";
     this.colInvoiceItemId.OptionsColumn.AllowEdit = false;
     this.colInvoiceItemId.OptionsColumn.AllowFocus = false;
     //
     // gridColumnItemNetPrice
     //
     this.gridColumnItemNetPrice.Caption = "จำนวนเงินสุทธิ";
     this.gridColumnItemNetPrice.DisplayFormat.FormatString = "n2";
     this.gridColumnItemNetPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnItemNetPrice.FieldName = "item_netprice";
     this.gridColumnItemNetPrice.Name = "gridColumnItemNetPrice";
     this.gridColumnItemNetPrice.OptionsColumn.AllowEdit = false;
     this.gridColumnItemNetPrice.OptionsColumn.AllowFocus = false;
     this.gridColumnItemNetPrice.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnItemNetPrice.OptionsColumn.AllowMove = false;
     this.gridColumnItemNetPrice.OptionsColumn.AllowSize = false;
     this.gridColumnItemNetPrice.OptionsColumn.FixedWidth = true;
     this.gridColumnItemNetPrice.OptionsColumn.ReadOnly = true;
     this.gridColumnItemNetPrice.OptionsColumn.ShowCaption = false;
     this.gridColumnItemNetPrice.Visible = true;
     this.gridColumnItemNetPrice.VisibleIndex = 6;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // panelControl4
     //
     this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.bttRemoveItem);
     this.panelControl4.Controls.Add(this.bttAddItem);
     this.panelControl4.Controls.Add(this.labelControlBaht3);
     this.panelControl4.Controls.Add(this.textEditRefund);
     this.panelControl4.Controls.Add(this.labelControlRefund);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl4.Location = new System.Drawing.Point(2, 289);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(603, 56);
     this.panelControl4.TabIndex = 315;
     //
     // bttRemoveItem
     //
     this.bttRemoveItem.Location = new System.Drawing.Point(105, 19);
     this.bttRemoveItem.Name = "bttRemoveItem";
     this.bttRemoveItem.Size = new System.Drawing.Size(90, 25);
     this.bttRemoveItem.TabIndex = 311;
     this.bttRemoveItem.Text = "ลบ";
     //
     // bttAddItem
     //
     this.bttAddItem.Location = new System.Drawing.Point(9, 19);
     this.bttAddItem.Name = "bttAddItem";
     this.bttAddItem.Size = new System.Drawing.Size(90, 25);
     this.bttAddItem.TabIndex = 310;
     this.bttAddItem.Text = "เพิ่ม";
     //
     // labelControlBaht3
     //
     this.labelControlBaht3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlBaht3.Location = new System.Drawing.Point(570, 31);
     this.labelControlBaht3.Name = "labelControlBaht3";
     this.labelControlBaht3.Size = new System.Drawing.Size(20, 13);
     this.labelControlBaht3.TabIndex = 313;
     this.labelControlBaht3.Text = "บาท";
     //
     // textEditRefund
     //
     this.textEditRefund.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEditRefund.EditValue = "";
     this.textEditRefund.Enabled = false;
     this.textEditRefund.Location = new System.Drawing.Point(359, 24);
     this.textEditRefund.Name = "textEditRefund";
     this.textEditRefund.Properties.Mask.EditMask = "n2";
     this.textEditRefund.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditRefund.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditRefund.Size = new System.Drawing.Size(205, 20);
     this.textEditRefund.TabIndex = 309;
     //
     // labelControlRefund
     //
     this.labelControlRefund.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlRefund.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRefund.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRefund.Location = new System.Drawing.Point(267, 31);
     this.labelControlRefund.Name = "labelControlRefund";
     this.labelControlRefund.Size = new System.Drawing.Size(86, 13);
     this.labelControlRefund.TabIndex = 312;
     this.labelControlRefund.Text = "จำนวนเงินคืน :";
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.gridControlGeneralCost);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl2.Location = new System.Drawing.Point(2, 22);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(603, 116);
     this.panelControl2.TabIndex = 314;
     //
     // gridControlGeneralCost
     //
     this.gridControlGeneralCost.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlGeneralCost.Enabled = false;
     this.gridControlGeneralCost.Location = new System.Drawing.Point(2, 2);
     this.gridControlGeneralCost.MainView = this.gridViewGeneralCost;
     this.gridControlGeneralCost.Name = "gridControlGeneralCost";
     this.gridControlGeneralCost.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit2});
     this.gridControlGeneralCost.Size = new System.Drawing.Size(599, 112);
     this.gridControlGeneralCost.TabIndex = 285;
     this.gridControlGeneralCost.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewGeneralCost,
     this.gridView1});
     //
     // gridViewGeneralCost
     //
     this.gridViewGeneralCost.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewGeneralCost.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumnNetPrice});
     this.gridViewGeneralCost.GridControl = this.gridControlGeneralCost;
     this.gridViewGeneralCost.Name = "gridViewGeneralCost";
     this.gridViewGeneralCost.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn1.AppearanceHeader.Options.UseFont = true;
     this.gridColumn1.Caption = "ลำดับ";
     this.gridColumn1.FieldName = "order";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.AllowFocus = false;
     this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsColumn.AllowMove = false;
     this.gridColumn1.OptionsColumn.FixedWidth = true;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 39;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn2.AppearanceHeader.Options.UseFont = true;
     this.gridColumn2.Caption = "รายการ";
     this.gridColumn2.FieldName = "item_name";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsColumn.AllowFocus = false;
     this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.OptionsColumn.AllowMove = false;
     this.gridColumn2.OptionsColumn.FixedWidth = true;
     this.gridColumn2.OptionsColumn.ReadOnly = true;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 63;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn3.AppearanceHeader.Options.UseFont = true;
     this.gridColumn3.Caption = "จำนวน";
     this.gridColumn3.DisplayFormat.FormatString = "n2";
     this.gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn3.FieldName = "item_amount";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.AllowFocus = false;
     this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsColumn.AllowMove = false;
     this.gridColumn3.OptionsColumn.FixedWidth = true;
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 63;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn4.AppearanceHeader.Options.UseFont = true;
     this.gridColumn4.Caption = "จำนวนเงินต่อหน่วย";
     this.gridColumn4.DisplayFormat.FormatString = "n2";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn4.FieldName = "item_priceperunit";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsColumn.AllowFocus = false;
     this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn4.OptionsColumn.AllowMove = false;
     this.gridColumn4.OptionsColumn.FixedWidth = true;
     this.gridColumn4.OptionsColumn.ReadOnly = true;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 134;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn5.AppearanceHeader.Options.UseFont = true;
     this.gridColumn5.Caption = "จำนวนเงินรวม";
     this.gridColumn5.DisplayFormat.FormatString = "n2";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "item_sumprice";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.AllowFocus = false;
     this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.OptionsColumn.AllowMove = false;
     this.gridColumn5.OptionsColumn.FixedWidth = true;
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 134;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn6.AppearanceHeader.Options.UseFont = true;
     this.gridColumn6.Caption = "ภาษี";
     this.gridColumn6.DisplayFormat.FormatString = "n2";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "item_vatprice";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsColumn.AllowFocus = false;
     this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.OptionsColumn.AllowMove = false;
     this.gridColumn6.OptionsColumn.FixedWidth = true;
     this.gridColumn6.OptionsColumn.ReadOnly = true;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 63;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn7.AppearanceHeader.Options.UseFont = true;
     this.gridColumn7.Caption = "คิดภาษี";
     this.gridColumn7.FieldName = "item_vat_bool";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.AllowFocus = false;
     this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.OptionsColumn.AllowMove = false;
     this.gridColumn7.OptionsColumn.FixedWidth = true;
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 7;
     this.gridColumn7.Width = 67;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "ItemId";
     this.gridColumn8.FieldName = "item_id";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowEdit = false;
     this.gridColumn8.OptionsColumn.AllowFocus = false;
     //
     // gridColumnNetPrice
     //
     this.gridColumnNetPrice.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnNetPrice.AppearanceHeader.Options.UseFont = true;
     this.gridColumnNetPrice.Caption = "จำนวนเงินสุทธิ";
     this.gridColumnNetPrice.DisplayFormat.FormatString = "n2";
     this.gridColumnNetPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnNetPrice.FieldName = "item_netprice";
     this.gridColumnNetPrice.Name = "gridColumnNetPrice";
     this.gridColumnNetPrice.OptionsColumn.AllowEdit = false;
     this.gridColumnNetPrice.OptionsColumn.AllowFocus = false;
     this.gridColumnNetPrice.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnNetPrice.OptionsColumn.AllowMove = false;
     this.gridColumnNetPrice.OptionsColumn.AllowSize = false;
     this.gridColumnNetPrice.OptionsColumn.FixedWidth = true;
     this.gridColumnNetPrice.OptionsColumn.ReadOnly = true;
     this.gridColumnNetPrice.Visible = true;
     this.gridColumnNetPrice.VisibleIndex = 6;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControlGeneralCost;
     this.gridView1.Name = "gridView1";
     //
     // panelControlCalculate
     //
     this.panelControlCalculate.Controls.Add(this.dateEditInvoiceDueDate);
     this.panelControlCalculate.Controls.Add(this.panelControlPricePerDay);
     this.panelControlCalculate.Controls.Add(this.labelControlTipMSG);
     this.panelControlCalculate.Controls.Add(this.dateEditLeaveDate);
     this.panelControlCalculate.Controls.Add(this.bttCalculate);
     this.panelControlCalculate.Controls.Add(this.labelControlRentalPrice);
     this.panelControlCalculate.Controls.Add(this.labelControlCheckOutDate);
     this.panelControlCalculate.Controls.Add(this.lookUpEditCharge);
     this.panelControlCalculate.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControlCalculate.Location = new System.Drawing.Point(0, 470);
     this.panelControlCalculate.Name = "panelControlCalculate";
     this.panelControlCalculate.Size = new System.Drawing.Size(607, 142);
     this.panelControlCalculate.TabIndex = 366;
     //
     // dateEditInvoiceDueDate
     //
     this.dateEditInvoiceDueDate.EditValue = new System.DateTime(2013, 3, 15, 0, 0, 0, 0);
     this.dateEditInvoiceDueDate.Enabled = false;
     this.dateEditInvoiceDueDate.Location = new System.Drawing.Point(457, 72);
     this.dateEditInvoiceDueDate.Name = "dateEditInvoiceDueDate";
     this.dateEditInvoiceDueDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditInvoiceDueDate.Properties.DisplayFormat.FormatString = "dd MMMM yyyy";
     this.dateEditInvoiceDueDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditInvoiceDueDate.Properties.EditFormat.FormatString = "dd MMMM yyyy";
     this.dateEditInvoiceDueDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditInvoiceDueDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditInvoiceDueDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditInvoiceDueDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditInvoiceDueDate.Size = new System.Drawing.Size(86, 20);
     this.dateEditInvoiceDueDate.TabIndex = 458;
     this.dateEditInvoiceDueDate.Visible = false;
     //
     // panelControlPricePerDay
     //
     this.panelControlPricePerDay.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlPricePerDay.Controls.Add(this.textEditChargePrice);
     this.panelControlPricePerDay.Controls.Add(this.labelControlPrice);
     this.panelControlPricePerDay.Controls.Add(this.labelControlBaht2);
     this.panelControlPricePerDay.Location = new System.Drawing.Point(11, 63);
     this.panelControlPricePerDay.Name = "panelControlPricePerDay";
     this.panelControlPricePerDay.Size = new System.Drawing.Size(323, 30);
     this.panelControlPricePerDay.TabIndex = 457;
     this.panelControlPricePerDay.Visible = false;
     //
     // textEditChargePrice
     //
     this.textEditChargePrice.EditValue = "0.00";
     this.textEditChargePrice.Enabled = false;
     this.textEditChargePrice.Location = new System.Drawing.Point(94, 5);
     this.textEditChargePrice.Name = "textEditChargePrice";
     this.textEditChargePrice.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditChargePrice.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditChargePrice.Properties.Mask.BeepOnError = true;
     this.textEditChargePrice.Properties.Mask.EditMask = "0*([0-9]{1,7}|1000000)|0*([0-9]{1,7}|1000000)\\.([0-9]){2}";
     this.textEditChargePrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditChargePrice.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditChargePrice.Size = new System.Drawing.Size(156, 20);
     this.textEditChargePrice.TabIndex = 455;
     //
     // labelControlPrice
     //
     this.labelControlPrice.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlPrice.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlPrice.Location = new System.Drawing.Point(0, 12);
     this.labelControlPrice.Name = "labelControlPrice";
     this.labelControlPrice.Size = new System.Drawing.Size(92, 13);
     this.labelControlPrice.TabIndex = 454;
     this.labelControlPrice.Text = "ราคา :";
     //
     // labelControlBaht2
     //
     this.labelControlBaht2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht2.Location = new System.Drawing.Point(256, 12);
     this.labelControlBaht2.Name = "labelControlBaht2";
     this.labelControlBaht2.Size = new System.Drawing.Size(53, 13);
     this.labelControlBaht2.TabIndex = 453;
     this.labelControlBaht2.Text = "บาท/วัน";
     //
     // labelControlTipMSG
     //
     this.labelControlTipMSG.Appearance.ForeColor = System.Drawing.Color.Green;
     this.labelControlTipMSG.Location = new System.Drawing.Point(109, 78);
     this.labelControlTipMSG.Name = "labelControlTipMSG";
     this.labelControlTipMSG.Padding = new System.Windows.Forms.Padding(10);
     this.labelControlTipMSG.Size = new System.Drawing.Size(151, 33);
     this.labelControlTipMSG.TabIndex = 456;
     this.labelControlTipMSG.Text = "คิดเต็มเดือนตามประเภทห้อง";
     //
     // dateEditLeaveDate
     //
     this.dateEditLeaveDate.EditValue = new System.DateTime(2013, 3, 3, 23, 51, 3, 0);
     this.dateEditLeaveDate.Enabled = false;
     this.dateEditLeaveDate.Location = new System.Drawing.Point(107, 11);
     this.dateEditLeaveDate.Name = "dateEditLeaveDate";
     this.dateEditLeaveDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditLeaveDate.Properties.DisplayFormat.FormatString = "dd MMMM yyyy";
     this.dateEditLeaveDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditLeaveDate.Properties.EditFormat.FormatString = "dd MMMM yyyy";
     this.dateEditLeaveDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditLeaveDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditLeaveDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditLeaveDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditLeaveDate.Size = new System.Drawing.Size(157, 20);
     this.dateEditLeaveDate.TabIndex = 448;
     //
     // bttCalculate
     //
     this.bttCalculate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.bttCalculate.Appearance.Options.UseFont = true;
     this.bttCalculate.Enabled = false;
     this.bttCalculate.Location = new System.Drawing.Point(448, 14);
     this.bttCalculate.Name = "bttCalculate";
     this.bttCalculate.Size = new System.Drawing.Size(105, 39);
     this.bttCalculate.TabIndex = 449;
     this.bttCalculate.Text = "คำนวนค่าใช้จ่าย";
     //
     // labelControlRentalPrice
     //
     this.labelControlRentalPrice.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRentalPrice.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRentalPrice.Location = new System.Drawing.Point(20, 44);
     this.labelControlRentalPrice.Name = "labelControlRentalPrice";
     this.labelControlRentalPrice.Size = new System.Drawing.Size(84, 13);
     this.labelControlRentalPrice.TabIndex = 452;
     this.labelControlRentalPrice.Text = "คิดค่าห้อง :";
     //
     // labelControlCheckOutDate
     //
     this.labelControlCheckOutDate.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlCheckOutDate.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlCheckOutDate.Location = new System.Drawing.Point(20, 18);
     this.labelControlCheckOutDate.Name = "labelControlCheckOutDate";
     this.labelControlCheckOutDate.Size = new System.Drawing.Size(84, 13);
     this.labelControlCheckOutDate.TabIndex = 451;
     this.labelControlCheckOutDate.Text = "วันที่ย้ายออก :";
     //
     // lookUpEditCharge
     //
     this.lookUpEditCharge.Enabled = false;
     this.lookUpEditCharge.Location = new System.Drawing.Point(107, 37);
     this.lookUpEditCharge.Name = "lookUpEditCharge";
     this.lookUpEditCharge.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditCharge.Size = new System.Drawing.Size(156, 20);
     this.lookUpEditCharge.TabIndex = 105;
     //
     // groupControlMeter
     //
     this.groupControlMeter.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlMeter.AppearanceCaption.Options.UseFont = true;
     this.groupControlMeter.Controls.Add(this.textEditPhonePrice);
     this.groupControlMeter.Controls.Add(this.groupControlEndMeter);
     this.groupControlMeter.Controls.Add(this.groupControlEndDate);
     this.groupControlMeter.Controls.Add(this.dateEditPhoneStart);
     this.groupControlMeter.Controls.Add(this.dateEditPhoneEnd);
     this.groupControlMeter.Controls.Add(this.textEditWaterMeterId);
     this.groupControlMeter.Controls.Add(this.textEditElectricMeterId);
     this.groupControlMeter.Controls.Add(this.groupControlStartMeter);
     this.groupControlMeter.Controls.Add(this.labelControlPhoneMeter);
     this.groupControlMeter.Controls.Add(this.labelControlTelAmount);
     this.groupControlMeter.Controls.Add(this.labelControlTelEnd);
     this.groupControlMeter.Controls.Add(this.labelControlTelStart);
     this.groupControlMeter.Controls.Add(this.labelControlWaterMeter);
     this.groupControlMeter.Controls.Add(this.labelControlElectricMeter);
     this.groupControlMeter.Controls.Add(this.groupControlStartDate);
     this.groupControlMeter.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlMeter.Location = new System.Drawing.Point(0, 304);
     this.groupControlMeter.Name = "groupControlMeter";
     this.groupControlMeter.Size = new System.Drawing.Size(607, 166);
     this.groupControlMeter.TabIndex = 354;
     this.groupControlMeter.Text = "บันทึกค่าสาธารณูปโภค";
     //
     // textEditPhonePrice
     //
     this.textEditPhonePrice.EditValue = "0.000";
     this.textEditPhonePrice.Enabled = false;
     this.textEditPhonePrice.Location = new System.Drawing.Point(337, 125);
     this.textEditPhonePrice.Name = "textEditPhonePrice";
     this.textEditPhonePrice.Properties.DisplayFormat.FormatString = "n2";
     this.textEditPhonePrice.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditPhonePrice.Properties.EditFormat.FormatString = "n2";
     this.textEditPhonePrice.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditPhonePrice.Properties.Mask.EditMask = "n2";
     this.textEditPhonePrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditPhonePrice.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditPhonePrice.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditPhonePrice.Size = new System.Drawing.Size(94, 20);
     this.textEditPhonePrice.TabIndex = 357;
     //
     // groupControlEndMeter
     //
     this.groupControlEndMeter.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlEndMeter.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlEndMeter.Controls.Add(this.textEditWMeterPresent);
     this.groupControlEndMeter.Controls.Add(this.textEditEMeterPresent);
     this.groupControlEndMeter.Location = new System.Drawing.Point(331, 25);
     this.groupControlEndMeter.Name = "groupControlEndMeter";
     this.groupControlEndMeter.Size = new System.Drawing.Size(111, 82);
     this.groupControlEndMeter.TabIndex = 389;
     this.groupControlEndMeter.Text = "เลขมิเตอร์ล่าสุด";
     //
     // textEditWMeterPresent
     //
     this.textEditWMeterPresent.EditValue = "0.000";
     this.textEditWMeterPresent.Enabled = false;
     this.textEditWMeterPresent.Location = new System.Drawing.Point(6, 51);
     this.textEditWMeterPresent.Name = "textEditWMeterPresent";
     this.textEditWMeterPresent.Properties.DisplayFormat.FormatString = "n3";
     this.textEditWMeterPresent.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditWMeterPresent.Properties.EditFormat.FormatString = "n3";
     this.textEditWMeterPresent.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditWMeterPresent.Properties.Mask.EditMask = "n2";
     this.textEditWMeterPresent.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditWMeterPresent.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditWMeterPresent.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditWMeterPresent.Size = new System.Drawing.Size(94, 20);
     this.textEditWMeterPresent.TabIndex = 357;
     //
     // textEditEMeterPresent
     //
     this.textEditEMeterPresent.EditValue = "0.000";
     this.textEditEMeterPresent.Enabled = false;
     this.textEditEMeterPresent.Location = new System.Drawing.Point(6, 25);
     this.textEditEMeterPresent.Name = "textEditEMeterPresent";
     this.textEditEMeterPresent.Properties.DisplayFormat.FormatString = "n3";
     this.textEditEMeterPresent.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditEMeterPresent.Properties.EditFormat.FormatString = "n3";
     this.textEditEMeterPresent.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditEMeterPresent.Properties.Mask.EditMask = "n2";
     this.textEditEMeterPresent.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditEMeterPresent.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditEMeterPresent.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditEMeterPresent.Size = new System.Drawing.Size(94, 20);
     this.textEditEMeterPresent.TabIndex = 356;
     //
     // groupControlEndDate
     //
     this.groupControlEndDate.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlEndDate.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlEndDate.Controls.Add(this.dateEditWMeterPresentDate);
     this.groupControlEndDate.Controls.Add(this.dateEditEMeterPresentDate);
     this.groupControlEndDate.Location = new System.Drawing.Point(448, 25);
     this.groupControlEndDate.Name = "groupControlEndDate";
     this.groupControlEndDate.Size = new System.Drawing.Size(105, 82);
     this.groupControlEndDate.TabIndex = 388;
     this.groupControlEndDate.Text = "วันที่บันทึก";
     //
     // dateEditWMeterPresentDate
     //
     this.dateEditWMeterPresentDate.EditValue = new System.DateTime(2013, 3, 3, 23, 56, 50, 0);
     this.dateEditWMeterPresentDate.Enabled = false;
     this.dateEditWMeterPresentDate.Location = new System.Drawing.Point(5, 51);
     this.dateEditWMeterPresentDate.Name = "dateEditWMeterPresentDate";
     this.dateEditWMeterPresentDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditWMeterPresentDate.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditWMeterPresentDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditWMeterPresentDate.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditWMeterPresentDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditWMeterPresentDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditWMeterPresentDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditWMeterPresentDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditWMeterPresentDate.Size = new System.Drawing.Size(91, 20);
     this.dateEditWMeterPresentDate.TabIndex = 371;
     //
     // dateEditEMeterPresentDate
     //
     this.dateEditEMeterPresentDate.EditValue = new System.DateTime(2013, 3, 3, 23, 56, 50, 0);
     this.dateEditEMeterPresentDate.Enabled = false;
     this.dateEditEMeterPresentDate.Location = new System.Drawing.Point(5, 25);
     this.dateEditEMeterPresentDate.Name = "dateEditEMeterPresentDate";
     this.dateEditEMeterPresentDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditEMeterPresentDate.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditEMeterPresentDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEMeterPresentDate.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditEMeterPresentDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEMeterPresentDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditEMeterPresentDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditEMeterPresentDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditEMeterPresentDate.Size = new System.Drawing.Size(91, 20);
     this.dateEditEMeterPresentDate.TabIndex = 370;
     //
     // dateEditPhoneStart
     //
     this.dateEditPhoneStart.EditValue = new System.DateTime(2013, 3, 3, 0, 0, 0, 0);
     this.dateEditPhoneStart.Enabled = false;
     this.dateEditPhoneStart.Location = new System.Drawing.Point(113, 125);
     this.dateEditPhoneStart.Name = "dateEditPhoneStart";
     this.dateEditPhoneStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditPhoneStart.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditPhoneStart.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditPhoneStart.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditPhoneStart.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditPhoneStart.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditPhoneStart.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditPhoneStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditPhoneStart.Size = new System.Drawing.Size(94, 20);
     this.dateEditPhoneStart.TabIndex = 372;
     //
     // dateEditPhoneEnd
     //
     this.dateEditPhoneEnd.EditValue = new System.DateTime(2013, 3, 3, 0, 0, 0, 0);
     this.dateEditPhoneEnd.Enabled = false;
     this.dateEditPhoneEnd.Location = new System.Drawing.Point(224, 125);
     this.dateEditPhoneEnd.Name = "dateEditPhoneEnd";
     this.dateEditPhoneEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditPhoneEnd.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditPhoneEnd.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditPhoneEnd.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditPhoneEnd.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditPhoneEnd.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditPhoneEnd.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditPhoneEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditPhoneEnd.Size = new System.Drawing.Size(91, 20);
     this.dateEditPhoneEnd.TabIndex = 372;
     //
     // textEditWaterMeterId
     //
     this.textEditWaterMeterId.EditValue = 0;
     this.textEditWaterMeterId.Enabled = false;
     this.textEditWaterMeterId.Location = new System.Drawing.Point(58, 25);
     this.textEditWaterMeterId.Name = "textEditWaterMeterId";
     this.textEditWaterMeterId.Properties.Mask.EditMask = "([0-9]*)";
     this.textEditWaterMeterId.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditWaterMeterId.Size = new System.Drawing.Size(21, 20);
     this.textEditWaterMeterId.TabIndex = 389;
     this.textEditWaterMeterId.Visible = false;
     //
     // textEditElectricMeterId
     //
     this.textEditElectricMeterId.EditValue = 0;
     this.textEditElectricMeterId.Enabled = false;
     this.textEditElectricMeterId.Location = new System.Drawing.Point(85, 25);
     this.textEditElectricMeterId.Name = "textEditElectricMeterId";
     this.textEditElectricMeterId.Properties.Mask.EditMask = "([0-9]*)";
     this.textEditElectricMeterId.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditElectricMeterId.Size = new System.Drawing.Size(20, 20);
     this.textEditElectricMeterId.TabIndex = 388;
     this.textEditElectricMeterId.Visible = false;
     //
     // groupControlStartMeter
     //
     this.groupControlStartMeter.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlStartMeter.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlStartMeter.Controls.Add(this.textEditWMeterPreviousUnit);
     this.groupControlStartMeter.Controls.Add(this.textEditEMeterPreviousUnit);
     this.groupControlStartMeter.Location = new System.Drawing.Point(107, 25);
     this.groupControlStartMeter.Name = "groupControlStartMeter";
     this.groupControlStartMeter.Size = new System.Drawing.Size(111, 82);
     this.groupControlStartMeter.TabIndex = 387;
     this.groupControlStartMeter.Text = "เลขมิเตอร์ครั้งก่อน";
     //
     // textEditWMeterPreviousUnit
     //
     this.textEditWMeterPreviousUnit.EditValue = "0.000";
     this.textEditWMeterPreviousUnit.Enabled = false;
     this.textEditWMeterPreviousUnit.Location = new System.Drawing.Point(6, 51);
     this.textEditWMeterPreviousUnit.Name = "textEditWMeterPreviousUnit";
     this.textEditWMeterPreviousUnit.Properties.DisplayFormat.FormatString = "n3";
     this.textEditWMeterPreviousUnit.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditWMeterPreviousUnit.Properties.EditFormat.FormatString = "n3";
     this.textEditWMeterPreviousUnit.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditWMeterPreviousUnit.Properties.Mask.EditMask = "n2";
     this.textEditWMeterPreviousUnit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditWMeterPreviousUnit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditWMeterPreviousUnit.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditWMeterPreviousUnit.Size = new System.Drawing.Size(94, 20);
     this.textEditWMeterPreviousUnit.TabIndex = 357;
     //
     // textEditEMeterPreviousUnit
     //
     this.textEditEMeterPreviousUnit.EditValue = "0.000";
     this.textEditEMeterPreviousUnit.Enabled = false;
     this.textEditEMeterPreviousUnit.Location = new System.Drawing.Point(6, 25);
     this.textEditEMeterPreviousUnit.Name = "textEditEMeterPreviousUnit";
     this.textEditEMeterPreviousUnit.Properties.DisplayFormat.FormatString = "n3";
     this.textEditEMeterPreviousUnit.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditEMeterPreviousUnit.Properties.EditFormat.FormatString = "n3";
     this.textEditEMeterPreviousUnit.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditEMeterPreviousUnit.Properties.Mask.EditMask = "n2";
     this.textEditEMeterPreviousUnit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditEMeterPreviousUnit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditEMeterPreviousUnit.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditEMeterPreviousUnit.Size = new System.Drawing.Size(94, 20);
     this.textEditEMeterPreviousUnit.TabIndex = 356;
     //
     // labelControlPhoneMeter
     //
     this.labelControlPhoneMeter.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlPhoneMeter.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlPhoneMeter.Location = new System.Drawing.Point(46, 128);
     this.labelControlPhoneMeter.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlPhoneMeter.Name = "labelControlPhoneMeter";
     this.labelControlPhoneMeter.Size = new System.Drawing.Size(59, 13);
     this.labelControlPhoneMeter.TabIndex = 386;
     this.labelControlPhoneMeter.Text = "โทรศัพท์ :";
     //
     // labelControlTelAmount
     //
     this.labelControlTelAmount.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControlTelAmount.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlTelAmount.Location = new System.Drawing.Point(337, 109);
     this.labelControlTelAmount.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlTelAmount.Name = "labelControlTelAmount";
     this.labelControlTelAmount.Size = new System.Drawing.Size(94, 13);
     this.labelControlTelAmount.TabIndex = 385;
     this.labelControlTelAmount.Text = "ค่าโทร";
     //
     // labelControlTelEnd
     //
     this.labelControlTelEnd.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControlTelEnd.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlTelEnd.Location = new System.Drawing.Point(224, 110);
     this.labelControlTelEnd.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlTelEnd.Name = "labelControlTelEnd";
     this.labelControlTelEnd.Size = new System.Drawing.Size(91, 13);
     this.labelControlTelEnd.TabIndex = 385;
     this.labelControlTelEnd.Text = "วันที่สิ้นสุด";
     //
     // labelControlTelStart
     //
     this.labelControlTelStart.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControlTelStart.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlTelStart.Location = new System.Drawing.Point(113, 110);
     this.labelControlTelStart.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlTelStart.Name = "labelControlTelStart";
     this.labelControlTelStart.Size = new System.Drawing.Size(94, 13);
     this.labelControlTelStart.TabIndex = 385;
     this.labelControlTelStart.Text = "วันที่เริ่ม";
     //
     // labelControlWaterMeter
     //
     this.labelControlWaterMeter.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlWaterMeter.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlWaterMeter.Location = new System.Drawing.Point(58, 79);
     this.labelControlWaterMeter.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlWaterMeter.Name = "labelControlWaterMeter";
     this.labelControlWaterMeter.Size = new System.Drawing.Size(46, 13);
     this.labelControlWaterMeter.TabIndex = 385;
     this.labelControlWaterMeter.Text = "น้ำ :";
     //
     // labelControlElectricMeter
     //
     this.labelControlElectricMeter.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlElectricMeter.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlElectricMeter.Location = new System.Drawing.Point(58, 53);
     this.labelControlElectricMeter.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlElectricMeter.Name = "labelControlElectricMeter";
     this.labelControlElectricMeter.Size = new System.Drawing.Size(46, 13);
     this.labelControlElectricMeter.TabIndex = 384;
     this.labelControlElectricMeter.Text = "ไฟฟ้า :";
     //
     // groupControlStartDate
     //
     this.groupControlStartDate.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlStartDate.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlStartDate.Controls.Add(this.dateEditWMeterPreviousDate);
     this.groupControlStartDate.Controls.Add(this.dateEditEMeterPreviousDate);
     this.groupControlStartDate.Location = new System.Drawing.Point(220, 25);
     this.groupControlStartDate.Name = "groupControlStartDate";
     this.groupControlStartDate.Size = new System.Drawing.Size(105, 82);
     this.groupControlStartDate.TabIndex = 382;
     this.groupControlStartDate.Text = "วันที่บันทึก";
     //
     // dateEditWMeterPreviousDate
     //
     this.dateEditWMeterPreviousDate.EditValue = new System.DateTime(2013, 3, 3, 23, 56, 23, 0);
     this.dateEditWMeterPreviousDate.Enabled = false;
     this.dateEditWMeterPreviousDate.Location = new System.Drawing.Point(5, 51);
     this.dateEditWMeterPreviousDate.Name = "dateEditWMeterPreviousDate";
     this.dateEditWMeterPreviousDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditWMeterPreviousDate.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditWMeterPreviousDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditWMeterPreviousDate.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditWMeterPreviousDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditWMeterPreviousDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditWMeterPreviousDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditWMeterPreviousDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditWMeterPreviousDate.Size = new System.Drawing.Size(91, 20);
     this.dateEditWMeterPreviousDate.TabIndex = 371;
     //
     // dateEditEMeterPreviousDate
     //
     this.dateEditEMeterPreviousDate.EditValue = new System.DateTime(2013, 3, 3, 0, 0, 0, 0);
     this.dateEditEMeterPreviousDate.Enabled = false;
     this.dateEditEMeterPreviousDate.Location = new System.Drawing.Point(5, 25);
     this.dateEditEMeterPreviousDate.Name = "dateEditEMeterPreviousDate";
     this.dateEditEMeterPreviousDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditEMeterPreviousDate.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditEMeterPreviousDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEMeterPreviousDate.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditEMeterPreviousDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEMeterPreviousDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditEMeterPreviousDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditEMeterPreviousDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditEMeterPreviousDate.Size = new System.Drawing.Size(91, 20);
     this.dateEditEMeterPreviousDate.TabIndex = 370;
     //
     // groupRoomInfo
     //
     this.groupRoomInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupRoomInfo.AppearanceCaption.Options.UseFont = true;
     this.groupRoomInfo.Controls.Add(this.textEditRoomPrice);
     this.groupRoomInfo.Controls.Add(this.labelControlBaht0);
     this.groupRoomInfo.Controls.Add(this.labelControlMonth2);
     this.groupRoomInfo.Controls.Add(this.labelControlBaht1);
     this.groupRoomInfo.Controls.Add(this.textEditInsurerate);
     this.groupRoomInfo.Controls.Add(this.textEditAdvance);
     this.groupRoomInfo.Controls.Add(this.labelControlInsurance);
     this.groupRoomInfo.Controls.Add(this.labelControlDeposit);
     this.groupRoomInfo.Controls.Add(this.labelControlMonthlyRate);
     this.groupRoomInfo.Controls.Add(this.lookUpEditFloorId);
     this.groupRoomInfo.Controls.Add(this.labelControlFloor);
     this.groupRoomInfo.Controls.Add(this.textEditRoomLabel);
     this.groupRoomInfo.Controls.Add(this.labelControlRoomName);
     this.groupRoomInfo.Controls.Add(this.lookUpEditRoomTypeId);
     this.groupRoomInfo.Controls.Add(this.lookUpEditBuildingId);
     this.groupRoomInfo.Controls.Add(this.labelControlRoomType);
     this.groupRoomInfo.Controls.Add(this.labelControlBuilding);
     this.groupRoomInfo.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupRoomInfo.Location = new System.Drawing.Point(0, 169);
     this.groupRoomInfo.Name = "groupRoomInfo";
     this.groupRoomInfo.Size = new System.Drawing.Size(607, 135);
     this.groupRoomInfo.TabIndex = 353;
     this.groupRoomInfo.Text = "ห้อง";
     //
     // textEditRoomPrice
     //
     this.textEditRoomPrice.EditValue = "";
     this.textEditRoomPrice.Enabled = false;
     this.textEditRoomPrice.Location = new System.Drawing.Point(397, 29);
     this.textEditRoomPrice.Name = "textEditRoomPrice";
     this.textEditRoomPrice.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditRoomPrice.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditRoomPrice.Properties.Mask.EditMask = "n2";
     this.textEditRoomPrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditRoomPrice.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditRoomPrice.Size = new System.Drawing.Size(163, 20);
     this.textEditRoomPrice.TabIndex = 118;
     //
     // labelControlBaht0
     //
     this.labelControlBaht0.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht0.Location = new System.Drawing.Point(563, 62);
     this.labelControlBaht0.Name = "labelControlBaht0";
     this.labelControlBaht0.Size = new System.Drawing.Size(33, 13);
     this.labelControlBaht0.TabIndex = 115;
     this.labelControlBaht0.Text = "บาท";
     //
     // labelControlMonth2
     //
     this.labelControlMonth2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMonth2.Location = new System.Drawing.Point(563, 84);
     this.labelControlMonth2.Name = "labelControlMonth2";
     this.labelControlMonth2.Size = new System.Drawing.Size(33, 13);
     this.labelControlMonth2.TabIndex = 117;
     this.labelControlMonth2.Text = "เดือน";
     //
     // labelControlBaht1
     //
     this.labelControlBaht1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht1.Location = new System.Drawing.Point(563, 36);
     this.labelControlBaht1.Name = "labelControlBaht1";
     this.labelControlBaht1.Size = new System.Drawing.Size(33, 13);
     this.labelControlBaht1.TabIndex = 112;
     this.labelControlBaht1.Text = "บาท";
     //
     // textEditInsurerate
     //
     this.textEditInsurerate.EditValue = "0.00";
     this.textEditInsurerate.Enabled = false;
     this.textEditInsurerate.Location = new System.Drawing.Point(397, 55);
     this.textEditInsurerate.Name = "textEditInsurerate";
     this.textEditInsurerate.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditInsurerate.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditInsurerate.Properties.Mask.EditMask = "n2";
     this.textEditInsurerate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditInsurerate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditInsurerate.Size = new System.Drawing.Size(163, 20);
     this.textEditInsurerate.TabIndex = 119;
     //
     // textEditAdvance
     //
     this.textEditAdvance.EditValue = "0";
     this.textEditAdvance.Enabled = false;
     this.textEditAdvance.Location = new System.Drawing.Point(397, 81);
     this.textEditAdvance.Name = "textEditAdvance";
     this.textEditAdvance.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditAdvance.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditAdvance.Size = new System.Drawing.Size(163, 20);
     this.textEditAdvance.TabIndex = 120;
     //
     // labelControlInsurance
     //
     this.labelControlInsurance.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlInsurance.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlInsurance.Location = new System.Drawing.Point(302, 62);
     this.labelControlInsurance.Name = "labelControlInsurance";
     this.labelControlInsurance.Size = new System.Drawing.Size(92, 13);
     this.labelControlInsurance.TabIndex = 114;
     this.labelControlInsurance.Text = "ค่าประกัน :";
     //
     // labelControlDeposit
     //
     this.labelControlDeposit.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlDeposit.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlDeposit.Location = new System.Drawing.Point(280, 84);
     this.labelControlDeposit.Name = "labelControlDeposit";
     this.labelControlDeposit.Size = new System.Drawing.Size(114, 13);
     this.labelControlDeposit.TabIndex = 113;
     this.labelControlDeposit.Text = "ค่าเช่าล่วงหน้า :";
     //
     // labelControlMonthlyRate
     //
     this.labelControlMonthlyRate.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlMonthlyRate.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMonthlyRate.Location = new System.Drawing.Point(302, 36);
     this.labelControlMonthlyRate.Name = "labelControlMonthlyRate";
     this.labelControlMonthlyRate.Size = new System.Drawing.Size(92, 13);
     this.labelControlMonthlyRate.TabIndex = 116;
     this.labelControlMonthlyRate.Text = "ค่าเช่า :";
     //
     // lookUpEditFloorId
     //
     this.lookUpEditFloorId.Enabled = false;
     this.lookUpEditFloorId.Location = new System.Drawing.Point(107, 81);
     this.lookUpEditFloorId.Name = "lookUpEditFloorId";
     this.lookUpEditFloorId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditFloorId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("floor_id", "floor_id", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("floor_code", "ชั้น")});
     this.lookUpEditFloorId.Size = new System.Drawing.Size(133, 20);
     this.lookUpEditFloorId.TabIndex = 111;
     //
     // labelControlFloor
     //
     this.labelControlFloor.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlFloor.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlFloor.Location = new System.Drawing.Point(23, 88);
     this.labelControlFloor.Name = "labelControlFloor";
     this.labelControlFloor.Size = new System.Drawing.Size(81, 13);
     this.labelControlFloor.TabIndex = 110;
     this.labelControlFloor.Text = "ชั้น :";
     //
     // textEditRoomLabel
     //
     this.textEditRoomLabel.Enabled = false;
     this.textEditRoomLabel.Location = new System.Drawing.Point(107, 29);
     this.textEditRoomLabel.Name = "textEditRoomLabel";
     this.textEditRoomLabel.Size = new System.Drawing.Size(133, 20);
     this.textEditRoomLabel.TabIndex = 107;
     //
     // labelControlRoomName
     //
     this.labelControlRoomName.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRoomName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRoomName.Location = new System.Drawing.Point(23, 36);
     this.labelControlRoomName.Name = "labelControlRoomName";
     this.labelControlRoomName.Size = new System.Drawing.Size(81, 13);
     this.labelControlRoomName.TabIndex = 106;
     this.labelControlRoomName.Text = "ชื่อห้อง :";
     //
     // lookUpEditRoomTypeId
     //
     this.lookUpEditRoomTypeId.Enabled = false;
     this.lookUpEditRoomTypeId.Location = new System.Drawing.Point(107, 107);
     this.lookUpEditRoomTypeId.Name = "lookUpEditRoomTypeId";
     this.lookUpEditRoomTypeId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditRoomTypeId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("roomtype_label", "ประเภทห้อง"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("roomtype_id", "roomtype_id", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lookUpEditRoomTypeId.Size = new System.Drawing.Size(133, 20);
     this.lookUpEditRoomTypeId.TabIndex = 105;
     //
     // lookUpEditBuildingId
     //
     this.lookUpEditBuildingId.Enabled = false;
     this.lookUpEditBuildingId.Location = new System.Drawing.Point(107, 55);
     this.lookUpEditBuildingId.Name = "lookUpEditBuildingId";
     this.lookUpEditBuildingId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditBuildingId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("building_label", "ชื่ออาคาร"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("building_id", "building_id", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lookUpEditBuildingId.Size = new System.Drawing.Size(133, 20);
     this.lookUpEditBuildingId.TabIndex = 104;
     //
     // labelControlRoomType
     //
     this.labelControlRoomType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRoomType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRoomType.Location = new System.Drawing.Point(23, 114);
     this.labelControlRoomType.Name = "labelControlRoomType";
     this.labelControlRoomType.Size = new System.Drawing.Size(81, 13);
     this.labelControlRoomType.TabIndex = 102;
     this.labelControlRoomType.Text = "ประเภทห้อง :";
     //
     // labelControlBuilding
     //
     this.labelControlBuilding.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlBuilding.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBuilding.Location = new System.Drawing.Point(23, 62);
     this.labelControlBuilding.Name = "labelControlBuilding";
     this.labelControlBuilding.Size = new System.Drawing.Size(81, 13);
     this.labelControlBuilding.TabIndex = 101;
     this.labelControlBuilding.Text = "อาคาร :";
     //
     // groupControlRental
     //
     this.groupControlRental.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlRental.AppearanceCaption.Options.UseFont = true;
     this.groupControlRental.Controls.Add(this.labelControl5);
     this.groupControlRental.Controls.Add(this.labelControl23);
     this.groupControlRental.Controls.Add(this.labelControl22);
     this.groupControlRental.Controls.Add(this.labelControl21);
     this.groupControlRental.Controls.Add(this.textEditTenantName);
     this.groupControlRental.Controls.Add(this.labelControlSurname);
     this.groupControlRental.Controls.Add(this.labelControlName);
     this.groupControlRental.Controls.Add(this.textEditTenantSurname);
     this.groupControlRental.Controls.Add(this.labelControlTitle);
     this.groupControlRental.Controls.Add(this.textEditPrefix);
     this.groupControlRental.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlRental.Location = new System.Drawing.Point(0, 85);
     this.groupControlRental.Name = "groupControlRental";
     this.groupControlRental.Size = new System.Drawing.Size(607, 84);
     this.groupControlRental.TabIndex = 352;
     this.groupControlRental.Text = "ผู้เช่า";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl5.Location = new System.Drawing.Point(605, 298);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(6, 13);
     this.labelControl5.TabIndex = 444;
     this.labelControl5.Text = "*";
     //
     // labelControl23
     //
     this.labelControl23.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl23.Location = new System.Drawing.Point(605, 167);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(6, 13);
     this.labelControl23.TabIndex = 443;
     this.labelControl23.Text = "*";
     //
     // labelControl22
     //
     this.labelControl22.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl22.Location = new System.Drawing.Point(605, 120);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(6, 13);
     this.labelControl22.TabIndex = 441;
     this.labelControl22.Text = "*";
     //
     // labelControl21
     //
     this.labelControl21.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl21.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControl21.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl21.Location = new System.Drawing.Point(605, 94);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(6, 13);
     this.labelControl21.TabIndex = 440;
     this.labelControl21.Text = "*";
     //
     // textEditTenantName
     //
     this.textEditTenantName.EditValue = "";
     this.textEditTenantName.Enabled = false;
     this.textEditTenantName.Location = new System.Drawing.Point(107, 57);
     this.textEditTenantName.Name = "textEditTenantName";
     this.textEditTenantName.Properties.MaxLength = 200;
     this.textEditTenantName.Size = new System.Drawing.Size(133, 20);
     this.textEditTenantName.TabIndex = 412;
     //
     // labelControlSurname
     //
     this.labelControlSurname.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlSurname.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlSurname.Location = new System.Drawing.Point(310, 64);
     this.labelControlSurname.Name = "labelControlSurname";
     this.labelControlSurname.Size = new System.Drawing.Size(84, 13);
     this.labelControlSurname.TabIndex = 424;
     this.labelControlSurname.Text = "นามสกุล :";
     //
     // labelControlName
     //
     this.labelControlName.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlName.Location = new System.Drawing.Point(20, 64);
     this.labelControlName.Name = "labelControlName";
     this.labelControlName.Size = new System.Drawing.Size(84, 13);
     this.labelControlName.TabIndex = 423;
     this.labelControlName.Text = "ชื่อ :";
     //
     // textEditTenantSurname
     //
     this.textEditTenantSurname.EditValue = "";
     this.textEditTenantSurname.Enabled = false;
     this.textEditTenantSurname.Location = new System.Drawing.Point(397, 57);
     this.textEditTenantSurname.Name = "textEditTenantSurname";
     this.textEditTenantSurname.Properties.MaxLength = 200;
     this.textEditTenantSurname.Size = new System.Drawing.Size(163, 20);
     this.textEditTenantSurname.TabIndex = 413;
     //
     // labelControlTitle
     //
     this.labelControlTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlTitle.Location = new System.Drawing.Point(20, 38);
     this.labelControlTitle.Name = "labelControlTitle";
     this.labelControlTitle.Size = new System.Drawing.Size(84, 13);
     this.labelControlTitle.TabIndex = 422;
     this.labelControlTitle.Text = "คำนำหน้า :";
     //
     // textEditPrefix
     //
     this.textEditPrefix.EditValue = "";
     this.textEditPrefix.Enabled = false;
     this.textEditPrefix.Location = new System.Drawing.Point(107, 31);
     this.textEditPrefix.Name = "textEditPrefix";
     this.textEditPrefix.Properties.MaxLength = 50;
     this.textEditPrefix.Size = new System.Drawing.Size(133, 20);
     this.textEditPrefix.TabIndex = 411;
     //
     // groupControlCheckOut
     //
     this.groupControlCheckOut.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlCheckOut.AppearanceCaption.Options.UseFont = true;
     this.groupControlCheckOut.Controls.Add(this.lookUpEditContractType);
     this.groupControlCheckOut.Controls.Add(this.dateEditCheckInDate);
     this.groupControlCheckOut.Controls.Add(this.labelControlMonth);
     this.groupControlCheckOut.Controls.Add(this.labelControlMinimum);
     this.groupControlCheckOut.Controls.Add(this.labelControlRentType);
     this.groupControlCheckOut.Controls.Add(this.labelControlContractDate);
     this.groupControlCheckOut.Controls.Add(this.labelControlContractNo);
     this.groupControlCheckOut.Controls.Add(this.textEditMinimum);
     this.groupControlCheckOut.Controls.Add(this.textEditContractNo);
     this.groupControlCheckOut.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlCheckOut.Location = new System.Drawing.Point(0, 0);
     this.groupControlCheckOut.Name = "groupControlCheckOut";
     this.groupControlCheckOut.Size = new System.Drawing.Size(607, 85);
     this.groupControlCheckOut.TabIndex = 3;
     this.groupControlCheckOut.Text = "ย้ายออก";
     //
     // lookUpEditContractType
     //
     this.lookUpEditContractType.Enabled = false;
     this.lookUpEditContractType.Location = new System.Drawing.Point(107, 56);
     this.lookUpEditContractType.Name = "lookUpEditContractType";
     this.lookUpEditContractType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditContractType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("contracttype_id", "รหัสประเภทสัญญา", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("contracttype_label", "ประเภทสัญญา")});
     this.lookUpEditContractType.Size = new System.Drawing.Size(133, 20);
     this.lookUpEditContractType.TabIndex = 444;
     //
     // dateEditCheckInDate
     //
     this.dateEditCheckInDate.EditValue = new System.DateTime(2013, 3, 8, 0, 0, 0, 0);
     this.dateEditCheckInDate.Enabled = false;
     this.dateEditCheckInDate.Location = new System.Drawing.Point(398, 31);
     this.dateEditCheckInDate.Name = "dateEditCheckInDate";
     this.dateEditCheckInDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditCheckInDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dateEditCheckInDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditCheckInDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dateEditCheckInDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditCheckInDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditCheckInDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditCheckInDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditCheckInDate.Size = new System.Drawing.Size(162, 20);
     this.dateEditCheckInDate.TabIndex = 443;
     //
     // labelControlMonth
     //
     this.labelControlMonth.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMonth.Location = new System.Drawing.Point(563, 63);
     this.labelControlMonth.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlMonth.Name = "labelControlMonth";
     this.labelControlMonth.Size = new System.Drawing.Size(37, 13);
     this.labelControlMonth.TabIndex = 441;
     this.labelControlMonth.Text = "เดือน";
     //
     // labelControlMinimum
     //
     this.labelControlMinimum.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlMinimum.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMinimum.Location = new System.Drawing.Point(261, 59);
     this.labelControlMinimum.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlMinimum.Name = "labelControlMinimum";
     this.labelControlMinimum.Size = new System.Drawing.Size(134, 13);
     this.labelControlMinimum.TabIndex = 442;
     this.labelControlMinimum.Text = "ระยะเวลาเช่าขั้นต่ำ :";
     //
     // labelControlRentType
     //
     this.labelControlRentType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRentType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRentType.Location = new System.Drawing.Point(5, 63);
     this.labelControlRentType.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlRentType.Name = "labelControlRentType";
     this.labelControlRentType.Size = new System.Drawing.Size(99, 13);
     this.labelControlRentType.TabIndex = 440;
     this.labelControlRentType.Text = "ประเภทการเช่า :";
     //
     // labelControlContractDate
     //
     this.labelControlContractDate.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlContractDate.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlContractDate.Location = new System.Drawing.Point(296, 38);
     this.labelControlContractDate.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlContractDate.Name = "labelControlContractDate";
     this.labelControlContractDate.Size = new System.Drawing.Size(99, 13);
     this.labelControlContractDate.TabIndex = 438;
     this.labelControlContractDate.Text = "วันที่ทำสัญญา :";
     //
     // labelControlContractNo
     //
     this.labelControlContractNo.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlContractNo.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlContractNo.Location = new System.Drawing.Point(5, 38);
     this.labelControlContractNo.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlContractNo.Name = "labelControlContractNo";
     this.labelControlContractNo.Size = new System.Drawing.Size(99, 13);
     this.labelControlContractNo.TabIndex = 439;
     this.labelControlContractNo.Text = "เลขที่สัญญา :";
     //
     // textEditMinimum
     //
     this.textEditMinimum.EditValue = "0";
     this.textEditMinimum.Enabled = false;
     this.textEditMinimum.Location = new System.Drawing.Point(398, 56);
     this.textEditMinimum.Name = "textEditMinimum";
     this.textEditMinimum.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditMinimum.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditMinimum.Properties.MaxLength = 2;
     this.textEditMinimum.Size = new System.Drawing.Size(162, 20);
     this.textEditMinimum.TabIndex = 436;
     //
     // textEditContractNo
     //
     this.textEditContractNo.EditValue = "";
     this.textEditContractNo.Enabled = false;
     this.textEditContractNo.Location = new System.Drawing.Point(107, 31);
     this.textEditContractNo.Name = "textEditContractNo";
     this.textEditContractNo.Size = new System.Drawing.Size(133, 20);
     this.textEditContractNo.TabIndex = 437;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.bttPrintInvoice);
     this.panelControl1.Controls.Add(this.bttPrintInsurance);
     this.panelControl1.Controls.Add(this.textEditRoomStatus);
     this.panelControl1.Controls.Add(this.textEditCheckInId);
     this.panelControl1.Controls.Add(this.textEditTenantId);
     this.panelControl1.Controls.Add(this.textEditRoomId);
     this.panelControl1.Controls.Add(this.labelControl4);
     this.panelControl1.Controls.Add(this.textEditRoomCode);
     this.panelControl1.Controls.Add(this.bttEdit);
     this.panelControl1.Controls.Add(this.bttCancel);
     this.panelControl1.Controls.Add(this.bttSave);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 568);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(624, 66);
     this.panelControl1.TabIndex = 77;
     //
     // bttPrintInvoice
     //
     this.bttPrintInvoice.Image = ((System.Drawing.Image)(resources.GetObject("bttPrintInvoice.Image")));
     this.bttPrintInvoice.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttPrintInvoice.Location = new System.Drawing.Point(5, 5);
     this.bttPrintInvoice.Name = "bttPrintInvoice";
     this.bttPrintInvoice.Size = new System.Drawing.Size(123, 55);
     this.bttPrintInvoice.TabIndex = 364;
     this.bttPrintInvoice.Text = "สร้างใบแจ้งหนี้";
     //
     // bttPrintInsurance
     //
     this.bttPrintInsurance.Image = ((System.Drawing.Image)(resources.GetObject("bttPrintInsurance.Image")));
     this.bttPrintInsurance.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttPrintInsurance.Location = new System.Drawing.Point(134, 5);
     this.bttPrintInsurance.Name = "bttPrintInsurance";
     this.bttPrintInsurance.Size = new System.Drawing.Size(127, 55);
     this.bttPrintInsurance.TabIndex = 363;
     this.bttPrintInsurance.Text = "สร้างใบคืนเงินประกัน";
     //
     // textEditRoomStatus
     //
     this.textEditRoomStatus.EditValue = "";
     this.textEditRoomStatus.Enabled = false;
     this.textEditRoomStatus.Location = new System.Drawing.Point(324, 19);
     this.textEditRoomStatus.Name = "textEditRoomStatus";
     this.textEditRoomStatus.Size = new System.Drawing.Size(10, 20);
     this.textEditRoomStatus.TabIndex = 362;
     this.textEditRoomStatus.Visible = false;
     //
     // textEditCheckInId
     //
     this.textEditCheckInId.EditValue = "";
     this.textEditCheckInId.Enabled = false;
     this.textEditCheckInId.Location = new System.Drawing.Point(308, 19);
     this.textEditCheckInId.Name = "textEditCheckInId";
     this.textEditCheckInId.Size = new System.Drawing.Size(10, 20);
     this.textEditCheckInId.TabIndex = 362;
     this.textEditCheckInId.Visible = false;
     //
     // textEditTenantId
     //
     this.textEditTenantId.EditValue = "";
     this.textEditTenantId.Enabled = false;
     this.textEditTenantId.Location = new System.Drawing.Point(345, 19);
     this.textEditTenantId.Name = "textEditTenantId";
     this.textEditTenantId.Size = new System.Drawing.Size(39, 20);
     this.textEditTenantId.TabIndex = 361;
     this.textEditTenantId.Visible = false;
     //
     // textEditRoomId
     //
     this.textEditRoomId.EditValue = "";
     this.textEditRoomId.Enabled = false;
     this.textEditRoomId.Location = new System.Drawing.Point(292, 19);
     this.textEditRoomId.Name = "textEditRoomId";
     this.textEditRoomId.Size = new System.Drawing.Size(10, 20);
     this.textEditRoomId.TabIndex = 360;
     this.textEditRoomId.Visible = false;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(273, 44);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(45, 13);
     this.labelControl4.TabIndex = 359;
     this.labelControl4.Text = "รหัสห้อง :";
     this.labelControl4.Visible = false;
     //
     // textEditRoomCode
     //
     this.textEditRoomCode.EditValue = "";
     this.textEditRoomCode.Enabled = false;
     this.textEditRoomCode.Location = new System.Drawing.Point(260, 19);
     this.textEditRoomCode.Name = "textEditRoomCode";
     this.textEditRoomCode.Size = new System.Drawing.Size(13, 20);
     this.textEditRoomCode.TabIndex = 358;
     this.textEditRoomCode.Visible = false;
     //
     // bttEdit
     //
     this.bttEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttEdit.Image = global::DXWindowsApplication2.Properties.Resources.edit;
     this.bttEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttEdit.Location = new System.Drawing.Point(397, 5);
     this.bttEdit.Name = "bttEdit";
     this.bttEdit.Size = new System.Drawing.Size(70, 55);
     this.bttEdit.TabIndex = 19;
     this.bttEdit.Text = "แก้ไขข้อมูล";
     //
     // bttCancel
     //
     this.bttCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttCancel.Enabled = false;
     this.bttCancel.Image = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(549, 5);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 22;
     this.bttCancel.Text = "ยกเลิก";
     //
     // bttSave
     //
     this.bttSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttSave.Enabled = false;
     this.bttSave.Image = global::DXWindowsApplication2.Properties.Resources.preview;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(473, 5);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 21;
     this.bttSave.Text = "ปิดสัญญา";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // RoomCheckOut
     //
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl2);
     this.Name = "RoomCheckOut";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size = new System.Drawing.Size(1310, 648);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlList)).EndInit();
     this.groupControlList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlRoom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupExpense)).EndInit();
     this.groupExpense.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlItem)).EndInit();
     this.groupControlItem.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewItemList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     this.panelControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRefund.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGeneralCost)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGeneralCost)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlCalculate)).EndInit();
     this.panelControlCalculate.ResumeLayout(false);
     this.panelControlCalculate.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditInvoiceDueDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditInvoiceDueDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPricePerDay)).EndInit();
     this.panelControlPricePerDay.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditChargePrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLeaveDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLeaveDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditCharge.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlMeter)).EndInit();
     this.groupControlMeter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditPhonePrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEndMeter)).EndInit();
     this.groupControlEndMeter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditWMeterPresent.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditEMeterPresent.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEndDate)).EndInit();
     this.groupControlEndDate.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPresentDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPresentDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPresentDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPresentDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditWaterMeterId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditElectricMeterId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlStartMeter)).EndInit();
     this.groupControlStartMeter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditWMeterPreviousUnit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditEMeterPreviousUnit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlStartDate)).EndInit();
     this.groupControlStartDate.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPreviousDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPreviousDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPreviousDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPreviousDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupRoomInfo)).EndInit();
     this.groupRoomInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditInsurerate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditAdvance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditFloorId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomLabel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditRoomTypeId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditBuildingId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlRental)).EndInit();
     this.groupControlRental.ResumeLayout(false);
     this.groupControlRental.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantSurname.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPrefix.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlCheckOut)).EndInit();
     this.groupControlCheckOut.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditContractType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditCheckInDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditCheckInDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditMinimum.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditContractNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditCheckInId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.GroupControl38    = new DevExpress.XtraEditors.GroupControl();
     this.ucMemberID1       = new ACMS.ucMemberID();
     this.dtEditDate        = new DevExpress.XtraEditors.DateEdit();
     this.label2            = new System.Windows.Forms.Label();
     this.dtEdtEndTime      = new DevExpress.XtraEditors.DateEdit();
     this.dtEdtStartTime    = new DevExpress.XtraEditors.DateEdit();
     this.simpleButton2     = new DevExpress.XtraEditors.SimpleButton();
     this.SimpleButton56    = new DevExpress.XtraEditors.SimpleButton();
     this.lkpEdtTherapist   = new DevExpress.XtraEditors.LookUpEdit();
     this.label1            = new System.Windows.Forms.Label();
     this.lkpEdtPackageID   = new DevExpress.XtraEditors.LookUpEdit();
     this.lkpEdtServiceCode = new DevExpress.XtraEditors.LookUpEdit();
     this.MemoEditRemark    = new DevExpress.XtraEditors.MemoEdit();
     this.Label42           = new System.Windows.Forms.Label();
     this.Label36           = new System.Windows.Forms.Label();
     this.Label31           = new System.Windows.Forms.Label();
     this.Label33           = new System.Windows.Forms.Label();
     this.Label34           = new System.Windows.Forms.Label();
     this.Label35           = new System.Windows.Forms.Label();
     this.lkpEdtBranchCode  = new DevExpress.XtraEditors.LookUpEdit();
     this.label3            = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl38)).BeginInit();
     this.GroupControl38.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtEditDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtEndTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtStartTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtTherapist.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageID.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtServiceCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MemoEditRemark.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // GroupControl38
     //
     this.GroupControl38.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.GroupControl38.Controls.Add(this.ucMemberID1);
     this.GroupControl38.Controls.Add(this.dtEditDate);
     this.GroupControl38.Controls.Add(this.label2);
     this.GroupControl38.Controls.Add(this.dtEdtEndTime);
     this.GroupControl38.Controls.Add(this.dtEdtStartTime);
     this.GroupControl38.Controls.Add(this.simpleButton2);
     this.GroupControl38.Controls.Add(this.SimpleButton56);
     this.GroupControl38.Controls.Add(this.lkpEdtTherapist);
     this.GroupControl38.Controls.Add(this.label1);
     this.GroupControl38.Controls.Add(this.lkpEdtPackageID);
     this.GroupControl38.Controls.Add(this.lkpEdtServiceCode);
     this.GroupControl38.Controls.Add(this.MemoEditRemark);
     this.GroupControl38.Controls.Add(this.Label42);
     this.GroupControl38.Controls.Add(this.Label36);
     this.GroupControl38.Controls.Add(this.Label31);
     this.GroupControl38.Controls.Add(this.Label33);
     this.GroupControl38.Controls.Add(this.Label34);
     this.GroupControl38.Controls.Add(this.Label35);
     this.GroupControl38.Controls.Add(this.lkpEdtBranchCode);
     this.GroupControl38.Controls.Add(this.label3);
     this.GroupControl38.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.GroupControl38.Location    = new System.Drawing.Point(0, 0);
     this.GroupControl38.Name        = "GroupControl38";
     this.GroupControl38.ShowCaption = false;
     this.GroupControl38.Size        = new System.Drawing.Size(338, 314);
     this.GroupControl38.TabIndex    = 1;
     this.GroupControl38.Text        = "GroupControl1";
     //
     // ucMemberID1
     //
     this.ucMemberID1.EditValue        = "";
     this.ucMemberID1.EditValueChanged = null;
     this.ucMemberID1.Location         = new System.Drawing.Point(96, 14);
     this.ucMemberID1.Name             = "ucMemberID1";
     this.ucMemberID1.Size             = new System.Drawing.Size(182, 20);
     this.ucMemberID1.StrBranchCode    = null;
     this.ucMemberID1.TabIndex         = 0;
     //
     // dtEditDate
     //
     this.dtEditDate.EditValue = new System.DateTime(2006, 1, 1, 0, 0, 0, 0);
     this.dtEditDate.Location  = new System.Drawing.Point(96, 124);
     this.dtEditDate.Name      = "dtEditDate";
     //
     // dtEditDate.Properties
     //
     this.dtEditDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dtEditDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtEditDate.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEditDate.Properties.EditFormat.FormatString    = "dd/MM/yyyy";
     this.dtEditDate.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dtEditDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dtEditDate.Size              = new System.Drawing.Size(232, 20);
     this.dtEditDate.TabIndex          = 5;
     this.dtEditDate.EditValueChanged += new System.EventHandler(this.dtEditDate_EditValueChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(16, 124);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(34, 18);
     this.label2.TabIndex = 35;
     this.label2.Text     = "Date";
     //
     // dtEdtEndTime
     //
     this.dtEdtEndTime.EditValue = new System.DateTime(2006, 1, 1, 0, 0, 0, 0);
     this.dtEdtEndTime.Location  = new System.Drawing.Point(96, 168);
     this.dtEdtEndTime.Name      = "dtEdtEndTime";
     //
     // dtEdtEndTime.Properties
     //
     this.dtEdtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)
     });
     this.dtEdtEndTime.Properties.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm tt";
     this.dtEdtEndTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtEndTime.Properties.EditFormat.FormatString    = "T";
     this.dtEdtEndTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtEndTime.Properties.Mask.EditMask = "T";
     this.dtEdtEndTime.Size     = new System.Drawing.Size(232, 20);
     this.dtEdtEndTime.TabIndex = 7;
     //
     // dtEdtStartTime
     //
     this.dtEdtStartTime.EditValue = new System.DateTime(2006, 1, 1, 0, 0, 0, 0);
     this.dtEdtStartTime.Location  = new System.Drawing.Point(96, 146);
     this.dtEdtStartTime.Name      = "dtEdtStartTime";
     //
     // dtEdtStartTime.Properties
     //
     this.dtEdtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)
     });
     this.dtEdtStartTime.Properties.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm tt";
     this.dtEdtStartTime.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtStartTime.Properties.EditFormat.FormatString    = "T";
     this.dtEdtStartTime.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.DateTime;
     this.dtEdtStartTime.Properties.Mask.EditMask = "T";
     this.dtEdtStartTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dtEdtStartTime.Size              = new System.Drawing.Size(232, 20);
     this.dtEdtStartTime.TabIndex          = 6;
     this.dtEdtStartTime.EditValueChanged += new System.EventHandler(this.dtEdtStartTime_EditValueChanged);
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location     = new System.Drawing.Point(252, 278);
     this.simpleButton2.Name         = "simpleButton2";
     this.simpleButton2.TabIndex     = 10;
     this.simpleButton2.Text         = "Cancel";
     //
     // SimpleButton56
     //
     this.SimpleButton56.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.SimpleButton56.Location     = new System.Drawing.Point(166, 278);
     this.SimpleButton56.Name         = "SimpleButton56";
     this.SimpleButton56.TabIndex     = 9;
     this.SimpleButton56.Text         = "Save";
     this.SimpleButton56.Click       += new System.EventHandler(this.SimpleButton56_Click_1);
     //
     // lkpEdtTherapist
     //
     this.lkpEdtTherapist.EditValue = "";
     this.lkpEdtTherapist.Location  = new System.Drawing.Point(96, 58);
     this.lkpEdtTherapist.Name      = "lkpEdtTherapist";
     //
     // lkpEdtTherapist.Properties
     //
     this.lkpEdtTherapist.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtTherapist.Size     = new System.Drawing.Size(232, 20);
     this.lkpEdtTherapist.TabIndex = 2;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(16, 14);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(73, 18);
     this.label1.TabIndex = 28;
     this.label1.Text     = "Member ID";
     //
     // lkpEdtPackageID
     //
     this.lkpEdtPackageID.EditValue = "";
     this.lkpEdtPackageID.Location  = new System.Drawing.Point(96, 80);
     this.lkpEdtPackageID.Name      = "lkpEdtPackageID";
     //
     // lkpEdtPackageID.Properties
     //
     this.lkpEdtPackageID.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtPackageID.Properties.NullText = "";
     this.lkpEdtPackageID.Size              = new System.Drawing.Size(232, 20);
     this.lkpEdtPackageID.TabIndex          = 3;
     this.lkpEdtPackageID.EditValueChanged += new System.EventHandler(this.lkpEdtPackageID_EditValueChanged);
     //
     // lkpEdtServiceCode
     //
     this.lkpEdtServiceCode.EditValue = "";
     this.lkpEdtServiceCode.Location  = new System.Drawing.Point(96, 102);
     this.lkpEdtServiceCode.Name      = "lkpEdtServiceCode";
     //
     // lkpEdtServiceCode.Properties
     //
     this.lkpEdtServiceCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtServiceCode.Size     = new System.Drawing.Size(232, 20);
     this.lkpEdtServiceCode.TabIndex = 4;
     //
     // MemoEditRemark
     //
     this.MemoEditRemark.EditValue = "";
     this.MemoEditRemark.Location  = new System.Drawing.Point(96, 190);
     this.MemoEditRemark.Name      = "MemoEditRemark";
     //
     // MemoEditRemark.Properties
     //
     this.MemoEditRemark.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.MemoEditRemark.Properties.Appearance.Options.UseFont = true;
     this.MemoEditRemark.Size     = new System.Drawing.Size(232, 64);
     this.MemoEditRemark.TabIndex = 8;
     //
     // Label42
     //
     this.Label42.AutoSize = true;
     this.Label42.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label42.Location = new System.Drawing.Point(16, 192);
     this.Label42.Name     = "Label42";
     this.Label42.Size     = new System.Drawing.Size(60, 18);
     this.Label42.TabIndex = 23;
     this.Label42.Text     = "Remarks";
     //
     // Label36
     //
     this.Label36.AutoSize = true;
     this.Label36.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label36.Location = new System.Drawing.Point(16, 168);
     this.Label36.Name     = "Label36";
     this.Label36.Size     = new System.Drawing.Size(64, 18);
     this.Label36.TabIndex = 21;
     this.Label36.Text     = "End Time";
     //
     // Label31
     //
     this.Label31.AutoSize = true;
     this.Label31.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label31.Location = new System.Drawing.Point(16, 146);
     this.Label31.Name     = "Label31";
     this.Label31.Size     = new System.Drawing.Size(69, 18);
     this.Label31.TabIndex = 19;
     this.Label31.Text     = "Start Time";
     //
     // Label33
     //
     this.Label33.AutoSize = true;
     this.Label33.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label33.Location = new System.Drawing.Point(16, 102);
     this.Label33.Name     = "Label33";
     this.Label33.Size     = new System.Drawing.Size(51, 18);
     this.Label33.TabIndex = 17;
     this.Label33.Text     = "Service";
     //
     // Label34
     //
     this.Label34.AutoSize = true;
     this.Label34.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label34.Location = new System.Drawing.Point(16, 80);
     this.Label34.Name     = "Label34";
     this.Label34.Size     = new System.Drawing.Size(76, 18);
     this.Label34.TabIndex = 15;
     this.Label34.Text     = "Package ID";
     //
     // Label35
     //
     this.Label35.AutoSize = true;
     this.Label35.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Label35.Location = new System.Drawing.Point(16, 58);
     this.Label35.Name     = "Label35";
     this.Label35.Size     = new System.Drawing.Size(63, 18);
     this.Label35.TabIndex = 13;
     this.Label35.Text     = "Therapist";
     //
     // lkpEdtBranchCode
     //
     this.lkpEdtBranchCode.EditValue = "";
     this.lkpEdtBranchCode.Location  = new System.Drawing.Point(96, 36);
     this.lkpEdtBranchCode.Name      = "lkpEdtBranchCode";
     //
     // lkpEdtBranchCode.Properties
     //
     this.lkpEdtBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtBranchCode.Size     = new System.Drawing.Size(232, 20);
     this.lkpEdtBranchCode.TabIndex = 1;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label3.Location = new System.Drawing.Point(16, 36);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(72, 20);
     this.label3.TabIndex = 58;
     this.label3.Text     = "Branch";
     //
     // FormNewSpaBooking
     //
     this.AcceptButton      = this.SimpleButton56;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButton2;
     this.ClientSize        = new System.Drawing.Size(338, 314);
     this.Controls.Add(this.GroupControl38);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormNewSpaBooking";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Spa Booking";
     this.Load           += new System.EventHandler(this.FormNewSpaBooking_Load);
     ((System.ComponentModel.ISupportInitialize)(this.GroupControl38)).EndInit();
     this.GroupControl38.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtEditDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtEndTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEdtStartTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtTherapist.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPackageID.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtServiceCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MemoEditRemark.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtBranchCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 56
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gvPromotionAnalysis = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pivotGridField1     = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField2     = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField5     = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField6     = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField3     = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField4     = new DevExpress.XtraPivotGrid.PivotGridField();
     this.pivotGridField7     = new DevExpress.XtraPivotGrid.PivotGridField();
     this.btnReset            = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnReset           = new DevExpress.XtraEditors.SimpleButton();
     this.lkBranch            = new DevExpress.XtraEditors.LookUpEdit();
     this.lkPromotion         = new DevExpress.XtraEditors.LookUpEdit();
     this.label6      = new System.Windows.Forms.Label();
     this.label5      = new System.Windows.Forms.Label();
     this.DateFrom    = new DevExpress.XtraEditors.DateEdit();
     this.DateRangeTo = new DevExpress.XtraEditors.DateEdit();
     this.label1      = new System.Windows.Forms.Label();
     this.label2      = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.gvPromotionAnalysis)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPromotion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // gvPromotionAnalysis
     //
     this.gvPromotionAnalysis.Cursor = System.Windows.Forms.Cursors.Default;
     this.gvPromotionAnalysis.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
         this.pivotGridField1,
         this.pivotGridField2,
         this.pivotGridField5,
         this.pivotGridField6,
         this.pivotGridField3,
         this.pivotGridField4,
         this.pivotGridField7
     });
     this.gvPromotionAnalysis.Location = new System.Drawing.Point(8, 40);
     this.gvPromotionAnalysis.Name     = "gvPromotionAnalysis";
     this.gvPromotionAnalysis.OptionsCustomization.AllowDrag   = false;
     this.gvPromotionAnalysis.OptionsCustomization.AllowFilter = false;
     this.gvPromotionAnalysis.OptionsCustomization.AllowSort   = false;
     this.gvPromotionAnalysis.OptionsView.ShowDataHeaders      = false;
     this.gvPromotionAnalysis.OptionsView.ShowFilterHeaders    = false;
     this.gvPromotionAnalysis.Size             = new System.Drawing.Size(960, 440);
     this.gvPromotionAnalysis.TabIndex         = 0;
     this.gvPromotionAnalysis.CellDoubleClick += new DevExpress.XtraPivotGrid.PivotCellEventHandler(this.gvPromotionAnalysis_CellDoubleClick);
     //
     // pivotGridField1
     //
     this.pivotGridField1.Appearance.Header.BackColor            = System.Drawing.SystemColors.ActiveCaptionText;
     this.pivotGridField1.Appearance.Header.Options.UseBackColor = true;
     this.pivotGridField1.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField1.AreaIndex = 3;
     this.pivotGridField1.Caption   = "Code";
     this.pivotGridField1.FieldName = "strPromotionCode";
     this.pivotGridField1.Name      = "pivotGridField1";
     //
     // pivotGridField2
     //
     this.pivotGridField2.Area                  = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField2.AreaIndex             = 2;
     this.pivotGridField2.Caption               = "Description";
     this.pivotGridField2.ExpandedInFieldsGroup = false;
     this.pivotGridField2.FieldName             = "strDescription";
     this.pivotGridField2.Name                  = "pivotGridField2";
     this.pivotGridField2.Options.AllowExpand   = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField2.Width                 = 180;
     //
     // pivotGridField5
     //
     this.pivotGridField5.Area      = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.pivotGridField5.AreaIndex = 0;
     this.pivotGridField5.Caption   = "Branch Code";
     this.pivotGridField5.FieldName = "strBranchCode";
     this.pivotGridField5.Name      = "pivotGridField5";
     this.pivotGridField5.Width     = 70;
     //
     // pivotGridField6
     //
     this.pivotGridField6.Area        = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.pivotGridField6.AreaIndex   = 0;
     this.pivotGridField6.FieldName   = "Amount";
     this.pivotGridField6.Name        = "pivotGridField6";
     this.pivotGridField6.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Count;
     //
     // pivotGridField3
     //
     this.pivotGridField3.AllowedAreas                    = DevExpress.XtraPivotGrid.PivotGridAllowedAreas.RowArea;
     this.pivotGridField3.Area                            = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField3.AreaIndex                       = 4;
     this.pivotGridField3.CellFormat.FormatString         = "{yyyy-MM-dd}";
     this.pivotGridField3.FieldName                       = "dtDate";
     this.pivotGridField3.GrandTotalText                  = "Date";
     this.pivotGridField3.Name                            = "pivotGridField3";
     this.pivotGridField3.Options.ShowInCustomizationForm = false;
     this.pivotGridField3.ValueFormat.FormatString        = "MM/dd/yyyy";
     this.pivotGridField3.ValueFormat.FormatType          = DevExpress.Utils.FormatType.DateTime;
     this.pivotGridField3.Width                           = 80;
     //
     // pivotGridField4
     //
     this.pivotGridField4.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField4.AreaIndex = 0;
     this.pivotGridField4.Caption   = "Valid Start";
     this.pivotGridField4.CellFormat.FormatString = "dd/MM/yyyy";
     this.pivotGridField4.CellFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.pivotGridField4.ExpandedInFieldsGroup   = false;
     this.pivotGridField4.FieldName                = "dtValidStart";
     this.pivotGridField4.Name                     = "pivotGridField4";
     this.pivotGridField4.Options.AllowExpand      = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField4.ValueFormat.FormatString = "MM/dd/yyyy";
     this.pivotGridField4.ValueFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.pivotGridField4.Width                    = 80;
     //
     // pivotGridField7
     //
     this.pivotGridField7.Area      = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.pivotGridField7.AreaIndex = 1;
     this.pivotGridField7.Caption   = "Valid End";
     this.pivotGridField7.CellFormat.FormatString = "d";
     this.pivotGridField7.CellFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.pivotGridField7.ExpandedInFieldsGroup   = false;
     this.pivotGridField7.FieldName                = "dtValidEnd";
     this.pivotGridField7.Name                     = "pivotGridField7";
     this.pivotGridField7.Options.AllowExpand      = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridField7.ValueFormat.FormatString = "MM/dd/yyyy";
     this.pivotGridField7.ValueFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.pivotGridField7.Width                    = 80;
     //
     // btnReset
     //
     this.btnReset.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location    = new System.Drawing.Point(752, 8);
     this.btnReset.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnReset.Name     = "btnReset";
     this.btnReset.Size     = new System.Drawing.Size(48, 16);
     this.btnReset.TabIndex = 198;
     this.btnReset.Text     = "Reset";
     this.btnReset.Click   += new System.EventHandler(this.btnReset_Click);
     //
     // sbtnReset
     //
     this.sbtnReset.Appearance.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.sbtnReset.Appearance.Options.UseFont = true;
     this.sbtnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnReset.Location    = new System.Drawing.Point(696, 8);
     this.sbtnReset.LookAndFeel.UseDefaultLookAndFeel = false;
     this.sbtnReset.Name     = "sbtnReset";
     this.sbtnReset.Size     = new System.Drawing.Size(48, 16);
     this.sbtnReset.TabIndex = 192;
     this.sbtnReset.Text     = "Enquiry";
     this.sbtnReset.Click   += new System.EventHandler(this.sbtnReset_Click);
     //
     // lkBranch
     //
     this.lkBranch.Location = new System.Drawing.Point(416, 8);
     this.lkBranch.Name     = "lkBranch";
     //
     // lkBranch.Properties
     //
     this.lkBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkBranch.Size     = new System.Drawing.Size(96, 22);
     this.lkBranch.TabIndex = 191;
     //
     // lkPromotion
     //
     this.lkPromotion.Location = new System.Drawing.Point(592, 8);
     this.lkPromotion.Name     = "lkPromotion";
     //
     // lkPromotion.Properties
     //
     this.lkPromotion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkPromotion.Size     = new System.Drawing.Size(96, 22);
     this.lkPromotion.TabIndex = 190;
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location = new System.Drawing.Point(520, 8);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(72, 16);
     this.label6.TabIndex = 189;
     this.label6.Text     = "Promotion Code";
     //
     // label5
     //
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(360, 8);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(56, 16);
     this.label5.TabIndex = 188;
     this.label5.Text     = "Branch";
     //
     // DateFrom
     //
     this.DateFrom.EditValue = null;
     this.DateFrom.Location  = new System.Drawing.Point(88, 8);
     this.DateFrom.Name      = "DateFrom";
     //
     // DateFrom.Properties
     //
     this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.DateFrom.Size     = new System.Drawing.Size(88, 22);
     this.DateFrom.TabIndex = 199;
     //
     // DateRangeTo
     //
     this.DateRangeTo.EditValue = null;
     this.DateRangeTo.Location  = new System.Drawing.Point(248, 8);
     this.DateRangeTo.Name      = "DateRangeTo";
     //
     // DateRangeTo.Properties
     //
     this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.DateRangeTo.Size     = new System.Drawing.Size(100, 22);
     this.DateRangeTo.TabIndex = 200;
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(72, 16);
     this.label1.TabIndex = 201;
     this.label1.Text     = "Date From";
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(184, 8);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(56, 16);
     this.label2.TabIndex = 202;
     this.label2.Text     = "Date To";
     //
     // RPPromotionAnalysis
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(984, 533);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.DateRangeTo);
     this.Controls.Add(this.DateFrom);
     this.Controls.Add(this.btnReset);
     this.Controls.Add(this.sbtnReset);
     this.Controls.Add(this.lkBranch);
     this.Controls.Add(this.lkPromotion);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.gvPromotionAnalysis);
     this.Name        = "RPPromotionAnalysis";
     this.Text        = "Promotion Analysis";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.RPPromotionAnalysis_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gvPromotionAnalysis)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPromotion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 57
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.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.DateRangeTo = new DevExpress.XtraEditors.DateEdit();
     this.DateFrom = new DevExpress.XtraEditors.DateEdit();
     this.dSPromotion = new ACMS.Dataset.DSPromotion();
     this.tblReceiptPromotionBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.tblReceiptPromotionTableAdapter = new ACMS.Dataset.DSPromotionTableAdapters.tblReceiptPromotionTableAdapter();
     this.GridPromotion = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.MembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dSPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblReceiptPromotionBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridPromotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.SuspendLayout();
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(144, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(33, 23);
     this.label2.TabIndex = 9;
     this.label2.Text = "To";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label1.Location = new System.Drawing.Point(0, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(40, 23);
     this.label1.TabIndex = 8;
     this.label1.Text = "From";
     //
     // DateRangeTo
     //
     this.DateRangeTo.EditValue = null;
     this.DateRangeTo.Location = new System.Drawing.Point(174, 8);
     this.DateRangeTo.Name = "DateRangeTo";
     this.DateRangeTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateRangeTo.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateRangeTo.Size = new System.Drawing.Size(97, 20);
     this.DateRangeTo.TabIndex = 7;
     this.DateRangeTo.EditValueChanged += new System.EventHandler(this.DateRangeTo_EditValueChanged);
     //
     // DateFrom
     //
     this.DateFrom.EditValue = null;
     this.DateFrom.Location = new System.Drawing.Point(40, 8);
     this.DateFrom.Name = "DateFrom";
     this.DateFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DateFrom.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DateFrom.Size = new System.Drawing.Size(100, 20);
     this.DateFrom.TabIndex = 6;
     this.DateFrom.EditValueChanged += new System.EventHandler(this.DateFrom_EditValueChanged);
     //
     // dSPromotion
     //
     this.dSPromotion.DataSetName = "DSPromotion";
     this.dSPromotion.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // tblReceiptPromotionTableAdapter
     //
     this.tblReceiptPromotionTableAdapter.ClearBeforeFill = true;
     //
     // GridPromotion
     //
     this.GridPromotion.DataSource = this.tblReceiptPromotionBindingSource;
     this.GridPromotion.Location = new System.Drawing.Point(3, 58);
     this.GridPromotion.MainView = this.gridView1;
     this.GridPromotion.Name = "GridPromotion";
     this.GridPromotion.Size = new System.Drawing.Size(787, 391);
     this.GridPromotion.TabIndex = 10;
     this.GridPromotion.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1,
     this.gridView2});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.MembershipID,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7});
     this.gridView1.GridControl = this.GridPromotion;
     this.gridView1.Name = "gridView1";
     //
     // gridView2
     //
     this.gridView2.GridControl = this.GridPromotion;
     this.gridView2.Name = "gridView2";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Date";
     this.gridColumn1.FieldName = "dtDate";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Receipt";
     this.gridColumn2.FieldName = "strReceiptNo";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(302, 5);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 11;
     this.simpleButton1.Text = "Generate";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // MembershipID
     //
     this.MembershipID.Caption = "Membership ID";
     this.MembershipID.FieldName = "strMembershipID";
     this.MembershipID.Name = "MembershipID";
     this.MembershipID.Visible = true;
     this.MembershipID.VisibleIndex = 2;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Description";
     this.gridColumn3.FieldName = "strPromotion";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 3;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Sales Person";
     this.gridColumn4.FieldName = "strEmployeeName";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 4;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Type";
     this.gridColumn5.FieldName = "strType";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 5;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Paid";
     this.gridColumn6.FieldName = "Paid";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 6;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Discount";
     this.gridColumn7.FieldName = "Discount";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 7;
     //
     // RPPromotionReport
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(792, 453);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.GridPromotion);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.DateRangeTo);
     this.Controls.Add(this.DateFrom);
     this.Name = "RPPromotionReport";
     this.Text = "Promotions Report";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.PromotionReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateRangeTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DateFrom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dSPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblReceiptPromotionBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridPromotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 58
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblBranch = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.txtRemarks = new DevExpress.XtraEditors.MemoEdit();
     this.lblRemarks = new System.Windows.Forms.Label();
     this.lbldate = new System.Windows.Forms.Label();
     this.dtDate = new DevExpress.XtraEditors.DateEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.cbEmployee = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.cbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.lblStartTime = new System.Windows.Forms.Label();
     this.dtEndTime = new DevExpress.XtraEditors.TimeEdit();
     this.dtStartTime = new DevExpress.XtraEditors.TimeEdit();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEmployee.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartTime.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // lblBranch
     //
     this.lblBranch.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblBranch.Location = new System.Drawing.Point(-58, 142);
     this.lblBranch.Name = "lblBranch";
     this.lblBranch.Size = new System.Drawing.Size(58, 16);
     this.lblBranch.TabIndex = 186;
     this.lblBranch.Text = "Branch";
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(16, 8);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(112, 16);
     this.label4.TabIndex = 191;
     this.label4.Text = "New Roster";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.txtRemarks);
     this.groupControl1.Controls.Add(this.lblRemarks);
     this.groupControl1.Controls.Add(this.lbldate);
     this.groupControl1.Controls.Add(this.dtDate);
     this.groupControl1.Controls.Add(this.label3);
     this.groupControl1.Controls.Add(this.cbEmployee);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.cbBranch);
     this.groupControl1.Controls.Add(this.label1);
     this.groupControl1.Controls.Add(this.lblStartTime);
     this.groupControl1.Controls.Add(this.dtEndTime);
     this.groupControl1.Controls.Add(this.dtStartTime);
     this.groupControl1.Location = new System.Drawing.Point(16, 32);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.ShowCaption = false;
     this.groupControl1.Size = new System.Drawing.Size(280, 256);
     this.groupControl1.TabIndex = 192;
     this.groupControl1.Text = "groupControl1";
     //
     // txtRemarks
     //
     this.txtRemarks.EditValue = "";
     this.txtRemarks.Location = new System.Drawing.Point(16, 184);
     this.txtRemarks.Name = "txtRemarks";
     //
     // txtRemarks.Properties
     //
     this.txtRemarks.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtRemarks.Size = new System.Drawing.Size(232, 64);
     this.txtRemarks.TabIndex = 6;
     //
     // lblRemarks
     //
     this.lblRemarks.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblRemarks.Location = new System.Drawing.Point(16, 168);
     this.lblRemarks.Name = "lblRemarks";
     this.lblRemarks.Size = new System.Drawing.Size(80, 16);
     this.lblRemarks.TabIndex = 201;
     this.lblRemarks.Text = "Remarks";
     //
     // lbldate
     //
     this.lbldate.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lbldate.Location = new System.Drawing.Point(16, 80);
     this.lbldate.Name = "lbldate";
     this.lbldate.Size = new System.Drawing.Size(80, 16);
     this.lbldate.TabIndex = 200;
     this.lbldate.Text = "Date";
     //
     // dtDate
     //
     this.dtDate.EditValue = null;
     this.dtDate.Location = new System.Drawing.Point(104, 80);
     this.dtDate.Name = "dtDate";
     //
     // dtDate.Properties
     //
     this.dtDate.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                    new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dtDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dtDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dtDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
     this.dtDate.Size = new System.Drawing.Size(100, 22);
     this.dtDate.TabIndex = 3;
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(16, 48);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(80, 16);
     this.label3.TabIndex = 198;
     this.label3.Text = "Employee";
     //
     // cbEmployee
     //
     this.cbEmployee.Location = new System.Drawing.Point(104, 48);
     this.cbEmployee.Name = "cbEmployee";
     //
     // cbEmployee.Properties
     //
     this.cbEmployee.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbEmployee.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbEmployee.Size = new System.Drawing.Size(144, 22);
     this.cbEmployee.TabIndex = 2;
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(16, 16);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(80, 16);
     this.label2.TabIndex = 196;
     this.label2.Text = "Branch";
     //
     // cbBranch
     //
     this.cbBranch.Location = new System.Drawing.Point(104, 16);
     this.cbBranch.Name = "cbBranch";
     //
     // cbBranch.Properties
     //
     this.cbBranch.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.cbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                      new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbBranch.Size = new System.Drawing.Size(144, 22);
     this.cbBranch.TabIndex = 1;
     this.cbBranch.SelectedIndexChanged += new System.EventHandler(this.cbBranch_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(144, 112);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(80, 16);
     this.label1.TabIndex = 194;
     this.label1.Text = "End Time";
     //
     // lblStartTime
     //
     this.lblStartTime.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblStartTime.Location = new System.Drawing.Point(16, 112);
     this.lblStartTime.Name = "lblStartTime";
     this.lblStartTime.Size = new System.Drawing.Size(80, 16);
     this.lblStartTime.TabIndex = 193;
     this.lblStartTime.Text = "Start Time";
     //
     // dtEndTime
     //
     this.dtEndTime.EditValue = null;
     this.dtEndTime.Location = new System.Drawing.Point(144, 136);
     this.dtEndTime.Name = "dtEndTime";
     //
     // dtEndTime.Properties
     //
     this.dtEndTime.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtEndTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtEndTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dtEndTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtEndTime.Properties.EditFormat.FormatString = "hh:mm tt";
     this.dtEndTime.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtEndTime.Size = new System.Drawing.Size(104, 22);
     this.dtEndTime.TabIndex = 5;
     //
     // dtStartTime
     //
     this.dtStartTime.EditValue = null;
     this.dtStartTime.Location = new System.Drawing.Point(16, 136);
     this.dtStartTime.Name = "dtStartTime";
     //
     // dtStartTime.Properties
     //
     this.dtStartTime.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.dtStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dtStartTime.Properties.DisplayFormat.FormatString = "hh:mm tt";
     this.dtStartTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtStartTime.Properties.EditFormat.FormatString = "hh:mm tt";
     this.dtStartTime.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.dtStartTime.Size = new System.Drawing.Size(104, 22);
     this.dtStartTime.TabIndex = 4;
     //
     // btnSave
     //
     this.btnSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnSave.Appearance.Options.UseFont = true;
     this.btnSave.Location = new System.Drawing.Point(128, 296);
     this.btnSave.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnSave.Name = "btnSave";
     this.btnSave.TabIndex = 7;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnCancel.Appearance.Options.UseFont = true;
     this.btnCancel.Location = new System.Drawing.Point(208, 296);
     this.btnCancel.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.TabIndex = 8;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // frmRosterNew
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(306, 327);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.lblBranch);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnCancel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmRosterNew";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Add New Roster";
     this.Load += new System.EventHandler(this.frmRosterNew_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbEmployee.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartTime.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 59
0
 public static void SetLimits(this DevExpress.XtraEditors.DateEdit edit)
 {
     edit.Properties.MinValue = new DateTime(Constants.MinYear, 1, 1);
     edit.Properties.MaxValue = new DateTime(Constants.MaxYear, 1, 1);
 }
Ejemplo n.º 60
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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucChiTiet));
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.bm = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bbiXem = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSua = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatExcel = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDong = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.img = new DevExpress.Utils.ImageCollection(this.components);
     this.gcList = new DevExpress.XtraGrid.GridControl();
     this.cHUNGTUCHITIETTheoNgayBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsCamDo = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDo();
     this.gbList = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colMa_Chi_Tiet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colMa_Chung_Tu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colNgay = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTen_Khach_Hang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_CMND = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colDia_Chi = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSo_Tien_Cam = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptMayTinh = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.colTen_Tai_San = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colLoai_Vang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colTrong_Luong_Vang_18k = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong_Vang_24k = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong_Khac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTrong_Luong = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.colChuan_Do = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colGia_Tri_Vat_Cam = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colSap_Xep = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colTinh_Trang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.rptMayTinhPhanTram = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.txtDen = new DevExpress.XtraEditors.DateEdit();
     this.txtTu = new DevExpress.XtraEditors.DateEdit();
     this.cbTuyChon = new DevExpress.XtraEditors.ComboBoxEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.cHUNG_TU_CHI_TIET_Theo_NgayTableAdapter = new Phan_Mem_Quan_Ly_Cam_Do.CamDo.DS.dsCamDoTableAdapters.CHUNG_TU_CHI_TIET_Theo_NgayTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.bm)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUCHITIETTheoNgayBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCamDo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinhPhanTram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTuyChon.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     this.SuspendLayout();
     //
     // bm
     //
     this.bm.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     this.bm.DockControls.Add(this.barDockControlTop);
     this.bm.DockControls.Add(this.barDockControlBottom);
     this.bm.DockControls.Add(this.barDockControlLeft);
     this.bm.DockControls.Add(this.barDockControlRight);
     this.bm.Form = this;
     this.bm.Images = this.img;
     this.bm.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiSua,
     this.bbiDong,
     this.bbiXem,
     this.bbiXuatExcel});
     this.bm.LargeImages = this.img;
     this.bm.MainMenu = this.bar2;
     this.bm.MaxItemId = 7;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiSua),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiXuatExcel),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiDong)});
     this.bar2.OptionsBar.MultiLine = true;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Main menu";
     //
     // bbiXem
     //
     this.bbiXem.Caption = "Xem";
     this.bbiXem.Id = 5;
     this.bbiXem.ImageIndex = 35;
     this.bbiXem.Name = "bbiXem";
     this.bbiXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXem_ItemClick);
     //
     // bbiSua
     //
     this.bbiSua.Caption = "Sửa";
     this.bbiSua.Id = 1;
     this.bbiSua.ImageIndex = 29;
     this.bbiSua.Name = "bbiSua";
     this.bbiSua.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiSua.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiSua_ItemClick);
     //
     // bbiXuatExcel
     //
     this.bbiXuatExcel.Caption = "Xuất Excel";
     this.bbiXuatExcel.Id = 6;
     this.bbiXuatExcel.ImageIndex = 54;
     this.bbiXuatExcel.Name = "bbiXuatExcel";
     this.bbiXuatExcel.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiXuatExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatExcel_ItemClick);
     //
     // bbiDong
     //
     this.bbiDong.Caption = "Đóng";
     this.bbiDong.Id = 3;
     this.bbiDong.ImageIndex = 10;
     this.bbiDong.Name = "bbiDong";
     this.bbiDong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bbiDong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiDong_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1133, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 636);
     this.barDockControlBottom.Size = new System.Drawing.Size(1133, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 612);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1133, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 612);
     //
     // img
     //
     this.img.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("img.ImageStream")));
     this.img.Images.SetKeyName(0, "abort.png");
     this.img.Images.SetKeyName(1, "about.png");
     this.img.Images.SetKeyName(2, "accept.png");
     this.img.Images.SetKeyName(3, "add.png");
     this.img.Images.SetKeyName(4, "application.png");
     this.img.Images.SetKeyName(5, "apply.png");
     this.img.Images.SetKeyName(6, "attention.png");
     this.img.Images.SetKeyName(7, "back.png");
     this.img.Images.SetKeyName(8, "cancel.png");
     this.img.Images.SetKeyName(9, "circulation.png");
     this.img.Images.SetKeyName(10, "close.png");
     this.img.Images.SetKeyName(11, "create.png");
     this.img.Images.SetKeyName(12, "cut.png");
     this.img.Images.SetKeyName(13, "danger.png");
     this.img.Images.SetKeyName(14, "delete.png");
     this.img.Images.SetKeyName(15, "down.png");
     this.img.Images.SetKeyName(16, "erase.png");
     this.img.Images.SetKeyName(17, "error.png");
     this.img.Images.SetKeyName(18, "forward.png");
     this.img.Images.SetKeyName(19, "help.png");
     this.img.Images.SetKeyName(20, "info.png");
     this.img.Images.SetKeyName(21, "information.png");
     this.img.Images.SetKeyName(22, "logout.png");
     this.img.Images.SetKeyName(23, "minus.png");
     this.img.Images.SetKeyName(24, "move.png");
     this.img.Images.SetKeyName(25, "next.png");
     this.img.Images.SetKeyName(26, "no entry.png");
     this.img.Images.SetKeyName(27, "no.png");
     this.img.Images.SetKeyName(28, "OK.png");
     this.img.Images.SetKeyName(29, "options.png");
     this.img.Images.SetKeyName(30, "plus.png");
     this.img.Images.SetKeyName(31, "previous.png");
     this.img.Images.SetKeyName(32, "problem.png");
     this.img.Images.SetKeyName(33, "question.png");
     this.img.Images.SetKeyName(34, "redo.png");
     this.img.Images.SetKeyName(35, "refresh.png");
     this.img.Images.SetKeyName(36, "remove.png");
     this.img.Images.SetKeyName(37, "renew.png");
     this.img.Images.SetKeyName(38, "repeat.png");
     this.img.Images.SetKeyName(39, "run.png");
     this.img.Images.SetKeyName(40, "save.png");
     this.img.Images.SetKeyName(41, "search.png");
     this.img.Images.SetKeyName(42, "settings.png");
     this.img.Images.SetKeyName(43, "stop.png");
     this.img.Images.SetKeyName(44, "switch.png");
     this.img.Images.SetKeyName(45, "sync.png");
     this.img.Images.SetKeyName(46, "system.png");
     this.img.Images.SetKeyName(47, "turn off.png");
     this.img.Images.SetKeyName(48, "undo.png");
     this.img.Images.SetKeyName(49, "up.png");
     this.img.Images.SetKeyName(50, "update.png");
     this.img.Images.SetKeyName(51, "view.png");
     this.img.Images.SetKeyName(52, "warning.png");
     this.img.Images.SetKeyName(53, "yes.png");
     this.img.Images.SetKeyName(54, "Excel-icon.png");
     //
     // gcList
     //
     this.gcList.DataSource = this.cHUNGTUCHITIETTheoNgayBindingSource;
     this.gcList.Location = new System.Drawing.Point(2, 26);
     this.gcList.MainView = this.gbList;
     this.gcList.MenuManager = this.bm;
     this.gcList.Name = "gcList";
     this.gcList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rptMayTinh,
     this.rptMayTinhPhanTram});
     this.gcList.Size = new System.Drawing.Size(1129, 584);
     this.gcList.TabIndex = 4;
     this.gcList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gbList});
     //
     // cHUNGTUCHITIETTheoNgayBindingSource
     //
     this.cHUNGTUCHITIETTheoNgayBindingSource.DataMember = "CHUNG_TU_CHI_TIET_Theo_Ngay";
     this.cHUNGTUCHITIETTheoNgayBindingSource.DataSource = this.dsCamDo;
     //
     // dsCamDo
     //
     this.dsCamDo.DataSetName = "dsCamDo";
     this.dsCamDo.EnforceConstraints = false;
     this.dsCamDo.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gbList
     //
     this.gbList.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gbList.Appearance.GroupRow.ForeColor = System.Drawing.Color.Red;
     this.gbList.Appearance.GroupRow.Options.UseFont = true;
     this.gbList.Appearance.GroupRow.Options.UseForeColor = true;
     this.gbList.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1,
     this.gridBand2,
     this.gridBand3});
     this.gbList.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.colMa_Chi_Tiet,
     this.colMa_Chung_Tu,
     this.colNgay,
     this.colTen_Khach_Hang,
     this.colSo_CMND,
     this.colDia_Chi,
     this.colSo_Tien_Cam,
     this.colTen_Tai_San,
     this.colLoai_Vang,
     this.colTrong_Luong,
     this.colChuan_Do,
     this.colGia_Tri_Vat_Cam,
     this.colSap_Xep,
     this.colTinh_Trang,
     this.colTrong_Luong_Vang_18k,
     this.colTrong_Luong_Vang_24k,
     this.colTrong_Luong_Khac});
     this.gbList.CustomizationFormBounds = new System.Drawing.Rectangle(427, 278, 216, 199);
     styleFormatCondition1.Appearance.ForeColor = System.Drawing.Color.Red;
     styleFormatCondition1.Appearance.Options.UseForeColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "Iif([Tinh_Trang] == \'R\',True  ,False )";
     this.gbList.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.gbList.GridControl = this.gcList;
     this.gbList.GroupPanelText = "Kéo cột và thả vào đây để nhóm dữ liệu";
     this.gbList.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Thanh_Tien", null, " - Thành Tiền - {0:##,##0,###}")});
     this.gbList.IndicatorWidth = 40;
     this.gbList.Name = "gbList";
     this.gbList.OptionsBehavior.AutoExpandAllGroups = true;
     this.gbList.OptionsView.ColumnAutoWidth = false;
     this.gbList.OptionsView.ShowAutoFilterRow = true;
     this.gbList.OptionsView.ShowFooter = true;
     this.gbList.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colMa_Chung_Tu, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gbList.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gbList_CustomDrawRowIndicator);
     //
     // gridBand1
     //
     this.gridBand1.Columns.Add(this.colMa_Chi_Tiet);
     this.gridBand1.Columns.Add(this.colMa_Chung_Tu);
     this.gridBand1.Columns.Add(this.colNgay);
     this.gridBand1.Columns.Add(this.colTen_Khach_Hang);
     this.gridBand1.Columns.Add(this.colSo_CMND);
     this.gridBand1.Columns.Add(this.colDia_Chi);
     this.gridBand1.Columns.Add(this.colSo_Tien_Cam);
     this.gridBand1.Columns.Add(this.colTen_Tai_San);
     this.gridBand1.Columns.Add(this.colLoai_Vang);
     this.gridBand1.MinWidth = 20;
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.VisibleIndex = 0;
     this.gridBand1.Width = 659;
     //
     // colMa_Chi_Tiet
     //
     this.colMa_Chi_Tiet.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chi_Tiet.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chi_Tiet.FieldName = "Ma_Chi_Tiet";
     this.colMa_Chi_Tiet.Name = "colMa_Chi_Tiet";
     this.colMa_Chi_Tiet.OptionsColumn.ReadOnly = true;
     this.colMa_Chi_Tiet.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     //
     // colMa_Chung_Tu
     //
     this.colMa_Chung_Tu.AppearanceHeader.Options.UseTextOptions = true;
     this.colMa_Chung_Tu.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMa_Chung_Tu.Caption = "Mã Chứng Từ";
     this.colMa_Chung_Tu.FieldName = "Ma_Chung_Tu";
     this.colMa_Chung_Tu.Name = "colMa_Chung_Tu";
     this.colMa_Chung_Tu.OptionsColumn.ReadOnly = true;
     this.colMa_Chung_Tu.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colMa_Chung_Tu.Visible = true;
     this.colMa_Chung_Tu.Width = 100;
     //
     // colNgay
     //
     this.colNgay.AppearanceHeader.Options.UseTextOptions = true;
     this.colNgay.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colNgay.Caption = "Ngày";
     this.colNgay.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colNgay.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.colNgay.FieldName = "Ngay";
     this.colNgay.Name = "colNgay";
     this.colNgay.OptionsColumn.ReadOnly = true;
     this.colNgay.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colNgay.Visible = true;
     //
     // colTen_Khach_Hang
     //
     this.colTen_Khach_Hang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Khach_Hang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Khach_Hang.Caption = "Tên Khách Hàng";
     this.colTen_Khach_Hang.FieldName = "Ten_Khach_Hang";
     this.colTen_Khach_Hang.Name = "colTen_Khach_Hang";
     this.colTen_Khach_Hang.OptionsColumn.ReadOnly = true;
     this.colTen_Khach_Hang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Khach_Hang.Visible = true;
     this.colTen_Khach_Hang.Width = 100;
     //
     // colSo_CMND
     //
     this.colSo_CMND.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_CMND.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_CMND.Caption = "Số CMND";
     this.colSo_CMND.FieldName = "So_CMND";
     this.colSo_CMND.Name = "colSo_CMND";
     this.colSo_CMND.OptionsColumn.ReadOnly = true;
     this.colSo_CMND.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_CMND.Visible = true;
     //
     // colDia_Chi
     //
     this.colDia_Chi.AppearanceHeader.Options.UseTextOptions = true;
     this.colDia_Chi.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDia_Chi.Caption = "Địa Chỉ";
     this.colDia_Chi.FieldName = "Dia_Chi";
     this.colDia_Chi.Name = "colDia_Chi";
     this.colDia_Chi.OptionsColumn.ReadOnly = true;
     this.colDia_Chi.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colDia_Chi.Visible = true;
     //
     // colSo_Tien_Cam
     //
     this.colSo_Tien_Cam.AppearanceHeader.Options.UseTextOptions = true;
     this.colSo_Tien_Cam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSo_Tien_Cam.Caption = "Số Tiền Cầm";
     this.colSo_Tien_Cam.ColumnEdit = this.rptMayTinh;
     this.colSo_Tien_Cam.FieldName = "So_Tien_Cam";
     this.colSo_Tien_Cam.Name = "colSo_Tien_Cam";
     this.colSo_Tien_Cam.OptionsColumn.ReadOnly = true;
     this.colSo_Tien_Cam.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSo_Tien_Cam.Visible = true;
     this.colSo_Tien_Cam.Width = 81;
     //
     // rptMayTinh
     //
     this.rptMayTinh.AutoHeight = false;
     this.rptMayTinh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinh.DisplayFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.EditFormat.FormatString = "{0:##,##0.###}";
     this.rptMayTinh.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinh.Name = "rptMayTinh";
     //
     // colTen_Tai_San
     //
     this.colTen_Tai_San.AppearanceHeader.Options.UseTextOptions = true;
     this.colTen_Tai_San.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTen_Tai_San.Caption = "Tên Tài Sản";
     this.colTen_Tai_San.FieldName = "Ten_Tai_San";
     this.colTen_Tai_San.Name = "colTen_Tai_San";
     this.colTen_Tai_San.OptionsColumn.ReadOnly = true;
     this.colTen_Tai_San.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTen_Tai_San.Visible = true;
     this.colTen_Tai_San.Width = 78;
     //
     // colLoai_Vang
     //
     this.colLoai_Vang.AppearanceHeader.Options.UseTextOptions = true;
     this.colLoai_Vang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colLoai_Vang.Caption = "Loại Vàng";
     this.colLoai_Vang.FieldName = "Loai_Vang";
     this.colLoai_Vang.Name = "colLoai_Vang";
     this.colLoai_Vang.OptionsColumn.ReadOnly = true;
     this.colLoai_Vang.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colLoai_Vang.Visible = true;
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Trọng Lượng";
     this.gridBand2.Columns.Add(this.colTrong_Luong_Vang_18k);
     this.gridBand2.Columns.Add(this.colTrong_Luong_Vang_24k);
     this.gridBand2.Columns.Add(this.colTrong_Luong_Khac);
     this.gridBand2.Columns.Add(this.colTrong_Luong);
     this.gridBand2.MinWidth = 20;
     this.gridBand2.Name = "gridBand2";
     this.gridBand2.VisibleIndex = 1;
     this.gridBand2.Width = 308;
     //
     // colTrong_Luong_Vang_18k
     //
     this.colTrong_Luong_Vang_18k.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Vang_18k.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Vang_18k.Caption = "18k";
     this.colTrong_Luong_Vang_18k.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Vang_18k.FieldName = "Trong_Luong_Vang_18k";
     this.colTrong_Luong_Vang_18k.Name = "colTrong_Luong_Vang_18k";
     this.colTrong_Luong_Vang_18k.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong_Vang_18k.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong_Vang_18k.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Vang_18k", "{0:##,##0.###}")});
     this.colTrong_Luong_Vang_18k.Visible = true;
     //
     // colTrong_Luong_Vang_24k
     //
     this.colTrong_Luong_Vang_24k.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Vang_24k.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Vang_24k.Caption = "24k";
     this.colTrong_Luong_Vang_24k.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Vang_24k.FieldName = "Trong_Luong_Vang_24k";
     this.colTrong_Luong_Vang_24k.Name = "colTrong_Luong_Vang_24k";
     this.colTrong_Luong_Vang_24k.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong_Vang_24k.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong_Vang_24k.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Vang_24k", "{0:##,##0.###}")});
     this.colTrong_Luong_Vang_24k.Visible = true;
     //
     // colTrong_Luong_Khac
     //
     this.colTrong_Luong_Khac.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong_Khac.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong_Khac.Caption = "Khác";
     this.colTrong_Luong_Khac.ColumnEdit = this.rptMayTinh;
     this.colTrong_Luong_Khac.FieldName = "Trong_Luong_Khac";
     this.colTrong_Luong_Khac.Name = "colTrong_Luong_Khac";
     this.colTrong_Luong_Khac.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong_Khac.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong_Khac.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Trong_Luong_Khac", "{0:##,##0.###}")});
     this.colTrong_Luong_Khac.Visible = true;
     //
     // colTrong_Luong
     //
     this.colTrong_Luong.AppearanceHeader.Options.UseTextOptions = true;
     this.colTrong_Luong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTrong_Luong.Caption = "Trọng Lượng";
     this.colTrong_Luong.FieldName = "Trong_Luong";
     this.colTrong_Luong.Name = "colTrong_Luong";
     this.colTrong_Luong.OptionsColumn.ReadOnly = true;
     this.colTrong_Luong.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colTrong_Luong.Visible = true;
     this.colTrong_Luong.Width = 83;
     //
     // gridBand3
     //
     this.gridBand3.Columns.Add(this.colChuan_Do);
     this.gridBand3.Columns.Add(this.colGia_Tri_Vat_Cam);
     this.gridBand3.Columns.Add(this.colSap_Xep);
     this.gridBand3.Columns.Add(this.colTinh_Trang);
     this.gridBand3.MinWidth = 20;
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.VisibleIndex = 2;
     this.gridBand3.Width = 245;
     //
     // colChuan_Do
     //
     this.colChuan_Do.AppearanceHeader.Options.UseTextOptions = true;
     this.colChuan_Do.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colChuan_Do.Caption = "Chuẩn Độ";
     this.colChuan_Do.FieldName = "Chuan_Do";
     this.colChuan_Do.Name = "colChuan_Do";
     this.colChuan_Do.OptionsColumn.ReadOnly = true;
     this.colChuan_Do.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colChuan_Do.Visible = true;
     //
     // colGia_Tri_Vat_Cam
     //
     this.colGia_Tri_Vat_Cam.AppearanceHeader.Options.UseTextOptions = true;
     this.colGia_Tri_Vat_Cam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colGia_Tri_Vat_Cam.Caption = "Giá Trị Vật Cầm";
     this.colGia_Tri_Vat_Cam.ColumnEdit = this.rptMayTinh;
     this.colGia_Tri_Vat_Cam.FieldName = "Gia_Tri_Vat_Cam";
     this.colGia_Tri_Vat_Cam.Name = "colGia_Tri_Vat_Cam";
     this.colGia_Tri_Vat_Cam.OptionsColumn.ReadOnly = true;
     this.colGia_Tri_Vat_Cam.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colGia_Tri_Vat_Cam.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Gia_Tri_Vat_Cam", "{0:##,##0.###}")});
     this.colGia_Tri_Vat_Cam.Visible = true;
     this.colGia_Tri_Vat_Cam.Width = 95;
     //
     // colSap_Xep
     //
     this.colSap_Xep.AppearanceHeader.Options.UseTextOptions = true;
     this.colSap_Xep.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSap_Xep.Caption = "Sắp Xếp";
     this.colSap_Xep.FieldName = "Sap_Xep";
     this.colSap_Xep.Name = "colSap_Xep";
     this.colSap_Xep.OptionsColumn.ReadOnly = true;
     this.colSap_Xep.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Contains;
     this.colSap_Xep.Visible = true;
     //
     // colTinh_Trang
     //
     this.colTinh_Trang.AppearanceHeader.Options.UseTextOptions = true;
     this.colTinh_Trang.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTinh_Trang.FieldName = "Tinh_Trang";
     this.colTinh_Trang.Name = "colTinh_Trang";
     //
     // rptMayTinhPhanTram
     //
     this.rptMayTinhPhanTram.AutoHeight = false;
     this.rptMayTinhPhanTram.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rptMayTinhPhanTram.DisplayFormat.FormatString = "{0:##,##0.###} %";
     this.rptMayTinhPhanTram.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinhPhanTram.EditFormat.FormatString = "{0:##,##0.###} %";
     this.rptMayTinhPhanTram.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.rptMayTinhPhanTram.Name = "rptMayTinhPhanTram";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.txtDen);
     this.layoutControl1.Controls.Add(this.txtTu);
     this.layoutControl1.Controls.Add(this.cbTuyChon);
     this.layoutControl1.Controls.Add(this.gcList);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 24);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1133, 612);
     this.layoutControl1.TabIndex = 5;
     this.layoutControl1.Text = "layoutControl1";
     //
     // layoutControl2
     //
     this.layoutControl2.Location = new System.Drawing.Point(541, 2);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.Root = this.layoutControlGroup2;
     this.layoutControl2.Size = new System.Drawing.Size(590, 20);
     this.layoutControl2.TabIndex = 8;
     this.layoutControl2.Text = "layoutControl2";
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup2.GroupBordersVisible = false;
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(590, 20);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // txtDen
     //
     this.txtDen.EditValue = null;
     this.txtDen.Location = new System.Drawing.Point(397, 2);
     this.txtDen.MenuManager = this.bm;
     this.txtDen.Name = "txtDen";
     this.txtDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtDen.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDen.Properties.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtDen.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtDen.Properties.EditFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtDen.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtDen.Size = new System.Drawing.Size(140, 20);
     this.txtDen.StyleController = this.layoutControl1;
     this.txtDen.TabIndex = 7;
     //
     // txtTu
     //
     this.txtTu.EditValue = null;
     this.txtTu.Location = new System.Drawing.Point(217, 2);
     this.txtTu.MenuManager = this.bm;
     this.txtTu.Name = "txtTu";
     this.txtTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtTu.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtTu.Properties.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtTu.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtTu.Properties.EditFormat.FormatString = "{0:dd/MM/yyyy}";
     this.txtTu.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.txtTu.Size = new System.Drawing.Size(141, 20);
     this.txtTu.StyleController = this.layoutControl1;
     this.txtTu.TabIndex = 6;
     //
     // cbTuyChon
     //
     this.cbTuyChon.EditValue = "Tùy chọn";
     this.cbTuyChon.Location = new System.Drawing.Point(57, 2);
     this.cbTuyChon.MenuManager = this.bm;
     this.cbTuyChon.Name = "cbTuyChon";
     this.cbTuyChon.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTuyChon.Properties.Items.AddRange(new object[] {
     "Tùy chọn",
     "Tất cả",
     "Tháng 1",
     "Tháng 2",
     "Tháng 3",
     "Tháng 4",
     "Tháng 5",
     "Tháng 6",
     "Tháng 7",
     "Tháng 8",
     "Tháng 9",
     "Tháng 10",
     "Tháng 11",
     "Tháng 12"});
     this.cbTuyChon.Size = new System.Drawing.Size(121, 20);
     this.cbTuyChon.StyleController = this.layoutControl1;
     this.cbTuyChon.TabIndex = 5;
     this.cbTuyChon.SelectedIndexChanged += new System.EventHandler(this.cbTuyChon_SelectedIndexChanged);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.layoutControlItem5});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1133, 612);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gcList;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1133, 588);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cbTuyChon;
     this.layoutControlItem2.CustomizationFormText = "Tùy Chọn";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(180, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(109, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(180, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Tùy Chọn";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(50, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.txtTu;
     this.layoutControlItem3.CustomizationFormText = "Từ";
     this.layoutControlItem3.Location = new System.Drawing.Point(180, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(180, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(151, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(180, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Từ";
     this.layoutControlItem3.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem3.TextToControlDistance = 5;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.txtDen;
     this.layoutControlItem4.CustomizationFormText = "Đến";
     this.layoutControlItem4.Location = new System.Drawing.Point(360, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(180, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(151, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(179, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Đến";
     this.layoutControlItem4.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem4.TextToControlDistance = 5;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.layoutControl2;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(539, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(594, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // cHUNG_TU_CHI_TIET_Theo_NgayTableAdapter
     //
     this.cHUNG_TU_CHI_TIET_Theo_NgayTableAdapter.ClearBeforeFill = true;
     //
     // ucChiTiet
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.layoutControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "ucChiTiet";
     this.Size = new System.Drawing.Size(1133, 636);
     ((System.ComponentModel.ISupportInitialize)(this.bm)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.img)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cHUNGTUCHITIETTheoNgayBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCamDo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gbList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinh)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rptMayTinhPhanTram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTuyChon.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     this.ResumeLayout(false);
 }