Example #1
0
        public static DataView LoadGrid(控件库.表格控件.Grid _Grid, string tbName, string Fliter, string sort, bool order)
        {
            GatherReport report = new GatherReport();
            GatherTable  tab    = report.GetReportTable(tbName);

            DevExpress.XtraEditors.Repository.RepositoryItemTextEdit text = null;
            for (int i = 0; i < _Grid.ExportBandView.Columns.Count; i++)
            {
                text = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();

                _Grid.ExportBandView.Columns[i].ColumnEdit = text;
                _Grid.ExportBandView.Columns[i].OptionsColumn.AllowEdit = true;
                tab.计算列准备(_Grid.ExportBandView.Columns[i].FieldName, _Grid, text);
            }
            DataTable tb2 = GetReportTable(tbName);

            if (order)
            {
                tb2.Columns.Add("序号", typeof(int));
            }
            DataView view = new DataView(tb2, Fliter, sort, DataViewRowState.CurrentRows);

            if (order)
            {
                SetOrder(view);
            }
            _Grid.SetDataSource(view);
            return(view);
        }
        public void LlenarGridConsulta2()
        {
            DgvGeneral.Columns.Clear();
            DgvGeneral.OptionsView.ColumnAutoWidth = false;
            DataViewManager dvm    = new DataViewManager(dsConsulta2);
            DataView        dvMain = dvm.CreateDataView(dsConsulta2.Tables[0]);

            DgvGeneral.OptionsBehavior.AutoPopulateColumns = true;
            GctrlGeneral.DataSource = dvMain;

            DgvGeneral.Columns[0].Visible = false;
            DgvGeneral.Columns[1].BestFit();

            DevExpress.XtraEditors.Repository.RepositoryItemTextEdit numerico2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            numerico2.Mask.EditMask = "n";
            numerico2.Mask.UseMaskAsDisplayFormat = true;
            numerico2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;

            for (int i = 2; i < DgvGeneral.Columns.Count - 1; i++)
            {
                DgvGeneral.Columns[i].ColumnEdit = numerico2;
                DgvGeneral.Columns[i].BestFit();
            }

            Font fuenteNegrita = new Font("Tahoma", 8.25F, FontStyle.Bold);

            DgvGeneral.Columns[1].AppearanceCell.Font = fuenteNegrita;

            Funciones.getInstancia().Configurar_Grid(DgvGeneral);
            DgvGeneral.OptionsBehavior.Editable        = false;
            DgvGeneral.OptionsCustomization.AllowSort  = false;
            DgvGeneral.OptionsView.ColumnAutoWidth     = false;
            DgvGeneral.OptionsCustomization.AllowGroup = true;
            DgvGeneral.OptionsView.ShowGroupPanel      = false;
        }
Example #3
0
        public void setReadOnlyRow(CustomRowCellEditEventArgs e)
        {
            var repoReadOnly = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();

            repoReadOnly.Name     = "repoTextEditReadOnly";
            repoReadOnly.ReadOnly = true;
            e.RepositoryItem      = repoReadOnly;
        }
        /// <summary> LlenarGrid(DataSet d)
        /// Permite llenar la grilla con un Dataset
        /// </summary>
        /// <param name="d">En este parametro se recibe el Dataset con que se va a llenar la grilla DgvCampos </param>
        public void LlenarGridCampos(DataSet d)
        {
            if (d != null)
            {
                DgvCampos.Columns.Clear();
                DataViewManager dvm    = new DataViewManager(d);
                DataView        dvMain = dvm.CreateDataView(d.Tables[0]);

                DgvCampos.OptionsBehavior.AutoPopulateColumns = false;
                GcrtlCampos.DataSource = dvMain;

                GridColumn[] col = new GridColumn[d.Tables[0].Columns.Count];

                string[] captions = new[] { "Campo", "Agregar", "Visible" };

                for (int i = 0; i < d.Tables[0].Columns.Count; i++)
                {
                    col[i] = DgvCampos.Columns.AddField(d.Tables[0].Columns[i].Caption.Trim());
                    col[i].VisibleIndex = i;
                    col[i].Caption      = captions[i];
                    col[i].FieldName    = captions[i];
                }

                DgvCampos.Columns["Campo"].Width   = 504;
                DgvCampos.Columns["Agregar"].Width = 48;
                DgvCampos.Columns["Visible"].Width = 47;
                DevExpress.XtraEditors.Repository.RepositoryItemTextEdit memo = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
                memo.ReadOnly = true;
                DgvCampos.Columns[0].ColumnEdit = memo;
                DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit memo1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
                memo1.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Standard;
                DgvCampos.Columns[1].ColumnEdit = memo1;
                DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit memo2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
                DgvCampos.Columns[2].ColumnEdit = memo2;
            }

            DgvCampos.OptionsBehavior.AutoPopulateColumns    = false;
            DgvCampos.OptionsBehavior.AllowDeleteRows        = DevExpress.Utils.DefaultBoolean.False;
            DgvCampos.OptionsBehavior.AllowAddRows           = DevExpress.Utils.DefaultBoolean.False;
            DgvCampos.OptionsView.ColumnAutoWidth            = false;
            DgvCampos.OptionsFilter.AllowFilterEditor        = false;
            DgvCampos.OptionsFilter.AllowColumnMRUFilterList = false;
            DgvCampos.OptionsFilter.AllowMRUFilterList       = false;
            DgvCampos.OptionsFilter.MRUFilterListPopupCount  = 0;
            DgvCampos.OptionsFilter.MRUFilterListCount       = 0;
            DgvCampos.OptionsFilter.MRUColumnFilterListCount = 0;
            DgvCampos.OptionsView.EnableAppearanceOddRow     = true;
            DgvCampos.OptionsView.ShowAutoFilterRow          = false;
            DgvCampos.OptionsView.ShowGroupPanel             = false;
            DgvCampos.OptionsHint.ShowColumnHeaderHints      = false;
            DgvCampos.OptionsView.ShowIndicator                  = true;
            DgvCampos.OptionsView.ShowFilterPanelMode            = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Default;
            DgvCampos.OptionsCustomization.AllowQuickHideColumns = false;
            DgvCampos.OptionsCustomization.AllowFilter           = false;
            DgvCampos.OptionsMenu.EnableColumnMenu               = false;
            DgvCampos.ScrollStyle          = DevExpress.XtraGrid.Views.Grid.ScrollStyleFlags.LiveHorzScroll;
            DgvCampos.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
        }
Example #5
0
        public void 计算列准备(string filedName, 控件库.表格控件.Grid _Grid, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit edit)
        {
            int len = this.row.List.Count;

            for (int i = 0; i < len; i++)
            {
                if (this.row.List[i].field.FieldName == filedName)
                {
                    this.row.List[i].计算列准备(_Grid, edit);
                }
            }
        }
Example #6
0
        private void gridView2_CustomRowCellEdit(object sender, DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventArgs e)
        {
            var repositoryItemTextEditReadOnly = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();

            repositoryItemTextEditReadOnly.Name     = "repositoryItemTextEditReadOnly";
            repositoryItemTextEditReadOnly.ReadOnly = true;

            if (e.RowHandle == 35)
            {
                e.RepositoryItem = repositoryItemTextEditReadOnly;
            }
        }
 private void InitializeComponent()
 {
     this.Properties = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // Properties
     //
     this.Properties.Name = "Properties";
     ((System.ComponentModel.ISupportInitialize)(this.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Example #8
0
 private void gridView1_FocusedColumnChanged(object sender, DevExpress.XtraGrid.Views.Base.FocusedColumnChangedEventArgs e)
 {
     DevExpress.XtraEditors.Repository.RepositoryItemTextEdit edit = e.FocusedColumn.ColumnEdit as DevExpress.XtraEditors.Repository.RepositoryItemTextEdit;
     if (edit != null && edit.Mask.MaskType == DevExpress.XtraEditors.Mask.MaskType.Numeric)
     {
         oldInput = InputLanguage.CurrentInputLanguage;
         InputLanguage.CurrentInputLanguage = null;
     }
     else
     {
         if (oldInput != null && oldInput != InputLanguage.CurrentInputLanguage)
         {
             InputLanguage.CurrentInputLanguage = oldInput;
         }
     }
 }
Example #9
0
 private void vGridControl_FocusedRowChanged(object sender, DevExpress.XtraVerticalGrid.Events.FocusedRowChangedEventArgs e)
 {
     DevExpress.XtraEditors.Repository.RepositoryItemTextEdit edit = e.Row.Properties.RowEdit as DevExpress.XtraEditors.Repository.RepositoryItemTextEdit;
     if (edit != null && edit.Mask.MaskType == DevExpress.XtraEditors.Mask.MaskType.Numeric)
     {
         oldInput = InputLanguage.CurrentInputLanguage;
         InputLanguage.CurrentInputLanguage = null;
     }
     else
     {
         if (oldInput != null && oldInput != InputLanguage.CurrentInputLanguage)
         {
             InputLanguage.CurrentInputLanguage = oldInput;
         }
     }
 }
Example #10
0
 private void InitializeComponent()
 {
     this.fProperties = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.fProperties)).BeginInit();
     this.SuspendLayout();
     //
     // fProperties
     //
     this.fProperties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.fProperties.Name        = "fProperties";
     //
     // CtrlText
     //
     this.Size = new System.Drawing.Size(100, 19);
     ((System.ComponentModel.ISupportInitialize)(this.fProperties)).EndInit();
     this.ResumeLayout(false);
 }
        public void LlenarGridConsulta()
        {
            DgvGeneral.Columns.Clear();

            DgvGeneral.OptionsView.ColumnAutoWidth = false;
            DataViewManager dvm    = new DataViewManager(dsConsulta);
            DataView        dvMain = dvm.CreateDataView(dsConsulta.Tables[0]);

            DgvGeneral.OptionsBehavior.AutoPopulateColumns = false;
            GctrlGeneral.DataSource = dvMain;
            string[] captions = new[] { "Id", "Código", "Nombre", "Nota Min", "Nota Max" };

            GridColumn[] col = new GridColumn[dsConsulta.Tables[0].Columns.Count];
            for (int i = 0; i < dsConsulta.Tables[0].Columns.Count; i++)
            {
                col[i] = DgvGeneral.Columns.AddField(dsConsulta.Tables[0].Columns[i].Caption.Trim());
                col[i].VisibleIndex = i;
                col[i].Caption      = captions[i];
                col[i].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;

                if (i == 0 || i == 1)
                {
                    col[i].Visible = false;
                }
            }

            DevExpress.XtraEditors.Repository.RepositoryItemTextEdit numerico = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            numerico.ReadOnly      = true;
            numerico.Mask.EditMask = "n2";
            numerico.Mask.UseMaskAsDisplayFormat = true;
            numerico.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;

            //DgvGeneral.Columns[1].Width = 80;
            DgvGeneral.Columns[2].Width = 285;
            DgvGeneral.Columns[3].Width = 100;
            DgvGeneral.Columns[4].Width = 100;

            DgvGeneral.Columns[3].ColumnEdit = numerico;
            DgvGeneral.Columns[4].ColumnEdit = numerico;

            Funciones.getInstancia().Configurar_Grid(DgvGeneral);
            DgvGeneral.OptionsCustomization.AllowSort = true;
            DgvGeneral.OptionsFind.AlwaysVisible      = true;
            DgvGeneral.OptionsView.ColumnAutoWidth    = false;
        }
Example #12
0
        public DXMenuItem[] GetNullableEditItem(object obj)
        {
            if (obj == null)
            {
                return(null);
            }
            Type type = obj.GetType();

            DevExpress.XtraEditors.Repository.RepositoryItemTextEdit textEdit = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            DXMenuItem menuItem = new DXMenuItem("Value Check (General Value Demo)");

            textEdit.ReadOnly = true;
            menuItem.Tag      = obj;
            menuItem.Image    = Properties.Resources.ValueImage;
            menuItem.Click   += ShowValueAsString;

            return(new DXMenuItem[] { menuItem });
        }
Example #13
0
        public static void LoadGrid(控件库.表格控件.Grid _Grid, string tbName)
        {
            GatherReport report = new GatherReport();
            GatherTable  tab    = report.GetReportTable(tbName);

            DevExpress.XtraEditors.Repository.RepositoryItemTextEdit text = null;
            for (int i = 0; i < _Grid.ExportBandView.Columns.Count; i++)
            {
                text = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();

                _Grid.ExportBandView.Columns[i].ColumnEdit = text;
                _Grid.ExportBandView.Columns[i].OptionsColumn.AllowEdit = true;
                tab.计算列准备(_Grid.ExportBandView.Columns[i].FieldName, _Grid, text);
            }
            DataTable tb2 = GetReportTable(tbName);

            _Grid.SetDataSource(tb2);
        }
        void Form_ProduccionNumeroDeOrdenesDeProduccion_Load(object sender, EventArgs e)
        {
            this.txtPeriodo.Text = DateTime.Now.Year.ToString();

            _detalle = new List <LineaDetalle>();

            this.gridControlBlends.DataSource = new BindingList <LineaDetalle>(_detalle);

            this.gridViewBlends.Columns["Blend"].OptionsColumn.AllowEdit = false;

            var editorMask = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();

            editorMask.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
            editorMask.Mask.EditMask = "[0-9]+";
            editorMask.Enter        += (s, a) => (s as DevExpress.XtraEditors.BaseEdit).SelectAll();
            editorMask.Click        += (s, a) => (s as DevExpress.XtraEditors.BaseEdit).SelectAll();
            this.gridViewBlends.Columns["Blend"].ColumnEdit = editorMask;
        }
Example #15
0
        private void setGridStyle()
        {
            this.gvTemplate.Columns.Clear();

            DevExpress.XtraEditors.Repository.RepositoryItemTextEdit item = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            item.ReadOnly = false;
            this.grdMain.RepositoryItems.Add(item);

            DevExpress.XtraGrid.Columns.GridColumn gridColumn = gvTemplate.Columns.Add();
            gridColumn.FieldName = "NAME";
            gridColumn.Caption   = "名称";
            gridColumn.OptionsColumn.AllowEdit = true;
            gridColumn.OptionsColumn.ReadOnly  = false;
            gridColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            gridColumn.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Near;
            gridColumn.AppearanceCell.TextOptions.VAlignment   = DevExpress.Utils.VertAlignment.Center;
            gridColumn.Visible = true;

            gridColumn.ColumnEdit = item;

            DevExpress.XtraEditors.Repository.RepositoryItemDateEdit date = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
            date.ReadOnly = true;
            date.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            date.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";

            gridColumn           = gvTemplate.Columns.Add();
            gridColumn.FieldName = "CREATE_DATE";
            gridColumn.Caption   = "创建日期";
            gridColumn.OptionsColumn.AllowEdit = false;
            gridColumn.OptionsColumn.ReadOnly  = true;
            gridColumn.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridColumn.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            gridColumn.AppearanceCell.TextOptions.HAlignment   = DevExpress.Utils.HorzAlignment.Near;
            gridColumn.AppearanceCell.TextOptions.VAlignment   = DevExpress.Utils.VertAlignment.Center;
            gridColumn.Visible    = true;
            gridColumn.ColumnEdit = date;

            this.gvTemplate.OptionsBehavior.AllowAddRows    = DevExpress.Utils.DefaultBoolean.False;
            this.gvTemplate.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.True;
            this.gvTemplate.OptionsBehavior.Editable        = true;
        }
Example #16
0
 private void btnRQC_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
 {
     dwRegister.Show();
     dwReqCancel.Show();
     dwOptions.Hide();
     radDock1.ActiveWindow = dwReqCancel;
     RequestId             = Convert.ToInt32(ReqListView.GetFocusedRowCellValue("RequestId"));
     dtRQC = RequestEntryBL.GetRQC(RequestId);
     grdReqCancel.DataSource = dtRQC;
     grdReqCancel.ForceInitialize();
     ReqCancelView.PopulateColumns();
     ReqCancelView.Columns["RequestId"].Visible      = false;
     ReqCancelView.Columns["RequestTransId"].Visible = false;
     ReqCancelView.Columns["UnitId"].Visible         = false;
     ReqCancelView.Columns["ResourceId"].Visible     = false;
     ReqCancelView.Columns["HiddenQty"].Visible      = false;
     DevExpress.XtraEditors.Repository.RepositoryItemTextEdit txtCQty = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     ReqCancelView.Columns["CancelQty"].ColumnEdit = txtCQty;
     txtCQty.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     txtCQty.Mask.EditMask = "#########################.#####";
 }
 /// <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.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition1 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition2 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition3 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition4 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition5 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition6 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition7 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition8 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     this.calcCases = new DevExpress.XtraPivotGrid.PivotGridField();
     this.calcNPS = new DevExpress.XtraPivotGrid.PivotGridField();
     this.calcVolume = new DevExpress.XtraPivotGrid.PivotGridField();
     this.calcPPL = new DevExpress.XtraPivotGrid.PivotGridField();
     this.repositoryItemTextEditf2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.popupMenuMain = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barManagerMain = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barHeaderItem1 = new DevExpress.XtraBars.BarHeaderItem();
     this.bbiStartDate = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.barHeaderItem2 = new DevExpress.XtraBars.BarHeaderItem();
     this.bbiEndDate = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.bbiGetData = new DevExpress.XtraBars.BarLargeButtonItem();
     this.bbiExport = 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.repositoryItemDateEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.dxValidationProviderMain = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.pivotGridControlMain = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pro0004BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsNMQry = new NestleICSales.DataSources.dsQry();
     this.fieldMaterialNumber1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldTypeName1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldDistributionChannel1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldMaterialName1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldProductBase1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldBrand1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldProductGroup31 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldProductGroup21 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldProductGroup11 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldPriceChanges1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldPricePointRang1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldMaterialType1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldFlavor1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldNPDS1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldPricePoint1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldCases1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldNPS1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldVolume1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldPPL1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldYearNo = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldCustHierLevel3Name = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldCustomerGroup = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldCustomerType = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldCustomerType2 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldRouteNumber = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldSubchannelName = new DevExpress.XtraPivotGrid.PivotGridField();
     this.repositoryItemTextEditPer = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.pro_0004TableAdapter = new NestleICSales.DataSources.dsQryTableAdapters.Pro_0004TableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditf2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pivotGridControlMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pro0004BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsNMQry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditPer)).BeginInit();
     this.SuspendLayout();
     //
     // calcCases
     //
     this.calcCases.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.calcCases.AreaIndex = 1;
     this.calcCases.Caption = "Cases%";
     this.calcCases.CellFormat.FormatString = "p2";
     this.calcCases.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcCases.DisplayFolder = "0.0%";
     this.calcCases.EmptyCellText = "0.0%";
     this.calcCases.FieldName = "Cases";
     this.calcCases.GrandTotalCellFormat.FormatString = "p2";
     this.calcCases.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcCases.Name = "calcCases";
     this.calcCases.Options.ShowGrandTotal = false;
     this.calcCases.Options.ShowUnboundExpressionMenu = true;
     this.calcCases.TotalCellFormat.FormatString = "p2";
     this.calcCases.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcCases.TotalValueFormat.FormatString = "p2";
     this.calcCases.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcCases.ValueFormat.FormatString = "p2";
     this.calcCases.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     //
     // calcNPS
     //
     this.calcNPS.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.calcNPS.AreaIndex = 3;
     this.calcNPS.Caption = "NPS%";
     this.calcNPS.CellFormat.FormatString = "p2";
     this.calcNPS.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcNPS.DisplayFolder = "0.0%";
     this.calcNPS.EmptyCellText = "0.0%";
     this.calcNPS.FieldName = "NPS";
     this.calcNPS.GrandTotalCellFormat.FormatString = "p2";
     this.calcNPS.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcNPS.Name = "calcNPS";
     this.calcNPS.Options.ShowGrandTotal = false;
     this.calcNPS.Options.ShowUnboundExpressionMenu = true;
     this.calcNPS.TotalCellFormat.FormatString = "p2";
     this.calcNPS.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcNPS.TotalValueFormat.FormatString = "p2";
     this.calcNPS.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcNPS.ValueFormat.FormatString = "p2";
     this.calcNPS.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     //
     // calcVolume
     //
     this.calcVolume.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.calcVolume.AreaIndex = 5;
     this.calcVolume.Caption = "Volume%";
     this.calcVolume.CellFormat.FormatString = "p2";
     this.calcVolume.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcVolume.DisplayFolder = "0.0%";
     this.calcVolume.EmptyCellText = "0.0%";
     this.calcVolume.FieldName = "Volume";
     this.calcVolume.GrandTotalCellFormat.FormatString = "p2";
     this.calcVolume.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcVolume.Name = "calcVolume";
     this.calcVolume.Options.ShowGrandTotal = false;
     this.calcVolume.Options.ShowUnboundExpressionMenu = true;
     this.calcVolume.TotalCellFormat.FormatString = "p2";
     this.calcVolume.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcVolume.TotalValueFormat.FormatString = "p2";
     this.calcVolume.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcVolume.ValueFormat.FormatString = "p2";
     this.calcVolume.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     //
     // calcPPL
     //
     this.calcPPL.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.calcPPL.AreaIndex = 7;
     this.calcPPL.Caption = "PPL%";
     this.calcPPL.CellFormat.FormatString = "p2";
     this.calcPPL.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcPPL.DisplayFolder = "0.0%";
     this.calcPPL.EmptyCellText = "0.0%";
     this.calcPPL.FieldName = "PPL";
     this.calcPPL.GrandTotalCellFormat.FormatString = "p2";
     this.calcPPL.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcPPL.Name = "calcPPL";
     this.calcPPL.Options.ShowGrandTotal = false;
     this.calcPPL.Options.ShowUnboundExpressionMenu = true;
     this.calcPPL.TotalCellFormat.FormatString = "p2";
     this.calcPPL.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcPPL.TotalValueFormat.FormatString = "p2";
     this.calcPPL.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcPPL.ValueFormat.FormatString = "p2";
     this.calcPPL.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     //
     // repositoryItemTextEditf2
     //
     this.repositoryItemTextEditf2.AutoHeight = false;
     this.repositoryItemTextEditf2.DisplayFormat.FormatString = "f2";
     this.repositoryItemTextEditf2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditf2.Mask.EditMask = "f2";
     this.repositoryItemTextEditf2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditf2.Name = "repositoryItemTextEditf2";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // popupMenuMain
     //
     this.popupMenuMain.Manager = this.barManagerMain;
     this.popupMenuMain.Name = "popupMenuMain";
     //
     // barManagerMain
     //
     this.barManagerMain.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManagerMain.DockControls.Add(this.barDockControlTop);
     this.barManagerMain.DockControls.Add(this.barDockControlBottom);
     this.barManagerMain.DockControls.Add(this.barDockControlLeft);
     this.barManagerMain.DockControls.Add(this.barDockControlRight);
     this.barManagerMain.Form = this;
     this.barManagerMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiExport,
     this.bbiStartDate,
     this.barHeaderItem1,
     this.bbiGetData,
     this.barHeaderItem2,
     this.bbiEndDate});
     this.barManagerMain.MaxItemId = 13;
     this.barManagerMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemDateEdit1,
     this.repositoryItemDateEdit2,
     this.repositoryItemDateEdit3});
     //
     // bar1
     //
     this.bar1.BarName = "Main";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barHeaderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiStartDate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barHeaderItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiEndDate),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiGetData, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiExport)});
     this.bar1.Text = "Custom 2";
     //
     // barHeaderItem1
     //
     this.barHeaderItem1.Caption = "Select Date";
     this.barHeaderItem1.Id = 3;
     this.barHeaderItem1.Name = "barHeaderItem1";
     //
     // bbiStartDate
     //
     this.bbiStartDate.Caption = "Date Start";
     this.bbiStartDate.Edit = this.repositoryItemDateEdit1;
     this.bbiStartDate.Id = 2;
     this.bbiStartDate.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D1));
     this.bbiStartDate.Name = "bbiStartDate";
     this.bbiStartDate.Width = 120;
     //
     // 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.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
     //
     // barHeaderItem2
     //
     this.barHeaderItem2.Caption = "End Date";
     this.barHeaderItem2.Id = 11;
     this.barHeaderItem2.Name = "barHeaderItem2";
     //
     // bbiEndDate
     //
     this.bbiEndDate.Caption = "Date End";
     this.bbiEndDate.Edit = this.repositoryItemDateEdit3;
     this.bbiEndDate.Id = 12;
     this.bbiEndDate.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D2));
     this.bbiEndDate.Name = "bbiEndDate";
     this.bbiEndDate.Width = 120;
     //
     // repositoryItemDateEdit3
     //
     this.repositoryItemDateEdit3.AutoHeight = false;
     this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
     //
     // bbiGetData
     //
     this.bbiGetData.Caption = "Get Data";
     this.bbiGetData.CaptionAlignment = DevExpress.XtraBars.BarItemCaptionAlignment.Right;
     this.bbiGetData.Glyph = global::NestleICSales.Properties.Resources.apply_16x16;
     this.bbiGetData.Id = 9;
     this.bbiGetData.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.G));
     this.bbiGetData.Name = "bbiGetData";
     this.bbiGetData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiGetData_ItemClick);
     //
     // bbiExport
     //
     this.bbiExport.Caption = "Export";
     this.bbiExport.Glyph = global::NestleICSales.Properties.Resources.Export;
     this.bbiExport.Id = 1;
     this.bbiExport.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E));
     this.bbiExport.Name = "bbiExport";
     this.bbiExport.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiExport_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(1132, 31);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 311);
     this.barDockControlBottom.Size = new System.Drawing.Size(1132, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 31);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 280);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1132, 31);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 280);
     //
     // 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.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit2.Name = "repositoryItemDateEdit2";
     //
     // pivotGridControlMain
     //
     this.pivotGridControlMain.DataSource = this.pro0004BindingSource;
     this.pivotGridControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pivotGridControlMain.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
     this.fieldMaterialNumber1,
     this.fieldTypeName1,
     this.fieldDistributionChannel1,
     this.fieldMaterialName1,
     this.fieldProductBase1,
     this.fieldBrand1,
     this.fieldProductGroup31,
     this.fieldProductGroup21,
     this.fieldProductGroup11,
     this.fieldPriceChanges1,
     this.fieldPricePointRang1,
     this.fieldMaterialType1,
     this.fieldFlavor1,
     this.fieldNPDS1,
     this.fieldPricePoint1,
     this.fieldCases1,
     this.fieldNPS1,
     this.fieldVolume1,
     this.fieldPPL1,
     this.calcCases,
     this.calcNPS,
     this.calcVolume,
     this.calcPPL,
     this.fieldYearNo,
     this.fieldCustHierLevel3Name,
     this.fieldCustomerGroup,
     this.fieldCustomerType,
     this.fieldCustomerType2,
     this.fieldRouteNumber,
     this.fieldSubchannelName});
     pivotGridStyleFormatCondition1.Appearance.ForeColor = System.Drawing.Color.Red;
     pivotGridStyleFormatCondition1.Appearance.Options.UseForeColor = true;
     pivotGridStyleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Less;
     pivotGridStyleFormatCondition1.Field = this.calcCases;
     pivotGridStyleFormatCondition1.FieldName = "calcCases";
     pivotGridStyleFormatCondition1.Value1 = "1";
     pivotGridStyleFormatCondition2.Appearance.ForeColor = System.Drawing.Color.Green;
     pivotGridStyleFormatCondition2.Appearance.Options.UseForeColor = true;
     pivotGridStyleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.GreaterOrEqual;
     pivotGridStyleFormatCondition2.Field = this.calcCases;
     pivotGridStyleFormatCondition2.FieldName = "calcCases";
     pivotGridStyleFormatCondition2.Value1 = "1";
     pivotGridStyleFormatCondition3.Appearance.ForeColor = System.Drawing.Color.Red;
     pivotGridStyleFormatCondition3.Appearance.Options.UseForeColor = true;
     pivotGridStyleFormatCondition3.Condition = DevExpress.XtraGrid.FormatConditionEnum.Less;
     pivotGridStyleFormatCondition3.Field = this.calcNPS;
     pivotGridStyleFormatCondition3.FieldName = "calcNPS";
     pivotGridStyleFormatCondition3.Value1 = "1";
     pivotGridStyleFormatCondition4.Appearance.ForeColor = System.Drawing.Color.Green;
     pivotGridStyleFormatCondition4.Appearance.Options.UseForeColor = true;
     pivotGridStyleFormatCondition4.Condition = DevExpress.XtraGrid.FormatConditionEnum.GreaterOrEqual;
     pivotGridStyleFormatCondition4.Field = this.calcNPS;
     pivotGridStyleFormatCondition4.FieldName = "calcNPS";
     pivotGridStyleFormatCondition4.Value1 = "1";
     pivotGridStyleFormatCondition5.Appearance.ForeColor = System.Drawing.Color.Red;
     pivotGridStyleFormatCondition5.Appearance.Options.UseForeColor = true;
     pivotGridStyleFormatCondition5.Condition = DevExpress.XtraGrid.FormatConditionEnum.Less;
     pivotGridStyleFormatCondition5.Field = this.calcVolume;
     pivotGridStyleFormatCondition5.FieldName = "calcVolume";
     pivotGridStyleFormatCondition5.Value1 = "1";
     pivotGridStyleFormatCondition6.Appearance.ForeColor = System.Drawing.Color.Green;
     pivotGridStyleFormatCondition6.Appearance.Options.UseForeColor = true;
     pivotGridStyleFormatCondition6.Condition = DevExpress.XtraGrid.FormatConditionEnum.GreaterOrEqual;
     pivotGridStyleFormatCondition6.Field = this.calcVolume;
     pivotGridStyleFormatCondition6.FieldName = "calcVolume";
     pivotGridStyleFormatCondition6.Value1 = "1";
     pivotGridStyleFormatCondition7.Appearance.ForeColor = System.Drawing.Color.Red;
     pivotGridStyleFormatCondition7.Appearance.Options.UseForeColor = true;
     pivotGridStyleFormatCondition7.Condition = DevExpress.XtraGrid.FormatConditionEnum.Less;
     pivotGridStyleFormatCondition7.Field = this.calcPPL;
     pivotGridStyleFormatCondition7.FieldName = "calcPPL";
     pivotGridStyleFormatCondition7.Value1 = "1";
     pivotGridStyleFormatCondition8.Appearance.ForeColor = System.Drawing.Color.Green;
     pivotGridStyleFormatCondition8.Appearance.Options.UseForeColor = true;
     pivotGridStyleFormatCondition8.Condition = DevExpress.XtraGrid.FormatConditionEnum.GreaterOrEqual;
     pivotGridStyleFormatCondition8.Field = this.calcPPL;
     pivotGridStyleFormatCondition8.FieldName = "calcPPL";
     pivotGridStyleFormatCondition8.Value1 = "1";
     this.pivotGridControlMain.FormatConditions.AddRange(new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition[] {
     pivotGridStyleFormatCondition1,
     pivotGridStyleFormatCondition2,
     pivotGridStyleFormatCondition3,
     pivotGridStyleFormatCondition4,
     pivotGridStyleFormatCondition5,
     pivotGridStyleFormatCondition6,
     pivotGridStyleFormatCondition7,
     pivotGridStyleFormatCondition8});
     this.pivotGridControlMain.Location = new System.Drawing.Point(0, 31);
     this.pivotGridControlMain.Name = "pivotGridControlMain";
     this.pivotGridControlMain.OptionsData.DataFieldUnboundExpressionMode = DevExpress.XtraPivotGrid.DataFieldUnboundExpressionMode.UseSummaryValues;
     this.pivotGridControlMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEditPer});
     this.pivotGridControlMain.Size = new System.Drawing.Size(1132, 280);
     this.pivotGridControlMain.TabIndex = 14;
     this.pivotGridControlMain.CustomCellValue += new System.EventHandler<DevExpress.XtraPivotGrid.PivotCellValueEventArgs>(this.pivotGridControlMain_CustomCellValue);
     this.pivotGridControlMain.CellDoubleClick += new DevExpress.XtraPivotGrid.PivotCellEventHandler(this.pivotGridControlMain_CellDoubleClick);
     //
     // pro0004BindingSource
     //
     this.pro0004BindingSource.DataMember = "Pro_0004";
     this.pro0004BindingSource.DataSource = this.dsNMQry;
     //
     // dsNMQry
     //
     this.dsNMQry.DataSetName = "dsNMQry";
     this.dsNMQry.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // fieldMaterialNumber1
     //
     this.fieldMaterialNumber1.AreaIndex = 0;
     this.fieldMaterialNumber1.Caption = "Material Number";
     this.fieldMaterialNumber1.FieldName = "MaterialNumber";
     this.fieldMaterialNumber1.Name = "fieldMaterialNumber1";
     //
     // fieldTypeName1
     //
     this.fieldTypeName1.AreaIndex = 1;
     this.fieldTypeName1.Caption = "Type Name";
     this.fieldTypeName1.FieldName = "TypeName";
     this.fieldTypeName1.Name = "fieldTypeName1";
     //
     // fieldDistributionChannel1
     //
     this.fieldDistributionChannel1.AreaIndex = 2;
     this.fieldDistributionChannel1.Caption = "Distribution Channel";
     this.fieldDistributionChannel1.FieldName = "DistributionChannel";
     this.fieldDistributionChannel1.Name = "fieldDistributionChannel1";
     //
     // fieldMaterialName1
     //
     this.fieldMaterialName1.AreaIndex = 3;
     this.fieldMaterialName1.Caption = "Material Name";
     this.fieldMaterialName1.FieldName = "MaterialName";
     this.fieldMaterialName1.Name = "fieldMaterialName1";
     //
     // fieldProductBase1
     //
     this.fieldProductBase1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.fieldProductBase1.AreaIndex = 1;
     this.fieldProductBase1.Caption = "Product Base";
     this.fieldProductBase1.FieldName = "ProductBase";
     this.fieldProductBase1.Name = "fieldProductBase1";
     //
     // fieldBrand1
     //
     this.fieldBrand1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.fieldBrand1.AreaIndex = 0;
     this.fieldBrand1.Caption = "Brand";
     this.fieldBrand1.FieldName = "Brand";
     this.fieldBrand1.Name = "fieldBrand1";
     this.fieldBrand1.Width = 255;
     //
     // fieldProductGroup31
     //
     this.fieldProductGroup31.AreaIndex = 4;
     this.fieldProductGroup31.Caption = "Product Group3";
     this.fieldProductGroup31.FieldName = "ProductGroup3";
     this.fieldProductGroup31.Name = "fieldProductGroup31";
     //
     // fieldProductGroup21
     //
     this.fieldProductGroup21.AreaIndex = 5;
     this.fieldProductGroup21.Caption = "Product Group2";
     this.fieldProductGroup21.FieldName = "ProductGroup2";
     this.fieldProductGroup21.Name = "fieldProductGroup21";
     //
     // fieldProductGroup11
     //
     this.fieldProductGroup11.AreaIndex = 6;
     this.fieldProductGroup11.Caption = "Product Group1";
     this.fieldProductGroup11.FieldName = "ProductGroup1";
     this.fieldProductGroup11.Name = "fieldProductGroup11";
     //
     // fieldPriceChanges1
     //
     this.fieldPriceChanges1.AreaIndex = 7;
     this.fieldPriceChanges1.Caption = "Price Changes";
     this.fieldPriceChanges1.FieldName = "PriceChanges";
     this.fieldPriceChanges1.Name = "fieldPriceChanges1";
     //
     // fieldPricePointRang1
     //
     this.fieldPricePointRang1.AreaIndex = 8;
     this.fieldPricePointRang1.Caption = "Price Point Rang";
     this.fieldPricePointRang1.FieldName = "PricePointRang";
     this.fieldPricePointRang1.Name = "fieldPricePointRang1";
     //
     // fieldMaterialType1
     //
     this.fieldMaterialType1.AreaIndex = 9;
     this.fieldMaterialType1.Caption = "Material Type";
     this.fieldMaterialType1.FieldName = "MaterialType";
     this.fieldMaterialType1.Name = "fieldMaterialType1";
     //
     // fieldFlavor1
     //
     this.fieldFlavor1.AreaIndex = 10;
     this.fieldFlavor1.Caption = "Flavor";
     this.fieldFlavor1.FieldName = "Flavor";
     this.fieldFlavor1.Name = "fieldFlavor1";
     //
     // fieldNPDS1
     //
     this.fieldNPDS1.AreaIndex = 11;
     this.fieldNPDS1.Caption = "NPDS";
     this.fieldNPDS1.FieldName = "NPDS";
     this.fieldNPDS1.Name = "fieldNPDS1";
     //
     // fieldPricePoint1
     //
     this.fieldPricePoint1.AreaIndex = 12;
     this.fieldPricePoint1.Caption = "Price Point";
     this.fieldPricePoint1.FieldName = "PricePoint";
     this.fieldPricePoint1.Name = "fieldPricePoint1";
     //
     // fieldCases1
     //
     this.fieldCases1.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldCases1.AreaIndex = 0;
     this.fieldCases1.Caption = "Cases";
     this.fieldCases1.CellFormat.FormatString = "f2";
     this.fieldCases1.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldCases1.EmptyCellText = "0.0";
     this.fieldCases1.EmptyValueText = "0.0";
     this.fieldCases1.FieldName = "Cases";
     this.fieldCases1.GrandTotalCellFormat.FormatString = "f2";
     this.fieldCases1.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldCases1.Name = "fieldCases1";
     this.fieldCases1.Options.ShowGrandTotal = false;
     this.fieldCases1.TotalCellFormat.FormatString = "f2";
     this.fieldCases1.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldCases1.TotalValueFormat.FormatString = "f2";
     this.fieldCases1.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldCases1.ValueFormat.FormatString = "f2";
     this.fieldCases1.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     //
     // fieldNPS1
     //
     this.fieldNPS1.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldNPS1.AreaIndex = 2;
     this.fieldNPS1.Caption = "NPS";
     this.fieldNPS1.CellFormat.FormatString = "f2";
     this.fieldNPS1.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldNPS1.EmptyCellText = "0.0";
     this.fieldNPS1.EmptyValueText = "0.0";
     this.fieldNPS1.FieldName = "NPS";
     this.fieldNPS1.GrandTotalCellFormat.FormatString = "f2";
     this.fieldNPS1.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldNPS1.Name = "fieldNPS1";
     this.fieldNPS1.Options.ShowGrandTotal = false;
     this.fieldNPS1.TotalCellFormat.FormatString = "f2";
     this.fieldNPS1.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldNPS1.TotalValueFormat.FormatString = "f2";
     this.fieldNPS1.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldNPS1.ValueFormat.FormatString = "f2";
     this.fieldNPS1.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     //
     // fieldVolume1
     //
     this.fieldVolume1.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldVolume1.AreaIndex = 4;
     this.fieldVolume1.Caption = "Volume";
     this.fieldVolume1.CellFormat.FormatString = "f2";
     this.fieldVolume1.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldVolume1.EmptyCellText = "0.0";
     this.fieldVolume1.EmptyValueText = "0.0";
     this.fieldVolume1.FieldName = "Volume";
     this.fieldVolume1.GrandTotalCellFormat.FormatString = "f2";
     this.fieldVolume1.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldVolume1.Name = "fieldVolume1";
     this.fieldVolume1.Options.ShowGrandTotal = false;
     this.fieldVolume1.TotalCellFormat.FormatString = "f2";
     this.fieldVolume1.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldVolume1.TotalValueFormat.FormatString = "f2";
     this.fieldVolume1.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldVolume1.ValueFormat.FormatString = "f2";
     this.fieldVolume1.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     //
     // fieldPPL1
     //
     this.fieldPPL1.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldPPL1.AreaIndex = 6;
     this.fieldPPL1.Caption = "PPL";
     this.fieldPPL1.CellFormat.FormatString = "f2";
     this.fieldPPL1.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldPPL1.EmptyCellText = "0.0";
     this.fieldPPL1.EmptyValueText = "0.0";
     this.fieldPPL1.FieldName = "PPL";
     this.fieldPPL1.GrandTotalCellFormat.FormatString = "f2";
     this.fieldPPL1.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldPPL1.Name = "fieldPPL1";
     this.fieldPPL1.Options.ShowGrandTotal = false;
     this.fieldPPL1.TotalCellFormat.FormatString = "f2";
     this.fieldPPL1.TotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldPPL1.TotalValueFormat.FormatString = "f2";
     this.fieldPPL1.TotalValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldPPL1.ValueFormat.FormatString = "f2";
     this.fieldPPL1.ValueFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     //
     // fieldYearNo
     //
     this.fieldYearNo.Area = DevExpress.XtraPivotGrid.PivotArea.ColumnArea;
     this.fieldYearNo.AreaIndex = 0;
     this.fieldYearNo.Caption = "Year";
     this.fieldYearNo.FieldName = "YearNo";
     this.fieldYearNo.Name = "fieldYearNo";
     //
     // fieldCustHierLevel3Name
     //
     this.fieldCustHierLevel3Name.AreaIndex = 13;
     this.fieldCustHierLevel3Name.Caption = "CustHierLevel3";
     this.fieldCustHierLevel3Name.FieldName = "CustHierLevel3Name";
     this.fieldCustHierLevel3Name.Name = "fieldCustHierLevel3Name";
     //
     // fieldCustomerGroup
     //
     this.fieldCustomerGroup.AreaIndex = 14;
     this.fieldCustomerGroup.Caption = "CustomerGroup";
     this.fieldCustomerGroup.FieldName = "CustomerGroup";
     this.fieldCustomerGroup.Name = "fieldCustomerGroup";
     //
     // fieldCustomerType
     //
     this.fieldCustomerType.AreaIndex = 15;
     this.fieldCustomerType.Caption = "CustomerType";
     this.fieldCustomerType.FieldName = "CustomerType";
     this.fieldCustomerType.Name = "fieldCustomerType";
     //
     // fieldCustomerType2
     //
     this.fieldCustomerType2.AreaIndex = 16;
     this.fieldCustomerType2.Caption = "CustomerType2";
     this.fieldCustomerType2.FieldName = "CustomerType2";
     this.fieldCustomerType2.Name = "fieldCustomerType2";
     //
     // fieldRouteNumber
     //
     this.fieldRouteNumber.AreaIndex = 17;
     this.fieldRouteNumber.Caption = "RouteNumber";
     this.fieldRouteNumber.FieldName = "RouteNumber";
     this.fieldRouteNumber.Name = "fieldRouteNumber";
     //
     // fieldSubchannelName
     //
     this.fieldSubchannelName.AreaIndex = 18;
     this.fieldSubchannelName.Caption = "Subchannel";
     this.fieldSubchannelName.FieldName = "SubchannelName";
     this.fieldSubchannelName.Name = "fieldSubchannelName";
     //
     // repositoryItemTextEditPer
     //
     this.repositoryItemTextEditPer.AutoHeight = false;
     this.repositoryItemTextEditPer.DisplayFormat.FormatString = "c";
     this.repositoryItemTextEditPer.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditPer.Mask.EditMask = "p";
     this.repositoryItemTextEditPer.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditPer.Mask.UseMaskAsDisplayFormat = true;
     this.repositoryItemTextEditPer.Name = "repositoryItemTextEditPer";
     //
     // pro_0004TableAdapter
     //
     this.pro_0004TableAdapter.ClearBeforeFill = true;
     //
     // QryPro_0004Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1132, 311);
     this.Controls.Add(this.pivotGridControlMain);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon = global::NestleICSales.Properties.Resources.Qry16;
     this.Name = "QryPro_0004Frm";
     this.Text = "Sales Per SKU";
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditf2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pivotGridControlMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pro0004BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsNMQry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditPer)).EndInit();
     this.ResumeLayout(false);
 }
Example #18
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(frmDeptBrw));
     this.persistentRepository1 = new DevExpress.XtraEditors.Repository.PersistentRepository(this.components);
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.pnl_Find = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.chk_Anywhere = new System.Windows.Forms.CheckBox();
     this.btn_Clear = new System.Windows.Forms.Button();
     this.btn_Find = new System.Windows.Forms.Button();
     this.lbl_Find = new System.Windows.Forms.Label();
     this.chk_AdvanceSearch = new System.Windows.Forms.CheckBox();
     this.pnlBody = new System.Windows.Forms.Panel();
     this.pnl_SpeedSearch = new System.Windows.Forms.Panel();
     this.pnl_SpeedSearch1 = new System.Windows.Forms.Panel();
     this.txt_SpeedSearch = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.grdDept = new DevExpress.XtraGrid.GridControl();
     this.gvwDept = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gColDeptID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColContactID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolClient = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColDeptName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColContact1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContact1Phone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContact2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContact2Phone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContact = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     this.pnl_Find.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.pnlBody.SuspendLayout();
     this.pnl_SpeedSearch.SuspendLayout();
     this.pnl_SpeedSearch1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdDept)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwDept)).BeginInit();
     this.SuspendLayout();
     //
     // persistentRepository1
     //
     this.persistentRepository1.Items.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AllowFocused = false;
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // pnl_Find
     //
     this.pnl_Find.BackColor = System.Drawing.SystemColors.Window;
     this.pnl_Find.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pnl_Find.Controls.Add(this.panel1);
     this.pnl_Find.Controls.Add(this.txtSearch);
     this.pnl_Find.Controls.Add(this.chk_Anywhere);
     this.pnl_Find.Controls.Add(this.btn_Clear);
     this.pnl_Find.Controls.Add(this.btn_Find);
     this.pnl_Find.Controls.Add(this.lbl_Find);
     this.pnl_Find.Controls.Add(this.chk_AdvanceSearch);
     this.pnl_Find.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnl_Find.Location = new System.Drawing.Point(0, 0);
     this.pnl_Find.Name = "pnl_Find";
     this.pnl_Find.Size = new System.Drawing.Size(672, 90);
     this.pnl_Find.TabIndex = 28;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.pictureBox1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel1.Location = new System.Drawing.Point(484, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(184, 86);
     this.panel1.TabIndex = 10;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(184, 86);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(64, 17);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(296, 21);
     this.txtSearch.TabIndex = 9;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // chk_Anywhere
     //
     this.chk_Anywhere.BackColor = System.Drawing.SystemColors.Window;
     this.chk_Anywhere.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Anywhere.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_Anywhere.Location = new System.Drawing.Point(210, 44);
     this.chk_Anywhere.Name = "chk_Anywhere";
     this.chk_Anywhere.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.chk_Anywhere.Size = new System.Drawing.Size(154, 24);
     this.chk_Anywhere.TabIndex = 7;
     this.chk_Anywhere.Text = "Search Anywhere in Fields";
     this.chk_Anywhere.UseVisualStyleBackColor = false;
     //
     // btn_Clear
     //
     this.btn_Clear.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Clear.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Clear.Location = new System.Drawing.Point(370, 44);
     this.btn_Clear.Name = "btn_Clear";
     this.btn_Clear.Size = new System.Drawing.Size(75, 23);
     this.btn_Clear.TabIndex = 6;
     this.btn_Clear.Text = "Clear";
     this.btn_Clear.UseVisualStyleBackColor = false;
     this.btn_Clear.Click += new System.EventHandler(this.btn_Clear_Click);
     //
     // btn_Find
     //
     this.btn_Find.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Find.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Find.Location = new System.Drawing.Point(370, 15);
     this.btn_Find.Name = "btn_Find";
     this.btn_Find.Size = new System.Drawing.Size(75, 23);
     this.btn_Find.TabIndex = 4;
     this.btn_Find.Text = "Find";
     this.btn_Find.UseVisualStyleBackColor = false;
     this.btn_Find.Click += new System.EventHandler(this.btn_Find_Click);
     //
     // lbl_Find
     //
     this.lbl_Find.AutoSize = true;
     this.lbl_Find.Location = new System.Drawing.Point(15, 19);
     this.lbl_Find.Name = "lbl_Find";
     this.lbl_Find.Size = new System.Drawing.Size(30, 13);
     this.lbl_Find.TabIndex = 0;
     this.lbl_Find.Text = " Find";
     //
     // chk_AdvanceSearch
     //
     this.chk_AdvanceSearch.BackColor = System.Drawing.SystemColors.Window;
     this.chk_AdvanceSearch.Checked = true;
     this.chk_AdvanceSearch.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chk_AdvanceSearch.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_AdvanceSearch.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_AdvanceSearch.Location = new System.Drawing.Point(64, 44);
     this.chk_AdvanceSearch.Name = "chk_AdvanceSearch";
     this.chk_AdvanceSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.chk_AdvanceSearch.Size = new System.Drawing.Size(112, 24);
     this.chk_AdvanceSearch.TabIndex = 8;
     this.chk_AdvanceSearch.Text = "Search All Fields";
     this.chk_AdvanceSearch.UseVisualStyleBackColor = false;
     //
     // pnlBody
     //
     this.pnlBody.Controls.Add(this.pnl_SpeedSearch);
     this.pnlBody.Controls.Add(this.grdDept);
     this.pnlBody.Controls.Add(this.pnl_Find);
     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(672, 333);
     this.pnlBody.TabIndex = 29;
     this.pnlBody.Resize += new System.EventHandler(this.pnlBody_Resize);
     //
     // pnl_SpeedSearch
     //
     this.pnl_SpeedSearch.BackColor = System.Drawing.Color.Black;
     this.pnl_SpeedSearch.Controls.Add(this.pnl_SpeedSearch1);
     this.pnl_SpeedSearch.Location = new System.Drawing.Point(40, 184);
     this.pnl_SpeedSearch.Name = "pnl_SpeedSearch";
     this.pnl_SpeedSearch.Size = new System.Drawing.Size(192, 72);
     this.pnl_SpeedSearch.TabIndex = 41;
     this.pnl_SpeedSearch.Visible = false;
     //
     // pnl_SpeedSearch1
     //
     this.pnl_SpeedSearch1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(143)))), ((int)(((byte)(230)))));
     this.pnl_SpeedSearch1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnl_SpeedSearch1.Controls.Add(this.txt_SpeedSearch);
     this.pnl_SpeedSearch1.Controls.Add(this.label1);
     this.pnl_SpeedSearch1.Location = new System.Drawing.Point(4, 4);
     this.pnl_SpeedSearch1.Name = "pnl_SpeedSearch1";
     this.pnl_SpeedSearch1.Size = new System.Drawing.Size(184, 64);
     this.pnl_SpeedSearch1.TabIndex = 39;
     //
     // txt_SpeedSearch
     //
     this.txt_SpeedSearch.Location = new System.Drawing.Point(11, 29);
     this.txt_SpeedSearch.Name = "txt_SpeedSearch";
     this.txt_SpeedSearch.Size = new System.Drawing.Size(157, 21);
     this.txt_SpeedSearch.TabIndex = 10;
     this.txt_SpeedSearch.Leave += new System.EventHandler(this.txt_SpeedSearch_Leave);
     this.txt_SpeedSearch.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyUp);
     this.txt_SpeedSearch.TextChanged += new System.EventHandler(this.txt_SpeedSearch_TextChanged);
     this.txt_SpeedSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyDown);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(56, 4);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(71, 14);
     this.label1.TabIndex = 0;
     this.label1.Text = "Fast Search";
     //
     // grdDept
     //
     this.grdDept.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdDept.EmbeddedNavigator.Name = "";
     this.grdDept.ExternalRepository = this.persistentRepository1;
     this.grdDept.Location = new System.Drawing.Point(0, 90);
     this.grdDept.MainView = this.gvwDept;
     this.grdDept.Name = "grdDept";
     this.grdDept.Size = new System.Drawing.Size(672, 243);
     this.grdDept.TabIndex = 25;
     this.grdDept.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvwDept});
     this.grdDept.DoubleClick += new System.EventHandler(this.grdDept_DoubleClick);
     this.grdDept.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdDept_KeyPress);
     //
     // gvwDept
     //
     this.gvwDept.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.gvwDept.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gColDeptID,
     this.gColContactID,
     this.gcolClient,
     this.gColDeptName,
     this.gColContact1,
     this.gcolContact1Phone,
     this.gcolContact2,
     this.gcolContact2Phone,
     this.gcolContact,
     this.gcolStatus});
     this.gvwDept.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gvwDept.GridControl = this.grdDept;
     this.gvwDept.Name = "gvwDept";
     this.gvwDept.OptionsBehavior.Editable = false;
     this.gvwDept.OptionsBehavior.KeepGroupExpandedOnSorting = false;
     this.gvwDept.OptionsNavigation.AutoMoveRowFocus = false;
     this.gvwDept.OptionsView.ShowDetailButtons = false;
     this.gvwDept.OptionsView.ShowGroupPanel = false;
     this.gvwDept.OptionsView.ShowHorizontalLines = DevExpress.Utils.DefaultBoolean.False;
     this.gvwDept.OptionsView.ShowIndicator = false;
     this.gvwDept.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcolClient, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gvwDept.Appearance.FocusedRow.AssignInternal(this.gvwDept.Appearance.SelectedRow);
     //this.gvwDept.ViewStyles.AddReplace("FocusedRow", "SelectedRow");
     //this.gvwDept.ViewStyles.AddReplace("FocusedCell", "SelectedRow");
     //
     // gColDeptID
     //
     this.gColDeptID.Caption = "Department ID";
     this.gColDeptID.FieldName = "DepartmentID";
     this.gColDeptID.Name = "gColDeptID";
     //
     // gColContactID
     //
     this.gColContactID.Caption = "ContactID";
     this.gColContactID.FieldName = "ContactID";
     this.gColContactID.Name = "gColContactID";
     //
     // gcolClient
     //
     this.gcolClient.Caption = "Client Name";
     this.gcolClient.FieldName = "Client";
     this.gcolClient.Name = "gcolClient";
     this.gcolClient.OptionsColumn.ShowInCustomizationForm = false;
     this.gcolClient.Visible = true;
     this.gcolClient.VisibleIndex = 0;
     this.gcolClient.Width = 135;
     //
     // gColDeptName
     //
     this.gColDeptName.Caption = "Department Name";
     this.gColDeptName.FieldName = "Name";
     this.gColDeptName.Name = "gColDeptName";
     this.gColDeptName.Visible = true;
     this.gColDeptName.VisibleIndex = 1;
     this.gColDeptName.Width = 135;
     //
     // gColContact1
     //
     this.gColContact1.Caption = "Contact 1 Name";
     this.gColContact1.FieldName = "Contact1";
     this.gColContact1.Name = "gColContact1";
     this.gColContact1.Visible = true;
     this.gColContact1.VisibleIndex = 2;
     this.gColContact1.Width = 145;
     //
     // gcolContact1Phone
     //
     this.gcolContact1Phone.Caption = "Contact 1 Phone";
     this.gcolContact1Phone.FieldName = "Contact1Phone";
     this.gcolContact1Phone.Name = "gcolContact1Phone";
     this.gcolContact1Phone.Visible = true;
     this.gcolContact1Phone.VisibleIndex = 3;
     //
     // gcolContact2
     //
     this.gcolContact2.Caption = "Contact 2 Name";
     this.gcolContact2.FieldName = "Contact2";
     this.gcolContact2.Name = "gcolContact2";
     this.gcolContact2.Visible = true;
     this.gcolContact2.VisibleIndex = 4;
     this.gcolContact2.Width = 145;
     //
     // gcolContact2Phone
     //
     this.gcolContact2Phone.Caption = "Contact 2 Phone";
     this.gcolContact2Phone.FieldName = "Contact2Phone";
     this.gcolContact2Phone.Name = "gcolContact2Phone";
     this.gcolContact2Phone.Visible = true;
     this.gcolContact2Phone.VisibleIndex = 5;
     //
     // gcolContact
     //
     this.gcolContact.Caption = "Contact";
     this.gcolContact.FieldName = "Contact";
     this.gcolContact.Name = "gcolContact";
     this.gcolContact.Width = 120;
     //
     // gcolStatus
     //
     this.gcolStatus.Caption = "Status";
     this.gcolStatus.FieldName = "DepartmentStatus";
     this.gcolStatus.Name = "gcolStatus";
     this.gcolStatus.Visible = true;
     this.gcolStatus.VisibleIndex = 6;
     this.gcolStatus.Width = 108;
     //
     // frmDeptBrw
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(672, 333);
     this.Controls.Add(this.pnlBody);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "frmDeptBrw";
     this.ShowInTaskbar = false;
     this.Text = "Departments...";
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     this.pnl_Find.ResumeLayout(false);
     this.pnl_Find.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.pnlBody.ResumeLayout(false);
     this.pnl_SpeedSearch.ResumeLayout(false);
     this.pnl_SpeedSearch1.ResumeLayout(false);
     this.pnl_SpeedSearch1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdDept)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwDept)).EndInit();
     this.ResumeLayout(false);
 }
Example #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.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);
 }
Example #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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmClientDlg));
     this.tbcClient = new System.Windows.Forms.TabControl();
     this.tbpClientInfo = new System.Windows.Forms.TabPage();
     this.pnlClientInfo = new System.Windows.Forms.Panel();
     this.txtNickName = new System.Windows.Forms.TextBox();
     this.lblNickName = new System.Windows.Forms.Label();
     this.dtEnded = new System.Windows.Forms.DateTimePicker();
     this.dtJoined = new System.Windows.Forms.DateTimePicker();
     this.lblHRHeader = new System.Windows.Forms.Label();
     this.groupBox12 = new System.Windows.Forms.GroupBox();
     this.label42 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label11 = new System.Windows.Forms.Label();
     this.txtCompRomaji = new System.Windows.Forms.TextBox();
     this.txtCompPhonetic = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.txtCompName = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.lblStatus = new System.Windows.Forms.Label();
     this.cmbStatus = new System.Windows.Forms.ComboBox();
     this.tbpAddress = new System.Windows.Forms.TabPage();
     this.pnlAddress = new System.Windows.Forms.Panel();
     this.lblContactInfoHeader = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.label48 = new System.Windows.Forms.Label();
     this.groupBox9 = new System.Windows.Forms.GroupBox();
     this.txtAccFirstRomaji = new System.Windows.Forms.TextBox();
     this.txtAccFirstPhonetic = new System.Windows.Forms.TextBox();
     this.label49 = new System.Windows.Forms.Label();
     this.label50 = new System.Windows.Forms.Label();
     this.txtAccFirstName = new System.Windows.Forms.TextBox();
     this.label51 = new System.Windows.Forms.Label();
     this.txtAccLRomaji1 = new System.Windows.Forms.TextBox();
     this.txtAccLPhonetic = new System.Windows.Forms.TextBox();
     this.label52 = new System.Windows.Forms.Label();
     this.label53 = new System.Windows.Forms.Label();
     this.txtAccLName = new System.Windows.Forms.TextBox();
     this.label54 = new System.Windows.Forms.Label();
     this.label36 = new System.Windows.Forms.Label();
     this.txtUrl = new System.Windows.Forms.TextBox();
     this.label38 = new System.Windows.Forms.Label();
     this.txtFax2 = new System.Windows.Forms.TextBox();
     this.txtFax1 = new System.Windows.Forms.TextBox();
     this.label41 = new System.Windows.Forms.Label();
     this.label43 = new System.Windows.Forms.Label();
     this.txtPhoneOther = new System.Windows.Forms.TextBox();
     this.label33 = new System.Windows.Forms.Label();
     this.txtPhone2 = new System.Windows.Forms.TextBox();
     this.txtPhone1 = new System.Windows.Forms.TextBox();
     this.label32 = new System.Windows.Forms.Label();
     this.lblStation2Header = new System.Windows.Forms.Label();
     this.groupBox11 = new System.Windows.Forms.GroupBox();
     this.txtMintSt2 = new System.Windows.Forms.TextBox();
     this.txtClosestLine2 = new System.Windows.Forms.TextBox();
     this.label60 = new System.Windows.Forms.Label();
     this.label61 = new System.Windows.Forms.Label();
     this.txtClosestSt2 = new System.Windows.Forms.TextBox();
     this.label62 = new System.Windows.Forms.Label();
     this.lblStation1Header = new System.Windows.Forms.Label();
     this.groupBox10 = new System.Windows.Forms.GroupBox();
     this.txtMintSt1 = new System.Windows.Forms.TextBox();
     this.txtClosestLine1 = new System.Windows.Forms.TextBox();
     this.label55 = new System.Windows.Forms.Label();
     this.label56 = new System.Windows.Forms.Label();
     this.txtClosestSt1 = new System.Windows.Forms.TextBox();
     this.label57 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.cmbBlock = new System.Windows.Forms.ComboBox();
     this.txtCountry = new System.Windows.Forms.TextBox();
     this.label27 = new System.Windows.Forms.Label();
     this.txtPost = new System.Windows.Forms.TextBox();
     this.txtState = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.txtCity = new System.Windows.Forms.TextBox();
     this.label25 = new System.Windows.Forms.Label();
     this.txtStreet3 = new System.Windows.Forms.TextBox();
     this.txtStreet2 = new System.Windows.Forms.TextBox();
     this.txtStreet1 = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.lblAddressHeader = new System.Windows.Forms.Label();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.label28 = new System.Windows.Forms.Label();
     this.tbpContact = new System.Windows.Forms.TabPage();
     this.pnlBody = new System.Windows.Forms.Panel();
     this.grdContact = new DevExpress.XtraGrid.GridControl();
     this.persistentRepository1 = new DevExpress.XtraEditors.Repository.PersistentRepository(this.components);
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gvwContact = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcolContactID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContactType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColLastName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolFirstName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolLastNameRomaji = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolFirstNameRomaji = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolEmail1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolPhone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolMobile = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolStatusID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlBottom = new System.Windows.Forms.Panel();
     this.button1 = new System.Windows.Forms.Button();
     this.btnDel = new System.Windows.Forms.Button();
     this.btnEdit = new System.Windows.Forms.Button();
     this.btnAdd = new System.Windows.Forms.Button();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnSave = new System.Windows.Forms.Button();
     this.btnDelete = new System.Windows.Forms.Button();
     this.btnPageSetup = new System.Windows.Forms.Button();
     this.btnPrint = new System.Windows.Forms.Button();
     this.printDocument1 = new System.Drawing.Printing.PrintDocument();
     this.printPreviewDialog1 = new System.Windows.Forms.PrintPreviewDialog();
     this.printingSystem = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.tbcClient.SuspendLayout();
     this.tbpClientInfo.SuspendLayout();
     this.pnlClientInfo.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tbpAddress.SuspendLayout();
     this.pnlAddress.SuspendLayout();
     this.tbpContact.SuspendLayout();
     this.pnlBody.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwContact)).BeginInit();
     this.pnlBottom.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     this.SuspendLayout();
     //
     // tbcClient
     //
     this.tbcClient.Controls.Add(this.tbpClientInfo);
     this.tbcClient.Controls.Add(this.tbpAddress);
     this.tbcClient.Controls.Add(this.tbpContact);
     this.tbcClient.Location = new System.Drawing.Point(0, 1);
     this.tbcClient.Name = "tbcClient";
     this.tbcClient.SelectedIndex = 0;
     this.tbcClient.Size = new System.Drawing.Size(640, 510);
     this.tbcClient.TabIndex = 18;
     //
     // tbpClientInfo
     //
     this.tbpClientInfo.Controls.Add(this.pnlClientInfo);
     this.tbpClientInfo.Location = new System.Drawing.Point(4, 22);
     this.tbpClientInfo.Name = "tbpClientInfo";
     this.tbpClientInfo.Size = new System.Drawing.Size(632, 484);
     this.tbpClientInfo.TabIndex = 0;
     this.tbpClientInfo.Text = "Client Info";
     //
     // pnlClientInfo
     //
     this.pnlClientInfo.Controls.Add(this.txtNickName);
     this.pnlClientInfo.Controls.Add(this.lblNickName);
     this.pnlClientInfo.Controls.Add(this.dtEnded);
     this.pnlClientInfo.Controls.Add(this.dtJoined);
     this.pnlClientInfo.Controls.Add(this.lblHRHeader);
     this.pnlClientInfo.Controls.Add(this.groupBox12);
     this.pnlClientInfo.Controls.Add(this.label42);
     this.pnlClientInfo.Controls.Add(this.label39);
     this.pnlClientInfo.Controls.Add(this.label13);
     this.pnlClientInfo.Controls.Add(this.groupBox1);
     this.pnlClientInfo.Controls.Add(this.txtCompRomaji);
     this.pnlClientInfo.Controls.Add(this.txtCompPhonetic);
     this.pnlClientInfo.Controls.Add(this.label4);
     this.pnlClientInfo.Controls.Add(this.label5);
     this.pnlClientInfo.Controls.Add(this.txtCompName);
     this.pnlClientInfo.Controls.Add(this.label6);
     this.pnlClientInfo.Controls.Add(this.lblStatus);
     this.pnlClientInfo.Controls.Add(this.cmbStatus);
     this.pnlClientInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlClientInfo.Location = new System.Drawing.Point(0, 0);
     this.pnlClientInfo.Name = "pnlClientInfo";
     this.pnlClientInfo.Size = new System.Drawing.Size(632, 484);
     this.pnlClientInfo.TabIndex = 241;
     //
     // txtNickName
     //
     this.txtNickName.Location = new System.Drawing.Point(152, 115);
     this.txtNickName.MaxLength = 255;
     this.txtNickName.Name = "txtNickName";
     this.txtNickName.Size = new System.Drawing.Size(193, 21);
     this.txtNickName.TabIndex = 3;
     //
     // lblNickName
     //
     this.lblNickName.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblNickName.Location = new System.Drawing.Point(32, 117);
     this.lblNickName.Name = "lblNickName";
     this.lblNickName.Size = new System.Drawing.Size(112, 17);
     this.lblNickName.TabIndex = 240;
     this.lblNickName.Text = "Abbreviated Name";
     //
     // dtEnded
     //
     this.dtEnded.CustomFormat = "MM/dd/yyyy";
     this.dtEnded.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtEnded.Location = new System.Drawing.Point(480, 65);
     this.dtEnded.Name = "dtEnded";
     this.dtEnded.ShowCheckBox = true;
     this.dtEnded.Size = new System.Drawing.Size(136, 21);
     this.dtEnded.TabIndex = 5;
     //
     // dtJoined
     //
     this.dtJoined.CustomFormat = "MM/dd/yyyy";
     this.dtJoined.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtJoined.Location = new System.Drawing.Point(480, 41);
     this.dtJoined.Name = "dtJoined";
     this.dtJoined.ShowCheckBox = true;
     this.dtJoined.Size = new System.Drawing.Size(136, 21);
     this.dtJoined.TabIndex = 4;
     //
     // lblHRHeader
     //
     this.lblHRHeader.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblHRHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblHRHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.lblHRHeader.Location = new System.Drawing.Point(384, 18);
     this.lblHRHeader.Name = "lblHRHeader";
     this.lblHRHeader.Size = new System.Drawing.Size(33, 17);
     this.lblHRHeader.TabIndex = 238;
     this.lblHRHeader.Text = "HR";
     //
     // groupBox12
     //
     this.groupBox12.Location = new System.Drawing.Point(408, 25);
     this.groupBox12.Name = "groupBox12";
     this.groupBox12.Size = new System.Drawing.Size(208, 2);
     this.groupBox12.TabIndex = 237;
     this.groupBox12.TabStop = false;
     //
     // label42
     //
     this.label42.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label42.Location = new System.Drawing.Point(384, 67);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(88, 17);
     this.label42.TabIndex = 236;
     this.label42.Text = "Date Ended";
     //
     // label39
     //
     this.label39.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label39.Location = new System.Drawing.Point(384, 43);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(88, 17);
     this.label39.TabIndex = 235;
     this.label39.Text = "Date Joined";
     //
     // label13
     //
     this.label13.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label13.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.label13.Location = new System.Drawing.Point(32, 18);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(53, 17);
     this.label13.TabIndex = 79;
     this.label13.Text = "Client";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label11);
     this.groupBox1.Location = new System.Drawing.Point(70, 25);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(274, 3);
     this.groupBox1.TabIndex = 78;
     this.groupBox1.TabStop = false;
     //
     // label11
     //
     this.label11.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label11.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.label11.Location = new System.Drawing.Point(24, -56);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(57, 20);
     this.label11.TabIndex = 73;
     this.label11.Text = "Company";
     //
     // txtCompRomaji
     //
     this.txtCompRomaji.Location = new System.Drawing.Point(152, 89);
     this.txtCompRomaji.MaxLength = 255;
     this.txtCompRomaji.Name = "txtCompRomaji";
     this.txtCompRomaji.Size = new System.Drawing.Size(193, 21);
     this.txtCompRomaji.TabIndex = 2;
     //
     // txtCompPhonetic
     //
     this.txtCompPhonetic.Location = new System.Drawing.Point(152, 65);
     this.txtCompPhonetic.MaxLength = 255;
     this.txtCompPhonetic.Name = "txtCompPhonetic";
     this.txtCompPhonetic.Size = new System.Drawing.Size(193, 21);
     this.txtCompPhonetic.TabIndex = 1;
     //
     // label4
     //
     this.label4.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label4.Location = new System.Drawing.Point(32, 91);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(96, 17);
     this.label4.TabIndex = 77;
     this.label4.Text = "Name Romaji";
     //
     // label5
     //
     this.label5.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label5.Location = new System.Drawing.Point(32, 67);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(96, 17);
     this.label5.TabIndex = 76;
     this.label5.Text = "Name Phonetic";
     //
     // txtCompName
     //
     this.txtCompName.Location = new System.Drawing.Point(152, 41);
     this.txtCompName.MaxLength = 255;
     this.txtCompName.Name = "txtCompName";
     this.txtCompName.Size = new System.Drawing.Size(193, 21);
     this.txtCompName.TabIndex = 0;
     //
     // label6
     //
     this.label6.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label6.Location = new System.Drawing.Point(32, 43);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(96, 17);
     this.label6.TabIndex = 75;
     this.label6.Text = "Name";
     //
     // lblStatus
     //
     this.lblStatus.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblStatus.Location = new System.Drawing.Point(384, 115);
     this.lblStatus.Name = "lblStatus";
     this.lblStatus.Size = new System.Drawing.Size(88, 17);
     this.lblStatus.TabIndex = 3;
     this.lblStatus.Text = "Status";
     //
     // cmbStatus
     //
     this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbStatus.Items.AddRange(new object[] {
     "Active",
     "Inactive"});
     this.cmbStatus.Location = new System.Drawing.Point(480, 113);
     this.cmbStatus.Name = "cmbStatus";
     this.cmbStatus.Size = new System.Drawing.Size(136, 21);
     this.cmbStatus.TabIndex = 6;
     this.cmbStatus.SelectedIndexChanged += new System.EventHandler(this.cmbStatus_SelectedIndexChanged);
     //
     // tbpAddress
     //
     this.tbpAddress.Controls.Add(this.pnlAddress);
     this.tbpAddress.Location = new System.Drawing.Point(4, 22);
     this.tbpAddress.Name = "tbpAddress";
     this.tbpAddress.Size = new System.Drawing.Size(632, 484);
     this.tbpAddress.TabIndex = 1;
     this.tbpAddress.Text = "Address";
     this.tbpAddress.Visible = false;
     //
     // pnlAddress
     //
     this.pnlAddress.Controls.Add(this.lblContactInfoHeader);
     this.pnlAddress.Controls.Add(this.groupBox2);
     this.pnlAddress.Controls.Add(this.label48);
     this.pnlAddress.Controls.Add(this.groupBox9);
     this.pnlAddress.Controls.Add(this.txtAccFirstRomaji);
     this.pnlAddress.Controls.Add(this.txtAccFirstPhonetic);
     this.pnlAddress.Controls.Add(this.label49);
     this.pnlAddress.Controls.Add(this.label50);
     this.pnlAddress.Controls.Add(this.txtAccFirstName);
     this.pnlAddress.Controls.Add(this.label51);
     this.pnlAddress.Controls.Add(this.txtAccLRomaji1);
     this.pnlAddress.Controls.Add(this.txtAccLPhonetic);
     this.pnlAddress.Controls.Add(this.label52);
     this.pnlAddress.Controls.Add(this.label53);
     this.pnlAddress.Controls.Add(this.txtAccLName);
     this.pnlAddress.Controls.Add(this.label54);
     this.pnlAddress.Controls.Add(this.label36);
     this.pnlAddress.Controls.Add(this.txtUrl);
     this.pnlAddress.Controls.Add(this.label38);
     this.pnlAddress.Controls.Add(this.txtFax2);
     this.pnlAddress.Controls.Add(this.txtFax1);
     this.pnlAddress.Controls.Add(this.label41);
     this.pnlAddress.Controls.Add(this.label43);
     this.pnlAddress.Controls.Add(this.txtPhoneOther);
     this.pnlAddress.Controls.Add(this.label33);
     this.pnlAddress.Controls.Add(this.txtPhone2);
     this.pnlAddress.Controls.Add(this.txtPhone1);
     this.pnlAddress.Controls.Add(this.label32);
     this.pnlAddress.Controls.Add(this.lblStation2Header);
     this.pnlAddress.Controls.Add(this.groupBox11);
     this.pnlAddress.Controls.Add(this.txtMintSt2);
     this.pnlAddress.Controls.Add(this.txtClosestLine2);
     this.pnlAddress.Controls.Add(this.label60);
     this.pnlAddress.Controls.Add(this.label61);
     this.pnlAddress.Controls.Add(this.txtClosestSt2);
     this.pnlAddress.Controls.Add(this.label62);
     this.pnlAddress.Controls.Add(this.lblStation1Header);
     this.pnlAddress.Controls.Add(this.groupBox10);
     this.pnlAddress.Controls.Add(this.txtMintSt1);
     this.pnlAddress.Controls.Add(this.txtClosestLine1);
     this.pnlAddress.Controls.Add(this.label55);
     this.pnlAddress.Controls.Add(this.label56);
     this.pnlAddress.Controls.Add(this.txtClosestSt1);
     this.pnlAddress.Controls.Add(this.label57);
     this.pnlAddress.Controls.Add(this.label29);
     this.pnlAddress.Controls.Add(this.cmbBlock);
     this.pnlAddress.Controls.Add(this.txtCountry);
     this.pnlAddress.Controls.Add(this.label27);
     this.pnlAddress.Controls.Add(this.txtPost);
     this.pnlAddress.Controls.Add(this.txtState);
     this.pnlAddress.Controls.Add(this.label26);
     this.pnlAddress.Controls.Add(this.txtCity);
     this.pnlAddress.Controls.Add(this.label25);
     this.pnlAddress.Controls.Add(this.txtStreet3);
     this.pnlAddress.Controls.Add(this.txtStreet2);
     this.pnlAddress.Controls.Add(this.txtStreet1);
     this.pnlAddress.Controls.Add(this.label24);
     this.pnlAddress.Controls.Add(this.lblAddressHeader);
     this.pnlAddress.Controls.Add(this.groupBox8);
     this.pnlAddress.Controls.Add(this.label28);
     this.pnlAddress.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlAddress.Location = new System.Drawing.Point(0, 0);
     this.pnlAddress.Name = "pnlAddress";
     this.pnlAddress.Size = new System.Drawing.Size(632, 484);
     this.pnlAddress.TabIndex = 312;
     this.pnlAddress.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlAddress_Paint);
     //
     // lblContactInfoHeader
     //
     this.lblContactInfoHeader.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblContactInfoHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblContactInfoHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.lblContactInfoHeader.Location = new System.Drawing.Point(334, 11);
     this.lblContactInfoHeader.Name = "lblContactInfoHeader";
     this.lblContactInfoHeader.Size = new System.Drawing.Size(90, 17);
     this.lblContactInfoHeader.TabIndex = 284;
     this.lblContactInfoHeader.Text = "Contact Info";
     //
     // groupBox2
     //
     this.groupBox2.Location = new System.Drawing.Point(416, 16);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(200, 2);
     this.groupBox2.TabIndex = 312;
     this.groupBox2.TabStop = false;
     //
     // label48
     //
     this.label48.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label48.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label48.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.label48.Location = new System.Drawing.Point(334, 232);
     this.label48.Name = "label48";
     this.label48.Size = new System.Drawing.Size(159, 17);
     this.label48.TabIndex = 311;
     this.label48.Text = "Internal Accounts Rep";
     //
     // groupBox9
     //
     this.groupBox9.Location = new System.Drawing.Point(474, 239);
     this.groupBox9.Name = "groupBox9";
     this.groupBox9.Size = new System.Drawing.Size(142, 2);
     this.groupBox9.TabIndex = 310;
     this.groupBox9.TabStop = false;
     //
     // txtAccFirstRomaji
     //
     this.txtAccFirstRomaji.Location = new System.Drawing.Point(457, 392);
     this.txtAccFirstRomaji.MaxLength = 255;
     this.txtAccFirstRomaji.Name = "txtAccFirstRomaji";
     this.txtAccFirstRomaji.Size = new System.Drawing.Size(158, 21);
     this.txtAccFirstRomaji.TabIndex = 255;
     //
     // txtAccFirstPhonetic
     //
     this.txtAccFirstPhonetic.Location = new System.Drawing.Point(457, 368);
     this.txtAccFirstPhonetic.MaxLength = 255;
     this.txtAccFirstPhonetic.Name = "txtAccFirstPhonetic";
     this.txtAccFirstPhonetic.Size = new System.Drawing.Size(158, 21);
     this.txtAccFirstPhonetic.TabIndex = 254;
     //
     // label49
     //
     this.label49.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label49.Location = new System.Drawing.Point(334, 394);
     this.label49.Name = "label49";
     this.label49.Size = new System.Drawing.Size(106, 17);
     this.label49.TabIndex = 309;
     this.label49.Text = "First Name Romaji";
     //
     // label50
     //
     this.label50.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label50.Location = new System.Drawing.Point(334, 370);
     this.label50.Name = "label50";
     this.label50.Size = new System.Drawing.Size(119, 17);
     this.label50.TabIndex = 308;
     this.label50.Text = "First Name Phonetic";
     //
     // txtAccFirstName
     //
     this.txtAccFirstName.Location = new System.Drawing.Point(457, 344);
     this.txtAccFirstName.MaxLength = 255;
     this.txtAccFirstName.Name = "txtAccFirstName";
     this.txtAccFirstName.Size = new System.Drawing.Size(158, 21);
     this.txtAccFirstName.TabIndex = 253;
     //
     // label51
     //
     this.label51.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label51.Location = new System.Drawing.Point(334, 346);
     this.label51.Name = "label51";
     this.label51.Size = new System.Drawing.Size(106, 17);
     this.label51.TabIndex = 307;
     this.label51.Text = "First Name";
     //
     // txtAccLRomaji1
     //
     this.txtAccLRomaji1.Location = new System.Drawing.Point(457, 312);
     this.txtAccLRomaji1.MaxLength = 255;
     this.txtAccLRomaji1.Name = "txtAccLRomaji1";
     this.txtAccLRomaji1.Size = new System.Drawing.Size(158, 21);
     this.txtAccLRomaji1.TabIndex = 252;
     //
     // txtAccLPhonetic
     //
     this.txtAccLPhonetic.Location = new System.Drawing.Point(457, 288);
     this.txtAccLPhonetic.MaxLength = 255;
     this.txtAccLPhonetic.Name = "txtAccLPhonetic";
     this.txtAccLPhonetic.Size = new System.Drawing.Size(158, 21);
     this.txtAccLPhonetic.TabIndex = 251;
     //
     // label52
     //
     this.label52.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label52.Location = new System.Drawing.Point(334, 314);
     this.label52.Name = "label52";
     this.label52.Size = new System.Drawing.Size(106, 17);
     this.label52.TabIndex = 306;
     this.label52.Text = "Last Name Romaji";
     //
     // label53
     //
     this.label53.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label53.Location = new System.Drawing.Point(334, 290);
     this.label53.Name = "label53";
     this.label53.Size = new System.Drawing.Size(114, 17);
     this.label53.TabIndex = 305;
     this.label53.Text = "Last Name Phonetic";
     //
     // txtAccLName
     //
     this.txtAccLName.Location = new System.Drawing.Point(457, 264);
     this.txtAccLName.MaxLength = 255;
     this.txtAccLName.Name = "txtAccLName";
     this.txtAccLName.Size = new System.Drawing.Size(158, 21);
     this.txtAccLName.TabIndex = 250;
     //
     // label54
     //
     this.label54.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label54.Location = new System.Drawing.Point(334, 266);
     this.label54.Name = "label54";
     this.label54.Size = new System.Drawing.Size(114, 17);
     this.label54.TabIndex = 304;
     this.label54.Text = "Last Name";
     //
     // label36
     //
     this.label36.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label36.Location = new System.Drawing.Point(334, 133);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(106, 17);
     this.label36.TabIndex = 287;
     this.label36.Text = "Fax 2";
     //
     // txtUrl
     //
     this.txtUrl.Cursor = System.Windows.Forms.Cursors.Hand;
     this.txtUrl.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtUrl.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.txtUrl.Location = new System.Drawing.Point(457, 158);
     this.txtUrl.MaxLength = 255;
     this.txtUrl.Name = "txtUrl";
     this.txtUrl.Size = new System.Drawing.Size(158, 21);
     this.txtUrl.TabIndex = 249;
     //
     // label38
     //
     this.label38.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label38.Location = new System.Drawing.Point(334, 160);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(106, 17);
     this.label38.TabIndex = 286;
     this.label38.Text = "URL";
     //
     // txtFax2
     //
     this.txtFax2.Location = new System.Drawing.Point(457, 131);
     this.txtFax2.MaxLength = 255;
     this.txtFax2.Name = "txtFax2";
     this.txtFax2.Size = new System.Drawing.Size(158, 21);
     this.txtFax2.TabIndex = 248;
     //
     // txtFax1
     //
     this.txtFax1.Location = new System.Drawing.Point(457, 107);
     this.txtFax1.MaxLength = 255;
     this.txtFax1.Name = "txtFax1";
     this.txtFax1.Size = new System.Drawing.Size(158, 21);
     this.txtFax1.TabIndex = 247;
     //
     // label41
     //
     this.label41.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label41.Location = new System.Drawing.Point(334, 109);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(106, 17);
     this.label41.TabIndex = 285;
     this.label41.Text = "Fax 1";
     //
     // label43
     //
     this.label43.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label43.Location = new System.Drawing.Point(334, 85);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(106, 17);
     this.label43.TabIndex = 281;
     this.label43.Text = "Phone Other";
     //
     // txtPhoneOther
     //
     this.txtPhoneOther.Location = new System.Drawing.Point(457, 83);
     this.txtPhoneOther.MaxLength = 255;
     this.txtPhoneOther.Name = "txtPhoneOther";
     this.txtPhoneOther.Size = new System.Drawing.Size(158, 21);
     this.txtPhoneOther.TabIndex = 246;
     //
     // label33
     //
     this.label33.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label33.Location = new System.Drawing.Point(334, 58);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(106, 17);
     this.label33.TabIndex = 280;
     this.label33.Text = "Phone 2";
     //
     // txtPhone2
     //
     this.txtPhone2.Location = new System.Drawing.Point(457, 56);
     this.txtPhone2.MaxLength = 255;
     this.txtPhone2.Name = "txtPhone2";
     this.txtPhone2.Size = new System.Drawing.Size(158, 21);
     this.txtPhone2.TabIndex = 245;
     //
     // txtPhone1
     //
     this.txtPhone1.Location = new System.Drawing.Point(457, 32);
     this.txtPhone1.MaxLength = 255;
     this.txtPhone1.Name = "txtPhone1";
     this.txtPhone1.Size = new System.Drawing.Size(158, 21);
     this.txtPhone1.TabIndex = 244;
     //
     // label32
     //
     this.label32.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label32.Location = new System.Drawing.Point(334, 34);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(104, 17);
     this.label32.TabIndex = 276;
     this.label32.Text = "Phone 1";
     //
     // lblStation2Header
     //
     this.lblStation2Header.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblStation2Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblStation2Header.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.lblStation2Header.Location = new System.Drawing.Point(16, 320);
     this.lblStation2Header.Name = "lblStation2Header";
     this.lblStation2Header.Size = new System.Drawing.Size(81, 17);
     this.lblStation2Header.TabIndex = 273;
     this.lblStation2Header.Text = "Station 2";
     //
     // groupBox11
     //
     this.groupBox11.Location = new System.Drawing.Point(83, 326);
     this.groupBox11.Name = "groupBox11";
     this.groupBox11.Size = new System.Drawing.Size(232, 2);
     this.groupBox11.TabIndex = 272;
     this.groupBox11.TabStop = false;
     //
     // txtMintSt2
     //
     this.txtMintSt2.Location = new System.Drawing.Point(124, 382);
     this.txtMintSt2.MaxLength = 255;
     this.txtMintSt2.Name = "txtMintSt2";
     this.txtMintSt2.Size = new System.Drawing.Size(72, 21);
     this.txtMintSt2.TabIndex = 243;
     this.txtMintSt2.Tag = "N";
     this.txtMintSt2.Text = "0";
     this.txtMintSt2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtMintSt2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMintSt1_KeyPress);
     //
     // txtClosestLine2
     //
     this.txtClosestLine2.Location = new System.Drawing.Point(124, 358);
     this.txtClosestLine2.MaxLength = 255;
     this.txtClosestLine2.Name = "txtClosestLine2";
     this.txtClosestLine2.Size = new System.Drawing.Size(203, 21);
     this.txtClosestLine2.TabIndex = 242;
     //
     // label60
     //
     this.label60.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label60.Location = new System.Drawing.Point(16, 384);
     this.label60.Name = "label60";
     this.label60.Size = new System.Drawing.Size(104, 17);
     this.label60.TabIndex = 271;
     this.label60.Text = "Minutes to Station";
     //
     // label61
     //
     this.label61.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label61.Location = new System.Drawing.Point(16, 360);
     this.label61.Name = "label61";
     this.label61.Size = new System.Drawing.Size(104, 17);
     this.label61.TabIndex = 270;
     this.label61.Text = "Closest Line";
     //
     // txtClosestSt2
     //
     this.txtClosestSt2.Location = new System.Drawing.Point(124, 334);
     this.txtClosestSt2.MaxLength = 255;
     this.txtClosestSt2.Name = "txtClosestSt2";
     this.txtClosestSt2.Size = new System.Drawing.Size(203, 21);
     this.txtClosestSt2.TabIndex = 241;
     //
     // label62
     //
     this.label62.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label62.Location = new System.Drawing.Point(16, 336);
     this.label62.Name = "label62";
     this.label62.Size = new System.Drawing.Size(104, 17);
     this.label62.TabIndex = 269;
     this.label62.Text = "Closest Station";
     //
     // lblStation1Header
     //
     this.lblStation1Header.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblStation1Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblStation1Header.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.lblStation1Header.Location = new System.Drawing.Point(16, 211);
     this.lblStation1Header.Name = "lblStation1Header";
     this.lblStation1Header.Size = new System.Drawing.Size(81, 17);
     this.lblStation1Header.TabIndex = 268;
     this.lblStation1Header.Text = "Station 1";
     //
     // groupBox10
     //
     this.groupBox10.Location = new System.Drawing.Point(83, 219);
     this.groupBox10.Name = "groupBox10";
     this.groupBox10.Size = new System.Drawing.Size(236, 2);
     this.groupBox10.TabIndex = 267;
     this.groupBox10.TabStop = false;
     //
     // txtMintSt1
     //
     this.txtMintSt1.Location = new System.Drawing.Point(124, 276);
     this.txtMintSt1.MaxLength = 255;
     this.txtMintSt1.Name = "txtMintSt1";
     this.txtMintSt1.Size = new System.Drawing.Size(72, 21);
     this.txtMintSt1.TabIndex = 240;
     this.txtMintSt1.Tag = "N";
     this.txtMintSt1.Text = "0";
     this.txtMintSt1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtMintSt1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMintSt1_KeyPress);
     //
     // txtClosestLine1
     //
     this.txtClosestLine1.Location = new System.Drawing.Point(124, 252);
     this.txtClosestLine1.MaxLength = 255;
     this.txtClosestLine1.Name = "txtClosestLine1";
     this.txtClosestLine1.Size = new System.Drawing.Size(203, 21);
     this.txtClosestLine1.TabIndex = 239;
     //
     // label55
     //
     this.label55.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label55.Location = new System.Drawing.Point(16, 278);
     this.label55.Name = "label55";
     this.label55.Size = new System.Drawing.Size(104, 17);
     this.label55.TabIndex = 266;
     this.label55.Text = "Minutes to Station";
     //
     // label56
     //
     this.label56.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label56.Location = new System.Drawing.Point(16, 254);
     this.label56.Name = "label56";
     this.label56.Size = new System.Drawing.Size(104, 17);
     this.label56.TabIndex = 265;
     this.label56.Text = "Closest Line";
     //
     // txtClosestSt1
     //
     this.txtClosestSt1.Location = new System.Drawing.Point(124, 228);
     this.txtClosestSt1.MaxLength = 255;
     this.txtClosestSt1.Name = "txtClosestSt1";
     this.txtClosestSt1.Size = new System.Drawing.Size(203, 21);
     this.txtClosestSt1.TabIndex = 238;
     //
     // label57
     //
     this.label57.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label57.Location = new System.Drawing.Point(16, 230);
     this.label57.Name = "label57";
     this.label57.Size = new System.Drawing.Size(104, 17);
     this.label57.TabIndex = 264;
     this.label57.Text = "Closest Station";
     //
     // label29
     //
     this.label29.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label29.Location = new System.Drawing.Point(16, 184);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(96, 17);
     this.label29.TabIndex = 262;
     this.label29.Text = "Block";
     //
     // cmbBlock
     //
     this.cmbBlock.Items.AddRange(new object[] {
     "A",
     "B",
     "C",
     "D",
     "E",
     "F",
     "G",
     "H"});
     this.cmbBlock.Location = new System.Drawing.Point(124, 182);
     this.cmbBlock.Name = "cmbBlock";
     this.cmbBlock.Size = new System.Drawing.Size(72, 21);
     this.cmbBlock.TabIndex = 237;
     //
     // txtCountry
     //
     this.txtCountry.Location = new System.Drawing.Point(124, 158);
     this.txtCountry.MaxLength = 255;
     this.txtCountry.Name = "txtCountry";
     this.txtCountry.Size = new System.Drawing.Size(203, 21);
     this.txtCountry.TabIndex = 236;
     //
     // label27
     //
     this.label27.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label27.Location = new System.Drawing.Point(16, 160);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(96, 17);
     this.label27.TabIndex = 261;
     this.label27.Text = "Country";
     //
     // txtPost
     //
     this.txtPost.Location = new System.Drawing.Point(260, 131);
     this.txtPost.MaxLength = 255;
     this.txtPost.Name = "txtPost";
     this.txtPost.Size = new System.Drawing.Size(67, 21);
     this.txtPost.TabIndex = 235;
     //
     // txtState
     //
     this.txtState.Location = new System.Drawing.Point(124, 131);
     this.txtState.MaxLength = 255;
     this.txtState.Name = "txtState";
     this.txtState.Size = new System.Drawing.Size(71, 21);
     this.txtState.TabIndex = 234;
     //
     // label26
     //
     this.label26.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label26.Location = new System.Drawing.Point(16, 133);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(96, 17);
     this.label26.TabIndex = 260;
     this.label26.Text = "State";
     //
     // txtCity
     //
     this.txtCity.Location = new System.Drawing.Point(124, 104);
     this.txtCity.MaxLength = 255;
     this.txtCity.Name = "txtCity";
     this.txtCity.Size = new System.Drawing.Size(203, 21);
     this.txtCity.TabIndex = 233;
     //
     // label25
     //
     this.label25.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label25.Location = new System.Drawing.Point(16, 106);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(96, 17);
     this.label25.TabIndex = 259;
     this.label25.Text = "City";
     //
     // txtStreet3
     //
     this.txtStreet3.Location = new System.Drawing.Point(124, 80);
     this.txtStreet3.MaxLength = 255;
     this.txtStreet3.Name = "txtStreet3";
     this.txtStreet3.Size = new System.Drawing.Size(203, 21);
     this.txtStreet3.TabIndex = 232;
     //
     // txtStreet2
     //
     this.txtStreet2.Location = new System.Drawing.Point(124, 56);
     this.txtStreet2.MaxLength = 255;
     this.txtStreet2.Name = "txtStreet2";
     this.txtStreet2.Size = new System.Drawing.Size(203, 21);
     this.txtStreet2.TabIndex = 231;
     //
     // txtStreet1
     //
     this.txtStreet1.Location = new System.Drawing.Point(124, 32);
     this.txtStreet1.MaxLength = 255;
     this.txtStreet1.Name = "txtStreet1";
     this.txtStreet1.Size = new System.Drawing.Size(203, 21);
     this.txtStreet1.TabIndex = 230;
     //
     // label24
     //
     this.label24.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label24.Location = new System.Drawing.Point(16, 34);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(96, 17);
     this.label24.TabIndex = 258;
     this.label24.Text = "Street";
     //
     // lblAddressHeader
     //
     this.lblAddressHeader.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblAddressHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAddressHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.lblAddressHeader.Location = new System.Drawing.Point(16, 11);
     this.lblAddressHeader.Name = "lblAddressHeader";
     this.lblAddressHeader.Size = new System.Drawing.Size(67, 17);
     this.lblAddressHeader.TabIndex = 257;
     this.lblAddressHeader.Text = "Address";
     //
     // groupBox8
     //
     this.groupBox8.Location = new System.Drawing.Point(79, 18);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(236, 2);
     this.groupBox8.TabIndex = 256;
     this.groupBox8.TabStop = false;
     //
     // label28
     //
     this.label28.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label28.Location = new System.Drawing.Point(201, 128);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(53, 27);
     this.label28.TabIndex = 263;
     this.label28.Text = "Postal\r\nCode";
     this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // tbpContact
     //
     this.tbpContact.Controls.Add(this.pnlBody);
     this.tbpContact.Controls.Add(this.pnlBottom);
     this.tbpContact.Location = new System.Drawing.Point(4, 22);
     this.tbpContact.Name = "tbpContact";
     this.tbpContact.Size = new System.Drawing.Size(632, 484);
     this.tbpContact.TabIndex = 2;
     this.tbpContact.Text = "Contact";
     //
     // pnlBody
     //
     this.pnlBody.Controls.Add(this.grdContact);
     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(632, 436);
     this.pnlBody.TabIndex = 3;
     //
     // grdContact
     //
     this.grdContact.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdContact.EmbeddedNavigator.Name = "";
     this.grdContact.ExternalRepository = this.persistentRepository1;
     this.grdContact.Location = new System.Drawing.Point(0, 0);
     this.grdContact.MainView = this.gvwContact;
     this.grdContact.Name = "grdContact";
     this.grdContact.Size = new System.Drawing.Size(632, 436);
     this.grdContact.TabIndex = 27;
     this.grdContact.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvwContact});
     this.grdContact.DoubleClick += new System.EventHandler(this.grdContact_DoubleClick);
     //
     // persistentRepository1
     //
     this.persistentRepository1.Items.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AllowFocused = false;
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // gvwContact
     //
     this.gvwContact.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.gvwContact.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcolContactID,
     this.gcolContactType,
     this.gcolType,
     this.gColLastName,
     this.gcolFirstName,
     this.gcolLastNameRomaji,
     this.gcolFirstNameRomaji,
     this.gcolEmail1,
     this.gcolPhone,
     this.gcolMobile,
     this.gcolStatusID,
     this.gcolStatus});
     this.gvwContact.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gvwContact.GridControl = this.grdContact;
     this.gvwContact.Name = "gvwContact";
     this.gvwContact.OptionsBehavior.Editable = false;
     this.gvwContact.OptionsBehavior.KeepGroupExpandedOnSorting = false;
     this.gvwContact.OptionsCustomization.AllowFilter = false;
     this.gvwContact.OptionsDetail.EnableDetailToolTip = true;
     this.gvwContact.OptionsNavigation.AutoMoveRowFocus = false;
     this.gvwContact.OptionsPrint.UsePrintStyles = true;
     this.gvwContact.OptionsView.ShowDetailButtons = false;
     this.gvwContact.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gvwContact.OptionsView.ShowGroupPanel = false;
     this.gvwContact.OptionsView.ShowHorzLines = false;
     this.gvwContact.OptionsView.ShowIndicator = false;
     this.gvwContact.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcolContactType, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gvwContact.Appearance.FocusedRow.AssignInternal(this.gvwContact.Appearance.SelectedRow);
     //this.gvwContact.ViewStyles.AddReplace("FocusedRow", "SelectedRow");
     //this.gvwContact.ViewStyles.AddReplace("FocusedCell", "SelectedRow");
     //
     // gcolContactID
     //
     this.gcolContactID.Caption = "ContactID";
     this.gcolContactID.FieldName = "ContactId";
     this.gcolContactID.Name = "gcolContactID";
     //
     // gcolContactType
     //
     this.gcolContactType.Caption = "Contact Type ID";
     this.gcolContactType.FieldName = "ContactType";
     this.gcolContactType.Name = "gcolContactType";
     this.gcolContactType.Width = 68;
     //
     // gcolType
     //
     this.gcolType.Caption = "Contact Type";
     this.gcolType.FieldName = "Type";
     this.gcolType.Name = "gcolType";
     //
     // gColLastName
     //
     this.gColLastName.Caption = "Last Name";
     this.gColLastName.FieldName = "LastName";
     this.gColLastName.Name = "gColLastName";
     this.gColLastName.Visible = true;
     this.gColLastName.VisibleIndex = 0;
     this.gColLastName.Width = 157;
     //
     // gcolFirstName
     //
     this.gcolFirstName.Caption = "First Name";
     this.gcolFirstName.FieldName = "FirstName";
     this.gcolFirstName.Name = "gcolFirstName";
     this.gcolFirstName.Visible = true;
     this.gcolFirstName.VisibleIndex = 1;
     this.gcolFirstName.Width = 157;
     //
     // gcolLastNameRomaji
     //
     this.gcolLastNameRomaji.Caption = "Last Name Romaji";
     this.gcolLastNameRomaji.FieldName = "LastNameRomaji";
     this.gcolLastNameRomaji.Name = "gcolLastNameRomaji";
     //
     // gcolFirstNameRomaji
     //
     this.gcolFirstNameRomaji.Caption = "First Name Romaji";
     this.gcolFirstNameRomaji.FieldName = "FirstNameRomaji";
     this.gcolFirstNameRomaji.Name = "gcolFirstNameRomaji";
     //
     // gcolEmail1
     //
     this.gcolEmail1.Caption = "EMail";
     this.gcolEmail1.FieldName = "Email1";
     this.gcolEmail1.Name = "gcolEmail1";
     this.gcolEmail1.Visible = true;
     this.gcolEmail1.VisibleIndex = 2;
     this.gcolEmail1.Width = 78;
     //
     // gcolPhone
     //
     this.gcolPhone.Caption = "Phone";
     this.gcolPhone.FieldName = "Phone1";
     this.gcolPhone.Name = "gcolPhone";
     this.gcolPhone.Visible = true;
     this.gcolPhone.VisibleIndex = 3;
     this.gcolPhone.Width = 78;
     //
     // gcolMobile
     //
     this.gcolMobile.Caption = "Mobile";
     this.gcolMobile.DisplayFormat.FormatString = "Mobile";
     this.gcolMobile.Name = "gcolMobile";
     this.gcolMobile.Visible = true;
     this.gcolMobile.VisibleIndex = 4;
     this.gcolMobile.Width = 78;
     //
     // gcolStatusID
     //
     this.gcolStatusID.Caption = "Status";
     this.gcolStatusID.FieldName = "ContactStatus";
     this.gcolStatusID.Name = "gcolStatusID";
     this.gcolStatusID.Width = 79;
     //
     // gcolStatus
     //
     this.gcolStatus.Caption = "Status";
     this.gcolStatus.FieldName = "Status";
     this.gcolStatus.Name = "gcolStatus";
     this.gcolStatus.Visible = true;
     this.gcolStatus.VisibleIndex = 5;
     this.gcolStatus.Width = 80;
     //
     // pnlBottom
     //
     this.pnlBottom.Controls.Add(this.button1);
     this.pnlBottom.Controls.Add(this.btnDel);
     this.pnlBottom.Controls.Add(this.btnEdit);
     this.pnlBottom.Controls.Add(this.btnAdd);
     this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlBottom.Location = new System.Drawing.Point(0, 436);
     this.pnlBottom.Name = "pnlBottom";
     this.pnlBottom.Size = new System.Drawing.Size(632, 48);
     this.pnlBottom.TabIndex = 2;
     //
     // button1
     //
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.button1.Location = new System.Drawing.Point(279, 13);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 20;
     this.button1.Text = "Delete";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // btnDel
     //
     this.btnDel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnDel.Location = new System.Drawing.Point(178, 13);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(75, 23);
     this.btnDel.TabIndex = 19;
     this.btnDel.Text = "Delete";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnEdit
     //
     this.btnEdit.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnEdit.Location = new System.Drawing.Point(98, 13);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(75, 23);
     this.btnEdit.TabIndex = 18;
     this.btnEdit.Text = "Edit";
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnAdd
     //
     this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnAdd.Location = new System.Drawing.Point(16, 13);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex = 17;
     this.btnAdd.Text = "Add";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnCancel
     //
     this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnCancel.Location = new System.Drawing.Point(465, 524);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 17;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnSave
     //
     this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnSave.Location = new System.Drawing.Point(382, 524);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 16;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnDelete
     //
     this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnDelete.Location = new System.Drawing.Point(548, 524);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 19;
     this.btnDelete.Text = "Delete";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnPageSetup
     //
     this.btnPageSetup.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnPageSetup.Location = new System.Drawing.Point(99, 524);
     this.btnPageSetup.Name = "btnPageSetup";
     this.btnPageSetup.Size = new System.Drawing.Size(75, 23);
     this.btnPageSetup.TabIndex = 22;
     this.btnPageSetup.Text = "Page Setup";
     this.btnPageSetup.Click += new System.EventHandler(this.btnPageSetup_Click);
     //
     // btnPrint
     //
     this.btnPrint.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnPrint.Location = new System.Drawing.Point(16, 524);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(75, 23);
     this.btnPrint.TabIndex = 21;
     this.btnPrint.Text = "Print";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // printDocument1
     //
     this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
     this.printDocument1.BeginPrint += new System.Drawing.Printing.PrintEventHandler(this.printDocument1_BeginPrint);
     //
     // printPreviewDialog1
     //
     this.printPreviewDialog1.AutoScrollMargin = new System.Drawing.Size(0, 0);
     this.printPreviewDialog1.AutoScrollMinSize = new System.Drawing.Size(0, 0);
     this.printPreviewDialog1.ClientSize = new System.Drawing.Size(400, 300);
     this.printPreviewDialog1.Document = this.printDocument1;
     this.printPreviewDialog1.Enabled = true;
     this.printPreviewDialog1.Icon = ((System.Drawing.Icon)(resources.GetObject("printPreviewDialog1.Icon")));
     this.printPreviewDialog1.Name = "printPreviewDialog1";
     this.printPreviewDialog1.Visible = false;
     //
     // frmClientDlg
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(642, 558);
     this.Controls.Add(this.btnPageSetup);
     this.Controls.Add(this.btnPrint);
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.tbcClient);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnSave);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmClientDlg";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Client...";
     this.Load += new System.EventHandler(this.frmClientDlg_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmClientDlg_KeyDown);
     this.tbcClient.ResumeLayout(false);
     this.tbpClientInfo.ResumeLayout(false);
     this.pnlClientInfo.ResumeLayout(false);
     this.pnlClientInfo.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.tbpAddress.ResumeLayout(false);
     this.pnlAddress.ResumeLayout(false);
     this.pnlAddress.PerformLayout();
     this.tbpContact.ResumeLayout(false);
     this.pnlBody.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwContact)).EndInit();
     this.pnlBottom.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).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(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);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm500PHTable));
     this.barManager1 = new DevExpress.XtraBars.BarManager();
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem12 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem13 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem11 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.bar2 = new DevExpress.XtraBars.Bar();
     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.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.AllowCustomization = false;
     this.barManager1.AllowQuickCustomization = false;
     this.barManager1.AllowShowToolbarsPopup = false;
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1,
     this.bar2});
     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.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5,
     this.barButtonItem6,
     this.barButtonItem7,
     this.barButtonItem8,
     this.barButtonItem9,
     this.barSubItem1,
     this.barButtonItem10,
     this.barButtonItem11,
     this.barButtonItem12,
     this.barButtonItem13});
     this.barManager1.MaxItemId = 14;
     this.barManager1.StatusBar = this.bar2;
     //
     // bar1
     //
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem8, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem3),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem1, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem5),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem6, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem9),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem12),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubItem1, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem7, true)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption = "增加城区";
     this.barButtonItem8.Id = 7;
     this.barButtonItem8.ImageIndex = 3;
     this.barButtonItem8.Name = "barButtonItem8";
     this.barButtonItem8.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "删除记录";
     this.barButtonItem3.Id = 2;
     this.barButtonItem3.ImageIndex = 2;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "增加变电站";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 3;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "修改";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.ImageIndex = 5;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "设置容载比";
     this.barButtonItem4.Id = 3;
     this.barButtonItem4.ImageIndex = 4;
     this.barButtonItem4.Name = "barButtonItem4";
     this.barButtonItem4.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem4_ItemClick);
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "载入负荷数据";
     this.barButtonItem5.Id = 4;
     this.barButtonItem5.ImageIndex = 6;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem5.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "变电容量统计";
     this.barButtonItem6.Id = 5;
     this.barButtonItem6.ImageIndex = 8;
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption = "容载比统计";
     this.barButtonItem9.Id = 8;
     this.barButtonItem9.ImageIndex = 8;
     this.barButtonItem9.Name = "barButtonItem9";
     this.barButtonItem9.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem9.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem9_ItemClick);
     //
     // barButtonItem12
     //
     this.barButtonItem12.Caption = "设定年份";
     this.barButtonItem12.Id = 12;
     this.barButtonItem12.ImageIndex = 7;
     this.barButtonItem12.Name = "barButtonItem12";
     this.barButtonItem12.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem12.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem12_ItemClick);
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "数据";
     this.barSubItem1.Id = 9;
     this.barSubItem1.ImageIndex = 4;
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem10),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem13),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem11)});
     this.barSubItem1.Name = "barSubItem1";
     //
     // barButtonItem10
     //
     this.barButtonItem10.Caption = "拷贝";
     this.barButtonItem10.Id = 10;
     this.barButtonItem10.ImageIndex = 5;
     this.barButtonItem10.Name = "barButtonItem10";
     this.barButtonItem10.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem10_ItemClick);
     //
     // barButtonItem13
     //
     this.barButtonItem13.Caption = "更新";
     this.barButtonItem13.Id = 13;
     this.barButtonItem13.ImageIndex = 8;
     this.barButtonItem13.Name = "barButtonItem13";
     this.barButtonItem13.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem13_ItemClick);
     //
     // barButtonItem11
     //
     this.barButtonItem11.Caption = "清除";
     this.barButtonItem11.Id = 11;
     this.barButtonItem11.ImageIndex = 2;
     this.barButtonItem11.Name = "barButtonItem11";
     this.barButtonItem11.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem11_ItemClick);
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "关闭";
     this.barButtonItem7.Id = 6;
     this.barButtonItem7.ImageIndex = 9;
     this.barButtonItem7.Name = "barButtonItem7";
     this.barButtonItem7.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem7.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem7_ItemClick);
     //
     // bar2
     //
     this.bar2.BarName = "Custom 2";
     this.bar2.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar2.OptionsBar.AllowQuickCustomization = false;
     this.bar2.OptionsBar.DrawDragBorder = false;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Custom 2";
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "保存.ico");
     this.imageList1.Images.SetKeyName(1, "打印.ico");
     this.imageList1.Images.SetKeyName(2, "删除.ico");
     this.imageList1.Images.SetKeyName(3, "添加下级.ico");
     this.imageList1.Images.SetKeyName(4, "新建.ico");
     this.imageList1.Images.SetKeyName(5, "修改.ico");
     this.imageList1.Images.SetKeyName(6, "添加同级.ico");
     this.imageList1.Images.SetKeyName(7, "审批.ico");
     this.imageList1.Images.SetKeyName(8, "审核.ico");
     this.imageList1.Images.SetKeyName(9, "关闭.ico");
     //
     // treeList1
     //
     this.treeList1.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.treeList1.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 34);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsBehavior.AutoFocusNewNode = true;
     this.treeList1.OptionsView.AutoWidth = false;
     this.treeList1.OptionsView.EnableAppearanceOddRow = true;
     this.treeList1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.treeList1.Size = new System.Drawing.Size(978, 455);
     this.treeList1.TabIndex = 4;
     this.treeList1.FocusedColumnChanged += new DevExpress.XtraTreeList.FocusedColumnChangedEventHandler(this.treeList1_FocusedColumnChanged);
     this.treeList1.CellValueChanged += new DevExpress.XtraTreeList.CellValueChangedEventHandler(this.treeList1_CellValueChanged);
     this.treeList1.ShownEditor += new System.EventHandler(this.treeList1_ShownEditor);
     this.treeList1.DoubleClick += new System.EventHandler(this.treeList1_DoubleClick);
     this.treeList1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.treeList1_ShowingEditor);
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Mask.EditMask = "###########.####";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // Frm500PHTable
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(978, 507);
     this.Controls.Add(this.treeList1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "Frm500PHTable";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "110千伏变电容量平衡表";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Form12_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).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();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition3 = new DevExpress.XtraGrid.StyleFormatCondition();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WishListForm));
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition4 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule3 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule4 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.colPacks = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.spinEditPack = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.boxSizedList = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.layoutControl4 = new DevExpress.XtraLayout.LayoutControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.lkRange = new DevExpress.XtraEditors.LookUpEdit();
     this.ShowStockOutCheckBox = new DevExpress.XtraEditors.CheckEdit();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.ItemSelectionPage = new DevExpress.XtraTab.XtraTabPage();
     this.orderGrid = new DevExpress.XtraGrid.GridControl();
     this.gridOrderView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.ColStockCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColItemNameOrderDetail = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.colsQtyPerPack = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colExpired = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDamaged = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSOH = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColBeginningBalance = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColLoss = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColAdjustment = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColQuantityReceived = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColDOS = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColQuantityNeedMax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColMaxStockQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColConsumption = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ColStockedOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ExpireDateEditor = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.spinEditQtyPerPack = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridRecieveView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.VolumeMetricsPage = new DevExpress.XtraTab.XtraTabPage();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lkContainerTypes = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cboRequiredContainer = new System.Windows.Forms.ComboBox();
     this.lblAvailableVolume = new System.Windows.Forms.Label();
     this.lblVolumeNeeded = new System.Windows.Forms.Label();
     this.volumetricsCanvas = new System.Windows.Forms.Panel();
     this.grdVolumeGrid = new DevExpress.XtraGrid.GridControl();
     this.grdVolumeGridView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.Height = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Width = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Depth = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Quantity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.layoutControlItem32 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem36 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem37 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem40 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem39 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem33 = new DevExpress.XtraLayout.LayoutControlItem();
     this.NoOfVisitLabel = new DevExpress.XtraEditors.LabelControl();
     this.LastVisitlabel = new DevExpress.XtraEditors.LabelControl();
     this.progressBarControl = new DevExpress.XtraEditors.ProgressBarControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.lkType = new DevExpress.XtraEditors.LookUpEdit();
     this.lkOwnership = new DevExpress.XtraEditors.LookUpEdit();
     this.lkWoreda = new DevExpress.XtraEditors.LookUpEdit();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.txtReceivedBy = new DevExpress.XtraEditors.TextEdit();
     this.txtTin = new DevExpress.XtraEditors.TextEdit();
     this.txtVatRegistration = new DevExpress.XtraEditors.TextEdit();
     this.txtRegistrationNo = new DevExpress.XtraEditors.TextEdit();
     this.txtLetterNumber = new DevExpress.XtraEditors.TextEdit();
     this.txtRefNo = new DevExpress.XtraEditors.TextEdit();
     this.btnSaveOrder = new DevExpress.XtraEditors.SimpleButton();
     this.btnSaveAndForward = new DevExpress.XtraEditors.SimpleButton();
     this.lkModes = new DevExpress.XtraEditors.LookUpEdit();
     this.txtContactPerson = new DevExpress.XtraEditors.TextEdit();
     this.lkZone = new DevExpress.XtraEditors.LookUpEdit();
     this.lkRegion = new DevExpress.XtraEditors.LookUpEdit();
     this.lblLoadRU = new DevExpress.XtraEditors.LabelControl();
     this.lkCategoires = new DevExpress.XtraEditors.LookUpEdit();
     this.txtItemName = new DevExpress.XtraEditors.TextEdit();
     this.gridItemsChoice = new DevExpress.XtraGrid.GridControl();
     this.gridItemChoiceView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colItemName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn66 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn67 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lkPaymentType = new DevExpress.XtraEditors.LookUpEdit();
     this.lkForFacility = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lkPeriod = new DevExpress.XtraEditors.GridLookUpEdit();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.lkColStartDate_EndDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lkRequisitionType = new DevExpress.XtraEditors.LookUpEdit();
     this.btnCancelOne = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutReload = new DevExpress.XtraLayout.LayoutControlItem();
     this.progressBarlayoutControlItem = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem22 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem21 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup14 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem30 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem19 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem14 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.simpleSeparator2 = new DevExpress.XtraLayout.SimpleSeparator();
     this.LastVisitlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.NoRequisitionlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.ShowStockOutCheckBoxLayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.RequisitionTypelayoutControlItem = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.RangeLayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem52 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem31 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem7 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem38 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem5 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.simpleSeparator3 = new DevExpress.XtraLayout.SimpleSeparator();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem20 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem8 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem34 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem35 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem9 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lkPeriodlayout = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutForFacility = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.emptySpaceItem15 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup8 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem10 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem22 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem23 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.printOrder = new DevExpress.XtraPrinting.PrintableComponentLink(this.components);
     this.dxValidation1stTab = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem26 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem27 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
     this.simpleLabelItem13 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem1 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.simpleLabelItem2 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditPack)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).BeginInit();
     this.layoutControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkRange.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBox.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.ItemSelectionPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditQtyPerPack)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRecieveView1)).BeginInit();
     this.VolumeMetricsPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkContainerTypes.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTin.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVatRegistration.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRegistrationNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLetterNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkModes.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkCategoires.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemsChoice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemChoiceView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkForFacility.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRequisitionType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutReload)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarlayoutControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastVisitlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoRequisitionlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBoxLayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RequisitionTypelayoutControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RangeLayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriodlayout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutForFacility)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem2)).BeginInit();
     this.SuspendLayout();
     //
     // colPacks
     //
     this.colPacks.Caption = "Quantity";
     this.colPacks.ColumnEdit = this.repositoryItemTextEdit1;
     this.colPacks.FieldName = "Pack";
     this.colPacks.Name = "colPacks";
     this.colPacks.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colPacks.OptionsColumn.FixedWidth = true;
     this.colPacks.ToolTip = "Requested Quantity";
     this.colPacks.Visible = true;
     this.colPacks.VisibleIndex = 14;
     this.colPacks.Width = 40;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Mask.EditMask = "\\d{0,6}(\\.\\d{0,4})";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // spinEditPack
     //
     this.spinEditPack.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.spinEditPack.AutoHeight = false;
     this.spinEditPack.DisplayFormat.FormatString = "#,##0.##";
     this.spinEditPack.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.spinEditPack.EditFormat.FormatString = "#,##0.##";
     this.spinEditPack.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.spinEditPack.IsFloatValue = false;
     this.spinEditPack.MaxValue = new decimal(new int[] {
     100000000,
     0,
     0,
     0});
     this.spinEditPack.Name = "spinEditPack";
     //
     // boxSizedList
     //
     this.boxSizedList.AutoHeight = false;
     this.boxSizedList.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.boxSizedList.DisplayMember = "Name";
     this.boxSizedList.Name = "boxSizedList";
     this.boxSizedList.ValueMember = "ID";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // repositoryItemDateEdit3
     //
     this.repositoryItemDateEdit3.AutoHeight = false;
     this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.EditFormat.FormatString = "mm-DD-YYYY";
     this.repositoryItemDateEdit3.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit3.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.DisplayText;
     this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
     this.repositoryItemDateEdit3.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemButtonEdit4
     //
     this.repositoryItemButtonEdit4.AutoHeight = false;
     this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
     this.repositoryItemButtonEdit4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // layoutControl4
     //
     this.layoutControl4.AllowCustomizationMenu = false;
     this.layoutControl4.Controls.Add(this.labelControl4);
     this.layoutControl4.Controls.Add(this.labelControl3);
     this.layoutControl4.Controls.Add(this.labelControl2);
     this.layoutControl4.Controls.Add(this.labelControl1);
     this.layoutControl4.Controls.Add(this.lkRange);
     this.layoutControl4.Controls.Add(this.ShowStockOutCheckBox);
     this.layoutControl4.Controls.Add(this.xtraTabControl1);
     this.layoutControl4.Controls.Add(this.NoOfVisitLabel);
     this.layoutControl4.Controls.Add(this.LastVisitlabel);
     this.layoutControl4.Controls.Add(this.progressBarControl);
     this.layoutControl4.Controls.Add(this.simpleButton1);
     this.layoutControl4.Controls.Add(this.lkType);
     this.layoutControl4.Controls.Add(this.lkOwnership);
     this.layoutControl4.Controls.Add(this.lkWoreda);
     this.layoutControl4.Controls.Add(this.txtRemark);
     this.layoutControl4.Controls.Add(this.txtReceivedBy);
     this.layoutControl4.Controls.Add(this.txtTin);
     this.layoutControl4.Controls.Add(this.txtVatRegistration);
     this.layoutControl4.Controls.Add(this.txtRegistrationNo);
     this.layoutControl4.Controls.Add(this.txtLetterNumber);
     this.layoutControl4.Controls.Add(this.txtRefNo);
     this.layoutControl4.Controls.Add(this.btnSaveOrder);
     this.layoutControl4.Controls.Add(this.btnSaveAndForward);
     this.layoutControl4.Controls.Add(this.lkModes);
     this.layoutControl4.Controls.Add(this.txtContactPerson);
     this.layoutControl4.Controls.Add(this.lkZone);
     this.layoutControl4.Controls.Add(this.lkRegion);
     this.layoutControl4.Controls.Add(this.lblLoadRU);
     this.layoutControl4.Controls.Add(this.lkCategoires);
     this.layoutControl4.Controls.Add(this.txtItemName);
     this.layoutControl4.Controls.Add(this.gridItemsChoice);
     this.layoutControl4.Controls.Add(this.lkPaymentType);
     this.layoutControl4.Controls.Add(this.lkForFacility);
     this.layoutControl4.Controls.Add(this.lkPeriod);
     this.layoutControl4.Controls.Add(this.lkRequisitionType);
     this.layoutControl4.Controls.Add(this.btnCancelOne);
     this.layoutControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl4.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem24,
     this.layoutControlItem25,
     this.layoutReload,
     this.progressBarlayoutControlItem,
     this.layoutControlItem23,
     this.layoutControlItem22,
     this.layoutControlItem21,
     this.layoutControlItem13});
     this.layoutControl4.Location = new System.Drawing.Point(0, 0);
     this.layoutControl4.Name = "layoutControl4";
     this.layoutControl4.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(59, 358, 345, 729);
     this.layoutControl4.OptionsView.ShareLookAndFeelWithChildren = false;
     this.layoutControl4.Root = this.layoutControlGroup14;
     this.layoutControl4.Size = new System.Drawing.Size(1350, 393);
     this.layoutControl4.TabIndex = 31;
     this.layoutControl4.Text = "layoutControl4";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(75, 16);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(189, 13);
     this.labelControl4.TabIndex = 53;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(899, 4);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(93, 13);
     this.labelControl3.TabIndex = 52;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(707, 4);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(107, 13);
     this.labelControl2.TabIndex = 51;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(523, 4);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(113, 13);
     this.labelControl1.TabIndex = 50;
     //
     // lkRange
     //
     this.lkRange.Enabled = false;
     this.lkRange.Location = new System.Drawing.Point(308, 38);
     this.lkRange.Name = "lkRange";
     this.lkRange.Properties.AllowMouseWheel = false;
     this.lkRange.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRange.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Range", "History Detail")});
     this.lkRange.Properties.DisplayMember = "Range";
     this.lkRange.Properties.NullText = "Range";
     this.lkRange.Properties.PopupWidth = 100;
     this.lkRange.Properties.ShowFooter = false;
     this.lkRange.Properties.ValueMember = "Value";
     this.lkRange.Size = new System.Drawing.Size(102, 20);
     this.lkRange.TabIndex = 46;
     this.lkRange.EditValueChanged += new System.EventHandler(this.lkRange_EditValueChanged);
     //
     // ShowStockOutCheckBox
     //
     this.ShowStockOutCheckBox.Location = new System.Drawing.Point(446, 107);
     this.ShowStockOutCheckBox.Name = "ShowStockOutCheckBox";
     this.ShowStockOutCheckBox.Properties.Caption = "Show Stock Out";
     this.ShowStockOutCheckBox.Size = new System.Drawing.Size(277, 19);
     this.ShowStockOutCheckBox.TabIndex = 49;
     this.ShowStockOutCheckBox.CheckedChanged += new System.EventHandler(this.ShowStockOutCheckBox_CheckedChanged);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(432, 143);
     this.xtraTabControl1.Margin = new System.Windows.Forms.Padding(0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.ItemSelectionPage;
     this.xtraTabControl1.Size = new System.Drawing.Size(916, 222);
     this.xtraTabControl1.TabIndex = 48;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.ItemSelectionPage,
     this.VolumeMetricsPage});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     this.xtraTabControl1.Click += new System.EventHandler(this.xtraTabControl1_Click);
     //
     // ItemSelectionPage
     //
     this.ItemSelectionPage.Controls.Add(this.orderGrid);
     this.ItemSelectionPage.Name = "ItemSelectionPage";
     this.ItemSelectionPage.Size = new System.Drawing.Size(910, 194);
     this.ItemSelectionPage.Text = "Selection";
     //
     // orderGrid
     //
     this.orderGrid.Dock = System.Windows.Forms.DockStyle.Fill;
     this.orderGrid.ImeMode = System.Windows.Forms.ImeMode.On;
     this.orderGrid.Location = new System.Drawing.Point(0, 0);
     this.orderGrid.MainView = this.gridOrderView;
     this.orderGrid.Margin = new System.Windows.Forms.Padding(0);
     this.orderGrid.Name = "orderGrid";
     this.orderGrid.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.ExpireDateEditor,
     this.repositoryItemButtonEdit2,
     this.spinEditPack,
     this.spinEditQtyPerPack,
     this.repositoryItemTextEdit1,
     this.repositoryItemMemoEdit1});
     this.orderGrid.Size = new System.Drawing.Size(910, 194);
     this.orderGrid.TabIndex = 11;
     this.orderGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridOrderView,
     this.gridRecieveView1});
     this.orderGrid.Click += new System.EventHandler(this.orderGrid_Click);
     //
     // gridOrderView
     //
     this.gridOrderView.Appearance.FocusedCell.BackColor = System.Drawing.Color.SkyBlue;
     this.gridOrderView.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gridOrderView.Appearance.FocusedRow.BackColor = System.Drawing.Color.CornflowerBlue;
     this.gridOrderView.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridOrderView.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.gridOrderView.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridOrderView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ColStockCode,
     this.ColItemNameOrderDetail,
     this.colsQtyPerPack,
     this.ColUnit,
     this.colExpired,
     this.colDamaged,
     this.colSOH,
     this.ColBeginningBalance,
     this.ColLoss,
     this.ColAdjustment,
     this.ColQuantityReceived,
     this.ColDOS,
     this.ColQuantityNeedMax,
     this.ColMaxStockQuantity,
     this.ColConsumption,
     this.colPacks,
     this.ColStockedOut});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.Column = this.colPacks;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "[SKUBU] is null";
     styleFormatCondition2.Appearance.ForeColor = System.Drawing.Color.Silver;
     styleFormatCondition2.Appearance.Options.UseForeColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition2.Expression = "[StockedOut] == 1";
     styleFormatCondition3.Appearance.ForeColor = System.Drawing.Color.Silver;
     styleFormatCondition3.Appearance.Options.UseForeColor = true;
     styleFormatCondition3.ApplyToRow = true;
     styleFormatCondition3.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition3.Expression = "[StockedOut] == 1";
     this.gridOrderView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1,
     styleFormatCondition2,
     styleFormatCondition3});
     this.gridOrderView.GridControl = this.orderGrid;
     this.gridOrderView.IndicatorWidth = 40;
     this.gridOrderView.Name = "gridOrderView";
     this.gridOrderView.OptionsCustomization.AllowColumnMoving = false;
     this.gridOrderView.OptionsCustomization.AllowColumnResizing = false;
     this.gridOrderView.OptionsCustomization.AllowFilter = false;
     this.gridOrderView.OptionsCustomization.AllowQuickHideColumns = false;
     this.gridOrderView.OptionsCustomization.AllowSort = false;
     this.gridOrderView.OptionsMenu.EnableColumnMenu = false;
     this.gridOrderView.OptionsMenu.EnableFooterMenu = false;
     this.gridOrderView.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridOrderView.OptionsView.AllowCellMerge = true;
     this.gridOrderView.OptionsView.RowAutoHeight = true;
     this.gridOrderView.OptionsView.ShowGroupPanel = false;
     this.gridOrderView.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridOrderView_CustomDrawRowIndicator);
     this.gridOrderView.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridOrderView_CustomDrawCell);
     this.gridOrderView.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.gridOrderView_ShowingEditor);
     this.gridOrderView.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.OnOrderCellValueChanged);
     //
     // ColStockCode
     //
     this.ColStockCode.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ColStockCode.AppearanceCell.Options.UseBackColor = true;
     this.ColStockCode.Caption = "Stock Code";
     this.ColStockCode.FieldName = "StockCode";
     this.ColStockCode.Name = "ColStockCode";
     this.ColStockCode.OptionsColumn.AllowEdit = false;
     this.ColStockCode.OptionsColumn.AllowFocus = false;
     this.ColStockCode.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsColumn.AllowIncrementalSearch = false;
     this.ColStockCode.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsColumn.AllowMove = false;
     this.ColStockCode.OptionsColumn.AllowShowHide = false;
     this.ColStockCode.OptionsColumn.AllowSize = false;
     this.ColStockCode.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsColumn.FixedWidth = true;
     this.ColStockCode.OptionsColumn.ShowInCustomizationForm = false;
     this.ColStockCode.OptionsColumn.ShowInExpressionEditor = false;
     this.ColStockCode.OptionsFilter.AllowAutoFilter = false;
     this.ColStockCode.OptionsFilter.AllowFilter = false;
     this.ColStockCode.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockCode.Visible = true;
     this.ColStockCode.VisibleIndex = 0;
     this.ColStockCode.Width = 34;
     //
     // ColItemNameOrderDetail
     //
     this.ColItemNameOrderDetail.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ColItemNameOrderDetail.AppearanceCell.Options.UseBackColor = true;
     this.ColItemNameOrderDetail.AppearanceCell.Options.UseTextOptions = true;
     this.ColItemNameOrderDetail.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.ColItemNameOrderDetail.AppearanceHeader.Options.UseTextOptions = true;
     this.ColItemNameOrderDetail.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.ColItemNameOrderDetail.Caption = "Item";
     this.ColItemNameOrderDetail.ColumnEdit = this.repositoryItemMemoEdit1;
     this.ColItemNameOrderDetail.FieldName = "FullItemName";
     this.ColItemNameOrderDetail.Name = "ColItemNameOrderDetail";
     this.ColItemNameOrderDetail.OptionsColumn.AllowEdit = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowFocus = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsColumn.AllowIncrementalSearch = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsColumn.AllowMove = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowShowHide = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowSize = false;
     this.ColItemNameOrderDetail.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsColumn.FixedWidth = true;
     this.ColItemNameOrderDetail.OptionsColumn.ShowInCustomizationForm = false;
     this.ColItemNameOrderDetail.OptionsColumn.ShowInExpressionEditor = false;
     this.ColItemNameOrderDetail.OptionsFilter.AllowAutoFilter = false;
     this.ColItemNameOrderDetail.OptionsFilter.AllowFilter = false;
     this.ColItemNameOrderDetail.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColItemNameOrderDetail.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.ColItemNameOrderDetail.ToolTip = "FullItemName";
     this.ColItemNameOrderDetail.Visible = true;
     this.ColItemNameOrderDetail.VisibleIndex = 1;
     this.ColItemNameOrderDetail.Width = 171;
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.LinesCount = 1;
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // colsQtyPerPack
     //
     this.colsQtyPerPack.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.colsQtyPerPack.AppearanceCell.Options.UseBackColor = true;
     this.colsQtyPerPack.Caption = "Quantity Per Pack";
     this.colsQtyPerPack.ColumnEdit = this.spinEditPack;
     this.colsQtyPerPack.FieldName = "QtyPerPack";
     this.colsQtyPerPack.Name = "colsQtyPerPack";
     this.colsQtyPerPack.OptionsColumn.AllowEdit = false;
     this.colsQtyPerPack.OptionsColumn.AllowFocus = false;
     this.colsQtyPerPack.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsColumn.AllowIncrementalSearch = false;
     this.colsQtyPerPack.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsColumn.AllowMove = false;
     this.colsQtyPerPack.OptionsColumn.AllowShowHide = false;
     this.colsQtyPerPack.OptionsColumn.AllowSize = false;
     this.colsQtyPerPack.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsColumn.FixedWidth = true;
     this.colsQtyPerPack.OptionsColumn.ShowInCustomizationForm = false;
     this.colsQtyPerPack.OptionsColumn.ShowInExpressionEditor = false;
     this.colsQtyPerPack.OptionsFilter.AllowAutoFilter = false;
     this.colsQtyPerPack.OptionsFilter.AllowFilter = false;
     this.colsQtyPerPack.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colsQtyPerPack.Width = 100;
     //
     // ColUnit
     //
     this.ColUnit.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ColUnit.AppearanceCell.Options.UseBackColor = true;
     this.ColUnit.Caption = "Unit";
     this.ColUnit.FieldName = "Unit";
     this.ColUnit.Name = "ColUnit";
     this.ColUnit.OptionsColumn.AllowEdit = false;
     this.ColUnit.OptionsColumn.AllowFocus = false;
     this.ColUnit.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsColumn.AllowIncrementalSearch = false;
     this.ColUnit.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsColumn.AllowMove = false;
     this.ColUnit.OptionsColumn.AllowShowHide = false;
     this.ColUnit.OptionsColumn.AllowSize = false;
     this.ColUnit.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsColumn.FixedWidth = true;
     this.ColUnit.OptionsColumn.ShowInCustomizationForm = false;
     this.ColUnit.OptionsColumn.ShowInExpressionEditor = false;
     this.ColUnit.OptionsFilter.AllowAutoFilter = false;
     this.ColUnit.OptionsFilter.AllowFilter = false;
     this.ColUnit.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColUnit.Visible = true;
     this.ColUnit.VisibleIndex = 2;
     this.ColUnit.Width = 53;
     //
     // colExpired
     //
     this.colExpired.Caption = "Expired";
     this.colExpired.DisplayFormat.FormatString = "#,###.##";
     this.colExpired.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colExpired.FieldName = "ExpiredStock";
     this.colExpired.Name = "colExpired";
     this.colExpired.OptionsColumn.AllowEdit = false;
     this.colExpired.OptionsColumn.AllowFocus = false;
     this.colExpired.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.AllowIncrementalSearch = false;
     this.colExpired.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.AllowMove = false;
     this.colExpired.OptionsColumn.AllowShowHide = false;
     this.colExpired.OptionsColumn.AllowSize = false;
     this.colExpired.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsColumn.FixedWidth = true;
     this.colExpired.OptionsColumn.ShowInCustomizationForm = false;
     this.colExpired.OptionsColumn.ShowInExpressionEditor = false;
     this.colExpired.OptionsFilter.AllowAutoFilter = false;
     this.colExpired.OptionsFilter.AllowFilter = false;
     this.colExpired.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colExpired.ToolTip = "Expired Stock";
     this.colExpired.Visible = true;
     this.colExpired.VisibleIndex = 3;
     this.colExpired.Width = 39;
     //
     // colDamaged
     //
     this.colDamaged.Caption = "Damaged";
     this.colDamaged.DisplayFormat.FormatString = "#,###.##";
     this.colDamaged.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colDamaged.FieldName = "DamagedStock";
     this.colDamaged.Name = "colDamaged";
     this.colDamaged.OptionsColumn.AllowEdit = false;
     this.colDamaged.OptionsColumn.AllowFocus = false;
     this.colDamaged.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.AllowIncrementalSearch = false;
     this.colDamaged.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.AllowMove = false;
     this.colDamaged.OptionsColumn.AllowShowHide = false;
     this.colDamaged.OptionsColumn.AllowSize = false;
     this.colDamaged.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsColumn.FixedWidth = true;
     this.colDamaged.OptionsColumn.ShowInCustomizationForm = false;
     this.colDamaged.OptionsColumn.ShowInExpressionEditor = false;
     this.colDamaged.OptionsFilter.AllowAutoFilter = false;
     this.colDamaged.OptionsFilter.AllowFilter = false;
     this.colDamaged.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colDamaged.ToolTip = "Damaged Stock";
     this.colDamaged.Visible = true;
     this.colDamaged.VisibleIndex = 4;
     this.colDamaged.Width = 39;
     //
     // colSOH
     //
     this.colSOH.Caption = "E.B";
     this.colSOH.DisplayFormat.FormatString = "#,###.##";
     this.colSOH.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colSOH.FieldName = "StockOnHand";
     this.colSOH.Name = "colSOH";
     this.colSOH.OptionsColumn.AllowEdit = false;
     this.colSOH.OptionsColumn.AllowFocus = false;
     this.colSOH.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.AllowIncrementalSearch = false;
     this.colSOH.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.AllowMove = false;
     this.colSOH.OptionsColumn.AllowShowHide = false;
     this.colSOH.OptionsColumn.AllowSize = false;
     this.colSOH.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsColumn.FixedWidth = true;
     this.colSOH.OptionsColumn.ShowInCustomizationForm = false;
     this.colSOH.OptionsColumn.ShowInExpressionEditor = false;
     this.colSOH.OptionsFilter.AllowAutoFilter = false;
     this.colSOH.OptionsFilter.AllowFilter = false;
     this.colSOH.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colSOH.ToolTip = "Remaining Stock On Hand (Ending Balance)";
     this.colSOH.Visible = true;
     this.colSOH.VisibleIndex = 8;
     this.colSOH.Width = 39;
     //
     // ColBeginningBalance
     //
     this.ColBeginningBalance.Caption = "b.B";
     this.ColBeginningBalance.DisplayFormat.FormatString = "#,###.##";
     this.ColBeginningBalance.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColBeginningBalance.FieldName = "BeginningBalance";
     this.ColBeginningBalance.Name = "ColBeginningBalance";
     this.ColBeginningBalance.OptionsColumn.AllowEdit = false;
     this.ColBeginningBalance.OptionsColumn.AllowFocus = false;
     this.ColBeginningBalance.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsColumn.AllowIncrementalSearch = false;
     this.ColBeginningBalance.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsColumn.AllowMove = false;
     this.ColBeginningBalance.OptionsColumn.AllowShowHide = false;
     this.ColBeginningBalance.OptionsColumn.AllowSize = false;
     this.ColBeginningBalance.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsColumn.FixedWidth = true;
     this.ColBeginningBalance.OptionsColumn.ShowInCustomizationForm = false;
     this.ColBeginningBalance.OptionsColumn.ShowInExpressionEditor = false;
     this.ColBeginningBalance.OptionsFilter.AllowAutoFilter = false;
     this.ColBeginningBalance.OptionsFilter.AllowFilter = false;
     this.ColBeginningBalance.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColBeginningBalance.ToolTip = "Beginning Balance";
     this.ColBeginningBalance.Visible = true;
     this.ColBeginningBalance.VisibleIndex = 5;
     this.ColBeginningBalance.Width = 39;
     //
     // ColLoss
     //
     this.ColLoss.Caption = "Loss";
     this.ColLoss.DisplayFormat.FormatString = "#,###.##";
     this.ColLoss.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColLoss.FieldName = "Loss";
     this.ColLoss.Name = "ColLoss";
     this.ColLoss.OptionsColumn.AllowEdit = false;
     this.ColLoss.OptionsColumn.AllowFocus = false;
     this.ColLoss.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsColumn.AllowIncrementalSearch = false;
     this.ColLoss.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsColumn.AllowMove = false;
     this.ColLoss.OptionsColumn.AllowShowHide = false;
     this.ColLoss.OptionsColumn.AllowSize = false;
     this.ColLoss.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsColumn.FixedWidth = true;
     this.ColLoss.OptionsColumn.ShowInCustomizationForm = false;
     this.ColLoss.OptionsColumn.ShowInExpressionEditor = false;
     this.ColLoss.OptionsFilter.AllowAutoFilter = false;
     this.ColLoss.OptionsFilter.AllowFilter = false;
     this.ColLoss.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColLoss.ToolTip = "Loss";
     this.ColLoss.Visible = true;
     this.ColLoss.VisibleIndex = 6;
     this.ColLoss.Width = 39;
     //
     // ColAdjustment
     //
     this.ColAdjustment.Caption = "Adjust.";
     this.ColAdjustment.DisplayFormat.FormatString = "#,###.##";
     this.ColAdjustment.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColAdjustment.FieldName = "Adjustment";
     this.ColAdjustment.Name = "ColAdjustment";
     this.ColAdjustment.OptionsColumn.AllowEdit = false;
     this.ColAdjustment.OptionsColumn.AllowFocus = false;
     this.ColAdjustment.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsColumn.AllowIncrementalSearch = false;
     this.ColAdjustment.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsColumn.AllowMove = false;
     this.ColAdjustment.OptionsColumn.AllowShowHide = false;
     this.ColAdjustment.OptionsColumn.AllowSize = false;
     this.ColAdjustment.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsColumn.FixedWidth = true;
     this.ColAdjustment.OptionsColumn.ShowInCustomizationForm = false;
     this.ColAdjustment.OptionsColumn.ShowInExpressionEditor = false;
     this.ColAdjustment.OptionsFilter.AllowAutoFilter = false;
     this.ColAdjustment.OptionsFilter.AllowFilter = false;
     this.ColAdjustment.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColAdjustment.ToolTip = "Adjustment";
     this.ColAdjustment.Visible = true;
     this.ColAdjustment.VisibleIndex = 7;
     this.ColAdjustment.Width = 39;
     //
     // ColQuantityReceived
     //
     this.ColQuantityReceived.Caption = "Q.R";
     this.ColQuantityReceived.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColQuantityReceived.FieldName = "QuantityReceived";
     this.ColQuantityReceived.Name = "ColQuantityReceived";
     this.ColQuantityReceived.OptionsColumn.AllowEdit = false;
     this.ColQuantityReceived.OptionsColumn.AllowFocus = false;
     this.ColQuantityReceived.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsColumn.AllowIncrementalSearch = false;
     this.ColQuantityReceived.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsColumn.AllowMove = false;
     this.ColQuantityReceived.OptionsColumn.AllowShowHide = false;
     this.ColQuantityReceived.OptionsColumn.AllowSize = false;
     this.ColQuantityReceived.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsColumn.FixedWidth = true;
     this.ColQuantityReceived.OptionsColumn.ShowInCustomizationForm = false;
     this.ColQuantityReceived.OptionsColumn.ShowInExpressionEditor = false;
     this.ColQuantityReceived.OptionsFilter.AllowAutoFilter = false;
     this.ColQuantityReceived.OptionsFilter.AllowFilter = false;
     this.ColQuantityReceived.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityReceived.ToolTip = "Quantity Received";
     this.ColQuantityReceived.Visible = true;
     this.ColQuantityReceived.VisibleIndex = 9;
     this.ColQuantityReceived.Width = 39;
     //
     // ColDOS
     //
     this.ColDOS.Caption = "DoS";
     this.ColDOS.DisplayFormat.FormatString = "#,###.##";
     this.ColDOS.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColDOS.FieldName = "DOS";
     this.ColDOS.Name = "ColDOS";
     this.ColDOS.OptionsColumn.AllowEdit = false;
     this.ColDOS.OptionsColumn.AllowFocus = false;
     this.ColDOS.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsColumn.AllowIncrementalSearch = false;
     this.ColDOS.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsColumn.AllowMove = false;
     this.ColDOS.OptionsColumn.AllowShowHide = false;
     this.ColDOS.OptionsColumn.AllowSize = false;
     this.ColDOS.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsColumn.FixedWidth = true;
     this.ColDOS.OptionsColumn.ShowInCustomizationForm = false;
     this.ColDOS.OptionsColumn.ShowInExpressionEditor = false;
     this.ColDOS.OptionsFilter.AllowAutoFilter = false;
     this.ColDOS.OptionsFilter.AllowFilter = false;
     this.ColDOS.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColDOS.ToolTip = "Days Out Of Stock";
     this.ColDOS.Visible = true;
     this.ColDOS.VisibleIndex = 10;
     this.ColDOS.Width = 39;
     //
     // ColQuantityNeedMax
     //
     this.ColQuantityNeedMax.Caption = "Q.N.M";
     this.ColQuantityNeedMax.DisplayFormat.FormatString = "#,###.##";
     this.ColQuantityNeedMax.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColQuantityNeedMax.FieldName = "QuantityNeedMax";
     this.ColQuantityNeedMax.Name = "ColQuantityNeedMax";
     this.ColQuantityNeedMax.OptionsColumn.AllowEdit = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowFocus = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsColumn.AllowIncrementalSearch = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsColumn.AllowMove = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowShowHide = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowSize = false;
     this.ColQuantityNeedMax.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsColumn.FixedWidth = true;
     this.ColQuantityNeedMax.OptionsColumn.ReadOnly = true;
     this.ColQuantityNeedMax.OptionsColumn.ShowInCustomizationForm = false;
     this.ColQuantityNeedMax.OptionsColumn.ShowInExpressionEditor = false;
     this.ColQuantityNeedMax.OptionsFilter.AllowAutoFilter = false;
     this.ColQuantityNeedMax.OptionsFilter.AllowFilter = false;
     this.ColQuantityNeedMax.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColQuantityNeedMax.ToolTip = "Quantity Need To Reach Max =  M.S.Q - E.B";
     this.ColQuantityNeedMax.Visible = true;
     this.ColQuantityNeedMax.VisibleIndex = 11;
     this.ColQuantityNeedMax.Width = 57;
     //
     // ColMaxStockQuantity
     //
     this.ColMaxStockQuantity.Caption = "M.S.Q";
     this.ColMaxStockQuantity.DisplayFormat.FormatString = "#,###.##";
     this.ColMaxStockQuantity.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColMaxStockQuantity.FieldName = "MaxStockQuantity";
     this.ColMaxStockQuantity.Name = "ColMaxStockQuantity";
     this.ColMaxStockQuantity.OptionsColumn.AllowEdit = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowFocus = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsColumn.AllowIncrementalSearch = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsColumn.AllowMove = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowShowHide = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowSize = false;
     this.ColMaxStockQuantity.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsColumn.FixedWidth = true;
     this.ColMaxStockQuantity.OptionsColumn.ReadOnly = true;
     this.ColMaxStockQuantity.OptionsColumn.ShowInCustomizationForm = false;
     this.ColMaxStockQuantity.OptionsColumn.ShowInExpressionEditor = false;
     this.ColMaxStockQuantity.OptionsFilter.AllowAutoFilter = false;
     this.ColMaxStockQuantity.OptionsFilter.AllowFilter = false;
     this.ColMaxStockQuantity.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColMaxStockQuantity.ToolTip = "Max Stock Quantity  = (120*Consum)/(60-DOS)";
     this.ColMaxStockQuantity.Visible = true;
     this.ColMaxStockQuantity.VisibleIndex = 12;
     this.ColMaxStockQuantity.Width = 39;
     //
     // ColConsumption
     //
     this.ColConsumption.Caption = "Consum";
     this.ColConsumption.DisplayFormat.FormatString = "#,###.##";
     this.ColConsumption.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.ColConsumption.FieldName = "Consumption";
     this.ColConsumption.Name = "ColConsumption";
     this.ColConsumption.OptionsColumn.AllowEdit = false;
     this.ColConsumption.OptionsColumn.AllowFocus = false;
     this.ColConsumption.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsColumn.AllowIncrementalSearch = false;
     this.ColConsumption.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsColumn.AllowMove = false;
     this.ColConsumption.OptionsColumn.AllowShowHide = false;
     this.ColConsumption.OptionsColumn.AllowSize = false;
     this.ColConsumption.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsColumn.FixedWidth = true;
     this.ColConsumption.OptionsColumn.ReadOnly = true;
     this.ColConsumption.OptionsColumn.ShowInCustomizationForm = false;
     this.ColConsumption.OptionsColumn.ShowInExpressionEditor = false;
     this.ColConsumption.OptionsFilter.AllowAutoFilter = false;
     this.ColConsumption.OptionsFilter.AllowFilter = false;
     this.ColConsumption.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.ColConsumption.ToolTip = "Calculated Consumption =   b.B + Q.R +/- (Loss+Adjust) - E.B";
     this.ColConsumption.Visible = true;
     this.ColConsumption.VisibleIndex = 13;
     this.ColConsumption.Width = 39;
     //
     // ColStockedOut
     //
     this.ColStockedOut.Caption = "StockedOut";
     this.ColStockedOut.FieldName = "StockedOut";
     this.ColStockedOut.Name = "ColStockedOut";
     this.ColStockedOut.OptionsColumn.AllowEdit = false;
     this.ColStockedOut.OptionsColumn.AllowFocus = false;
     this.ColStockedOut.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsColumn.AllowIncrementalSearch = false;
     this.ColStockedOut.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsColumn.AllowMove = false;
     this.ColStockedOut.OptionsColumn.AllowShowHide = false;
     this.ColStockedOut.OptionsColumn.AllowSize = false;
     this.ColStockedOut.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsColumn.FixedWidth = true;
     this.ColStockedOut.OptionsColumn.ShowInCustomizationForm = false;
     this.ColStockedOut.OptionsColumn.ShowInExpressionEditor = false;
     this.ColStockedOut.OptionsFilter.AllowAutoFilter = false;
     this.ColStockedOut.OptionsFilter.AllowFilter = false;
     this.ColStockedOut.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.ColStockedOut.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     //
     // ExpireDateEditor
     //
     this.ExpireDateEditor.AutoHeight = false;
     this.ExpireDateEditor.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ExpireDateEditor.DisplayFormat.FormatString = "mm-DD-YYYY";
     this.ExpireDateEditor.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.ExpireDateEditor.EditFormat.FormatString = "mm-DD-YYYY";
     this.ExpireDateEditor.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.ExpireDateEditor.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Value;
     this.ExpireDateEditor.Name = "ExpireDateEditor";
     this.ExpireDateEditor.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemButtonEdit2
     //
     this.repositoryItemButtonEdit2.AutoHeight = false;
     this.repositoryItemButtonEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit2.Name = "repositoryItemButtonEdit2";
     this.repositoryItemButtonEdit2.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // spinEditQtyPerPack
     //
     this.spinEditQtyPerPack.AutoHeight = false;
     this.spinEditQtyPerPack.Name = "spinEditQtyPerPack";
     //
     // gridRecieveView1
     //
     this.gridRecieveView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1});
     this.gridRecieveView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gridColumn3,
     this.gridColumn1,
     this.gridColumn10,
     this.gridColumn2,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn12,
     this.gridColumn9});
     this.gridRecieveView1.GridControl = this.orderGrid;
     this.gridRecieveView1.Name = "gridRecieveView1";
     this.gridRecieveView1.OptionsView.ShowGroupPanel = false;
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Columns.Add(this.gridColumn3);
     this.gridBand1.Columns.Add(this.gridColumn1);
     this.gridBand1.Columns.Add(this.gridColumn10);
     this.gridBand1.Columns.Add(this.gridColumn2);
     this.gridBand1.Columns.Add(this.gridColumn4);
     this.gridBand1.Columns.Add(this.gridColumn5);
     this.gridBand1.Columns.Add(this.gridColumn6);
     this.gridBand1.Columns.Add(this.gridColumn7);
     this.gridBand1.Columns.Add(this.gridColumn8);
     this.gridBand1.Columns.Add(this.gridColumn12);
     this.gridBand1.Columns.Add(this.gridColumn9);
     this.gridBand1.Name = "gridBand1";
     this.gridBand1.Width = 1117;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Stock Code";
     this.gridColumn3.FieldName = "Stock Code";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.AllowFocus = false;
     this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn3.Visible = true;
     this.gridColumn3.Width = 104;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Item Name";
     this.gridColumn1.FieldName = "Item Name";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
     this.gridColumn1.Visible = true;
     this.gridColumn1.Width = 104;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Manufacturer";
     this.gridColumn10.FieldName = "Manufacturer";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn10.Visible = true;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Pack Qty";
     this.gridColumn2.FieldName = "Pack Qty";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.Visible = true;
     this.gridColumn2.Width = 104;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Reciving Box Size";
     this.gridColumn4.FieldName = "Qty/pack";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn4.Visible = true;
     this.gridColumn4.Width = 104;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "BU Qty";
     this.gridColumn5.FieldName = "BU Qty";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.Visible = true;
     this.gridColumn5.Width = 104;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Unit";
     this.gridColumn6.FieldName = "Unit";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.Visible = true;
     this.gridColumn6.Width = 104;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Price/Pack";
     this.gridColumn7.FieldName = "Price/Pack";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.Visible = true;
     this.gridColumn7.Width = 104;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Batch No";
     this.gridColumn8.FieldName = "Batch No";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn8.Visible = true;
     this.gridColumn8.Width = 144;
     //
     // gridColumn12
     //
     this.gridColumn12.ColumnEdit = this.repositoryItemButtonEdit2;
     this.gridColumn12.ImageAlignment = System.Drawing.StringAlignment.Center;
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn12.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.gridColumn12.Visible = true;
     this.gridColumn12.Width = 25;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Expiry Date";
     this.gridColumn9.ColumnEdit = this.ExpireDateEditor;
     this.gridColumn9.FieldName = "Expiry Date";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn9.Visible = true;
     this.gridColumn9.Width = 145;
     //
     // VolumeMetricsPage
     //
     this.VolumeMetricsPage.Controls.Add(this.layoutControl1);
     this.VolumeMetricsPage.Name = "VolumeMetricsPage";
     this.VolumeMetricsPage.Size = new System.Drawing.Size(910, 194);
     this.VolumeMetricsPage.Text = "Volume Metrics";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.lkContainerTypes);
     this.layoutControl1.Controls.Add(this.cboRequiredContainer);
     this.layoutControl1.Controls.Add(this.lblAvailableVolume);
     this.layoutControl1.Controls.Add(this.lblVolumeNeeded);
     this.layoutControl1.Controls.Add(this.volumetricsCanvas);
     this.layoutControl1.Controls.Add(this.grdVolumeGrid);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem32});
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(845, 218, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(910, 194);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lkContainerTypes
     //
     this.lkContainerTypes.EditValue = "Select";
     this.lkContainerTypes.Location = new System.Drawing.Point(89, 12);
     this.lkContainerTypes.Name = "lkContainerTypes";
     this.lkContainerTypes.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkContainerTypes.Properties.DisplayMember = "Name";
     this.lkContainerTypes.Properties.ValueMember = "ShippingContainerTypeID";
     this.lkContainerTypes.Properties.View = this.gridView1;
     this.lkContainerTypes.Size = new System.Drawing.Size(249, 20);
     this.lkContainerTypes.StyleController = this.layoutControl1;
     this.lkContainerTypes.TabIndex = 15;
     this.lkContainerTypes.EditValueChanged += new System.EventHandler(this.lkContainerTypes_EditValueChanged);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn11,
     this.gridColumn13,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Name";
     this.gridColumn11.FieldName = "Name";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 0;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Height";
     this.gridColumn13.FieldName = "HeightMM";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 1;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Width";
     this.gridColumn16.FieldName = "WidthMM";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 2;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Length";
     this.gridColumn17.FieldName = "LengthMM";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 3;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Weight";
     this.gridColumn18.FieldName = "WeightG";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 4;
     //
     // cboRequiredContainer
     //
     this.cboRequiredContainer.FormattingEnabled = true;
     this.cboRequiredContainer.Location = new System.Drawing.Point(419, 12);
     this.cboRequiredContainer.Name = "cboRequiredContainer";
     this.cboRequiredContainer.Size = new System.Drawing.Size(108, 21);
     this.cboRequiredContainer.TabIndex = 14;
     this.cboRequiredContainer.SelectedIndexChanged += new System.EventHandler(this.cboRequiredContainer_SelectedIndexChanged);
     //
     // lblAvailableVolume
     //
     this.lblAvailableVolume.Location = new System.Drawing.Point(12, 37);
     this.lblAvailableVolume.Name = "lblAvailableVolume";
     this.lblAvailableVolume.Size = new System.Drawing.Size(167, 41);
     this.lblAvailableVolume.TabIndex = 13;
     //
     // lblVolumeNeeded
     //
     this.lblVolumeNeeded.Location = new System.Drawing.Point(183, 37);
     this.lblVolumeNeeded.Name = "lblVolumeNeeded";
     this.lblVolumeNeeded.Size = new System.Drawing.Size(155, 41);
     this.lblVolumeNeeded.TabIndex = 12;
     //
     // volumetricsCanvas
     //
     this.volumetricsCanvas.Location = new System.Drawing.Point(12, 82);
     this.volumetricsCanvas.Name = "volumetricsCanvas";
     this.volumetricsCanvas.Size = new System.Drawing.Size(886, 100);
     this.volumetricsCanvas.TabIndex = 10;
     this.volumetricsCanvas.Paint += new System.Windows.Forms.PaintEventHandler(this.volumetricsCanvas_Paint);
     //
     // grdVolumeGrid
     //
     this.grdVolumeGrid.Location = new System.Drawing.Point(12, 166);
     this.grdVolumeGrid.MainView = this.grdVolumeGridView;
     this.grdVolumeGrid.Name = "grdVolumeGrid";
     this.grdVolumeGrid.Size = new System.Drawing.Size(228, 173);
     this.grdVolumeGrid.TabIndex = 5;
     this.grdVolumeGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grdVolumeGridView});
     this.grdVolumeGrid.Visible = false;
     //
     // grdVolumeGridView
     //
     this.grdVolumeGridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Height,
     this.Width,
     this.Depth,
     this.Quantity});
     this.grdVolumeGridView.GridControl = this.grdVolumeGrid;
     this.grdVolumeGridView.Name = "grdVolumeGridView";
     this.grdVolumeGridView.OptionsView.ShowGroupPanel = false;
     this.grdVolumeGridView.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.grdVolumeGridView_CellValueChanged);
     //
     // Height
     //
     this.Height.Caption = "Height";
     this.Height.FieldName = "HeightMM";
     this.Height.Name = "Height";
     this.Height.Visible = true;
     this.Height.VisibleIndex = 0;
     //
     // Width
     //
     this.Width.Caption = "Width";
     this.Width.FieldName = "WidthMM";
     this.Width.Name = "Width";
     this.Width.Visible = true;
     this.Width.VisibleIndex = 1;
     //
     // Depth
     //
     this.Depth.Caption = "Depth";
     this.Depth.FieldName = "DepthMM";
     this.Depth.Name = "Depth";
     this.Depth.Visible = true;
     this.Depth.VisibleIndex = 2;
     //
     // Quantity
     //
     this.Quantity.Caption = "Quantity";
     this.Quantity.FieldName = "Quantity";
     this.Quantity.Name = "Quantity";
     this.Quantity.Visible = true;
     this.Quantity.VisibleIndex = 3;
     //
     // layoutControlItem32
     //
     this.layoutControlItem32.Control = this.grdVolumeGrid;
     this.layoutControlItem32.CustomizationFormText = "layoutControlItem32";
     this.layoutControlItem32.Location = new System.Drawing.Point(0, 154);
     this.layoutControlItem32.MinSize = new System.Drawing.Size(104, 24);
     this.layoutControlItem32.Name = "layoutControlItem32";
     this.layoutControlItem32.Size = new System.Drawing.Size(232, 177);
     this.layoutControlItem32.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem32.Text = "layoutControlItem32";
     this.layoutControlItem32.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem32.TextToControlDistance = 0;
     this.layoutControlItem32.TextVisible = false;
     //
     // 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.emptySpaceItem2,
     this.layoutControlItem36,
     this.layoutControlItem37,
     this.layoutControlItem40,
     this.layoutControlItem39,
     this.emptySpaceItem4,
     this.layoutControlItem33});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Size = new System.Drawing.Size(910, 194);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(519, 0);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(371, 25);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem36
     //
     this.layoutControlItem36.Control = this.volumetricsCanvas;
     this.layoutControlItem36.CustomizationFormText = "layoutControlItem36";
     this.layoutControlItem36.Location = new System.Drawing.Point(0, 70);
     this.layoutControlItem36.Name = "layoutControlItem36";
     this.layoutControlItem36.Size = new System.Drawing.Size(890, 104);
     this.layoutControlItem36.Text = "layoutControlItem36";
     this.layoutControlItem36.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem36.TextToControlDistance = 0;
     this.layoutControlItem36.TextVisible = false;
     //
     // layoutControlItem37
     //
     this.layoutControlItem37.Control = this.cboRequiredContainer;
     this.layoutControlItem37.CustomizationFormText = "Required";
     this.layoutControlItem37.Location = new System.Drawing.Point(330, 0);
     this.layoutControlItem37.Name = "layoutControlItem37";
     this.layoutControlItem37.Size = new System.Drawing.Size(189, 25);
     this.layoutControlItem37.Text = "Required";
     this.layoutControlItem37.TextSize = new System.Drawing.Size(74, 13);
     //
     // layoutControlItem40
     //
     this.layoutControlItem40.Control = this.lblVolumeNeeded;
     this.layoutControlItem40.CustomizationFormText = "layoutControlItem40";
     this.layoutControlItem40.Location = new System.Drawing.Point(171, 25);
     this.layoutControlItem40.Name = "layoutControlItem40";
     this.layoutControlItem40.Size = new System.Drawing.Size(159, 45);
     this.layoutControlItem40.Text = "layoutControlItem40";
     this.layoutControlItem40.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem40.TextToControlDistance = 0;
     this.layoutControlItem40.TextVisible = false;
     //
     // layoutControlItem39
     //
     this.layoutControlItem39.Control = this.lblAvailableVolume;
     this.layoutControlItem39.CustomizationFormText = "layoutControlItem39";
     this.layoutControlItem39.Location = new System.Drawing.Point(0, 25);
     this.layoutControlItem39.Name = "layoutControlItem39";
     this.layoutControlItem39.Size = new System.Drawing.Size(171, 45);
     this.layoutControlItem39.Text = "layoutControlItem39";
     this.layoutControlItem39.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem39.TextToControlDistance = 0;
     this.layoutControlItem39.TextVisible = false;
     //
     // emptySpaceItem4
     //
     this.emptySpaceItem4.AllowHotTrack = false;
     this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
     this.emptySpaceItem4.Location = new System.Drawing.Point(330, 25);
     this.emptySpaceItem4.Name = "emptySpaceItem4";
     this.emptySpaceItem4.Size = new System.Drawing.Size(560, 45);
     this.emptySpaceItem4.Text = "emptySpaceItem4";
     this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem33
     //
     this.layoutControlItem33.Control = this.lkContainerTypes;
     this.layoutControlItem33.CustomizationFormText = "Container Type";
     this.layoutControlItem33.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem33.Name = "layoutControlItem33";
     this.layoutControlItem33.Size = new System.Drawing.Size(330, 25);
     this.layoutControlItem33.Text = "Container Type";
     this.layoutControlItem33.TextSize = new System.Drawing.Size(74, 13);
     //
     // NoOfVisitLabel
     //
     this.NoOfVisitLabel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.NoOfVisitLabel.Location = new System.Drawing.Point(1259, 4);
     this.NoOfVisitLabel.Name = "NoOfVisitLabel";
     this.NoOfVisitLabel.Size = new System.Drawing.Size(87, 13);
     this.NoOfVisitLabel.TabIndex = 47;
     //
     // LastVisitlabel
     //
     this.LastVisitlabel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LastVisitlabel.Location = new System.Drawing.Point(1050, 4);
     this.LastVisitlabel.Name = "LastVisitlabel";
     this.LastVisitlabel.Size = new System.Drawing.Size(119, 13);
     this.LastVisitlabel.TabIndex = 46;
     //
     // progressBarControl
     //
     this.progressBarControl.Location = new System.Drawing.Point(390, 370);
     this.progressBarControl.Name = "progressBarControl";
     this.progressBarControl.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.progressBarControl.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.progressBarControl.Properties.ProgressViewStyle = DevExpress.XtraEditors.Controls.ProgressViewStyle.Solid;
     this.progressBarControl.Properties.ShowTitle = true;
     this.progressBarControl.Properties.Step = 1;
     this.progressBarControl.Size = new System.Drawing.Size(962, 20);
     this.progressBarControl.TabIndex = 45;
     //
     // simpleButton1
     //
     this.simpleButton1.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton1.Image")));
     this.simpleButton1.Location = new System.Drawing.Point(763, 367);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(142, 22);
     this.simpleButton1.TabIndex = 32;
     this.simpleButton1.Text = "Save Multiple";
     this.simpleButton1.Click += new System.EventHandler(this.multiFacilityDialog_Click);
     //
     // lkType
     //
     this.lkType.Location = new System.Drawing.Point(818, 59);
     this.lkType.Name = "lkType";
     this.lkType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Name"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "Name28", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkType.Properties.DisplayMember = "Name";
     this.lkType.Properties.NullText = "Select Institution Type";
     this.lkType.Properties.ShowFooter = false;
     this.lkType.Properties.ShowHeader = false;
     this.lkType.Properties.ValueMember = "ID";
     this.lkType.Size = new System.Drawing.Size(211, 20);
     this.lkType.TabIndex = 45;
     this.lkType.EditValueChanged += new System.EventHandler(this.lkType_EditValueChanged);
     //
     // lkOwnership
     //
     this.lkOwnership.Location = new System.Drawing.Point(818, 35);
     this.lkOwnership.Name = "lkOwnership";
     this.lkOwnership.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkOwnership.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Name"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "Name26", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkOwnership.Properties.DisplayMember = "Name";
     this.lkOwnership.Properties.NullText = "Select Ownership";
     this.lkOwnership.Properties.ShowFooter = false;
     this.lkOwnership.Properties.ShowHeader = false;
     this.lkOwnership.Properties.ValueMember = "ID";
     this.lkOwnership.Size = new System.Drawing.Size(211, 20);
     this.lkOwnership.TabIndex = 44;
     this.lkOwnership.EditValueChanged += new System.EventHandler(this.lkOwnership_EditValueChanged);
     //
     // lkWoreda
     //
     this.lkWoreda.Location = new System.Drawing.Point(497, 83);
     this.lkWoreda.Name = "lkWoreda";
     this.lkWoreda.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkWoreda.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.lkWoreda.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "ID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Woreda Name")});
     this.lkWoreda.Properties.DisplayMember = "WoredaName";
     this.lkWoreda.Properties.NullText = "";
     this.lkWoreda.Properties.ShowFooter = false;
     this.lkWoreda.Properties.ShowHeader = false;
     this.lkWoreda.Properties.ValueMember = "ID";
     this.lkWoreda.Size = new System.Drawing.Size(226, 20);
     this.lkWoreda.TabIndex = 43;
     this.lkWoreda.EditValueChanged += new System.EventHandler(this.lkWoreda_EditValueChanged);
     //
     // txtRemark
     //
     this.txtRemark.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.txtRemark.Location = new System.Drawing.Point(357, 521);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Size = new System.Drawing.Size(395, 22);
     this.txtRemark.TabIndex = 18;
     //
     // txtReceivedBy
     //
     this.txtReceivedBy.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.txtReceivedBy.Enabled = false;
     this.txtReceivedBy.Location = new System.Drawing.Point(664, 521);
     this.txtReceivedBy.Name = "txtReceivedBy";
     this.txtReceivedBy.Size = new System.Drawing.Size(124, 20);
     this.txtReceivedBy.TabIndex = 16;
     //
     // txtTin
     //
     this.txtTin.Enabled = false;
     this.txtTin.Location = new System.Drawing.Point(497, 4);
     this.txtTin.Name = "txtTin";
     this.txtTin.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtTin.Properties.Appearance.Options.UseBackColor = true;
     this.txtTin.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtTin.Size = new System.Drawing.Size(122, 18);
     this.txtTin.TabIndex = 26;
     this.txtTin.Visible = false;
     //
     // txtVatRegistration
     //
     this.txtVatRegistration.Enabled = false;
     this.txtVatRegistration.Location = new System.Drawing.Point(621, 4);
     this.txtVatRegistration.Name = "txtVatRegistration";
     this.txtVatRegistration.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtVatRegistration.Properties.Appearance.Options.UseBackColor = true;
     this.txtVatRegistration.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtVatRegistration.Size = new System.Drawing.Size(128, 18);
     this.txtVatRegistration.TabIndex = 25;
     //
     // txtRegistrationNo
     //
     this.txtRegistrationNo.Location = new System.Drawing.Point(808, 4);
     this.txtRegistrationNo.Name = "txtRegistrationNo";
     this.txtRegistrationNo.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtRegistrationNo.Properties.Appearance.Options.UseBackColor = true;
     this.txtRegistrationNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtRegistrationNo.Size = new System.Drawing.Size(50, 18);
     this.txtRegistrationNo.TabIndex = 27;
     //
     // txtLetterNumber
     //
     this.txtLetterNumber.Location = new System.Drawing.Point(1151, 83);
     this.txtLetterNumber.Name = "txtLetterNumber";
     this.txtLetterNumber.Size = new System.Drawing.Size(183, 20);
     this.txtLetterNumber.TabIndex = 28;
     //
     // txtRefNo
     //
     this.txtRefNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtRefNo.Location = new System.Drawing.Point(104, 16);
     this.txtRefNo.Name = "txtRefNo";
     this.txtRefNo.Properties.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.txtRefNo.Properties.Appearance.Options.UseBackColor = true;
     this.txtRefNo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.txtRefNo.Size = new System.Drawing.Size(160, 18);
     this.txtRefNo.TabIndex = 15;
     //
     // btnSaveOrder
     //
     this.btnSaveOrder.Cursor = System.Windows.Forms.Cursors.Default;
     this.btnSaveOrder.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveOrder.Image")));
     this.btnSaveOrder.Location = new System.Drawing.Point(909, 367);
     this.btnSaveOrder.Name = "btnSaveOrder";
     this.btnSaveOrder.Size = new System.Drawing.Size(142, 22);
     this.btnSaveOrder.TabIndex = 24;
     this.btnSaveOrder.Text = "Save as Draft";
     this.btnSaveOrder.Click += new System.EventHandler(this.SaveOrderAsDraft);
     //
     // btnSaveAndForward
     //
     this.btnSaveAndForward.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveAndForward.Image")));
     this.btnSaveAndForward.Location = new System.Drawing.Point(1055, 367);
     this.btnSaveAndForward.Name = "btnSaveAndForward";
     this.btnSaveAndForward.Size = new System.Drawing.Size(142, 22);
     this.btnSaveAndForward.TabIndex = 25;
     this.btnSaveAndForward.Text = "Save and Forward";
     this.btnSaveAndForward.Click += new System.EventHandler(this.btnSaveAndForward_Click);
     //
     // lkModes
     //
     this.lkModes.EditValue = "1";
     this.lkModes.Location = new System.Drawing.Point(78, 62);
     this.lkModes.Name = "lkModes";
     this.lkModes.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkModes.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TypeName", "Name")});
     this.lkModes.Properties.DisplayMember = "TypeName";
     this.lkModes.Properties.NullText = "Select Mode";
     this.lkModes.Properties.ShowFooter = false;
     this.lkModes.Properties.ValueMember = "ID";
     this.lkModes.Size = new System.Drawing.Size(186, 20);
     this.lkModes.TabIndex = 15;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkModes, conditionValidationRule1);
     this.lkModes.EditValueChanged += new System.EventHandler(this.lkModes_EditValueChanged);
     //
     // txtContactPerson
     //
     this.txtContactPerson.Location = new System.Drawing.Point(1151, 59);
     this.txtContactPerson.Name = "txtContactPerson";
     this.txtContactPerson.Size = new System.Drawing.Size(183, 20);
     this.txtContactPerson.TabIndex = 39;
     //
     // lkZone
     //
     this.lkZone.Location = new System.Drawing.Point(497, 59);
     this.lkZone.Name = "lkZone";
     this.lkZone.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkZone.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "ZoneName"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "ID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkZone.Properties.DisplayMember = "ZoneName";
     this.lkZone.Properties.NullText = "";
     this.lkZone.Properties.ShowFooter = false;
     this.lkZone.Properties.ShowHeader = false;
     this.lkZone.Properties.ValueMember = "ID";
     this.lkZone.Size = new System.Drawing.Size(226, 20);
     this.lkZone.TabIndex = 38;
     this.lkZone.EditValueChanged += new System.EventHandler(this.lkZone_EditValueChanged);
     //
     // lkRegion
     //
     this.lkRegion.Location = new System.Drawing.Point(497, 35);
     this.lkRegion.Name = "lkRegion";
     this.lkRegion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRegion.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("RegionName", "RegionName"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("ID", "ID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lkRegion.Properties.DisplayMember = "RegionName";
     this.lkRegion.Properties.NullText = "Select Region";
     this.lkRegion.Properties.ShowFooter = false;
     this.lkRegion.Properties.ShowHeader = false;
     this.lkRegion.Properties.ValueMember = "ID";
     this.lkRegion.Size = new System.Drawing.Size(226, 20);
     this.lkRegion.TabIndex = 37;
     this.lkRegion.Tag = "r";
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkRegion, conditionValidationRule2);
     this.lkRegion.EditValueChanged += new System.EventHandler(this.lkRegion_EditValueChanged);
     //
     // lblLoadRU
     //
     this.lblLoadRU.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
     this.lblLoadRU.Location = new System.Drawing.Point(1082, 19);
     this.lblLoadRU.Name = "lblLoadRU";
     this.lblLoadRU.Size = new System.Drawing.Size(33, 13);
     this.lblLoadRU.TabIndex = 36;
     this.lblLoadRU.Text = "Reload";
     this.lblLoadRU.Click += new System.EventHandler(this.lblLoadRU_Click);
     //
     // lkCategoires
     //
     this.lkCategoires.Location = new System.Drawing.Point(78, 86);
     this.lkCategoires.Name = "lkCategoires";
     this.lkCategoires.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkCategoires.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkCategoires.Properties.DisplayMember = "Name";
     this.lkCategoires.Properties.NullText = "Select Commodity Type";
     this.lkCategoires.Properties.ShowFooter = false;
     this.lkCategoires.Properties.ValueMember = "ID";
     this.lkCategoires.Size = new System.Drawing.Size(186, 20);
     this.lkCategoires.TabIndex = 23;
     this.lkCategoires.EditValueChanged += new System.EventHandler(this.lkCategoires_EditValueChanged);
     //
     // txtItemName
     //
     this.txtItemName.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.txtItemName.Location = new System.Drawing.Point(308, 86);
     this.txtItemName.Name = "txtItemName";
     this.txtItemName.Size = new System.Drawing.Size(102, 20);
     this.txtItemName.TabIndex = 4;
     this.txtItemName.EditValueChanged += new System.EventHandler(this.OnFilterByItemNameChanged);
     //
     // gridItemsChoice
     //
     this.gridItemsChoice.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.gridItemsChoice.Location = new System.Drawing.Point(4, 122);
     this.gridItemsChoice.MainView = this.gridItemChoiceView;
     this.gridItemsChoice.Name = "gridItemsChoice";
     this.gridItemsChoice.Padding = new System.Windows.Forms.Padding(2);
     this.gridItemsChoice.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemMemoEdit2});
     this.gridItemsChoice.Size = new System.Drawing.Size(418, 241);
     this.gridItemsChoice.TabIndex = 11;
     this.gridItemsChoice.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridItemChoiceView});
     this.gridItemsChoice.Click += new System.EventHandler(this.gridItemsChoice_Click);
     //
     // gridItemChoiceView
     //
     this.gridItemChoiceView.Appearance.FocusedRow.BackColor = System.Drawing.Color.Gray;
     this.gridItemChoiceView.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridItemChoiceView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn30,
     this.gridColumn28,
     this.colItemName,
     this.gridColumn14,
     this.gridColumn29,
     this.gridColumn66,
     this.gridColumn67,
     this.gridColumn21});
     styleFormatCondition4.Appearance.ForeColor = System.Drawing.Color.Silver;
     styleFormatCondition4.Appearance.Options.UseForeColor = true;
     styleFormatCondition4.ApplyToRow = true;
     styleFormatCondition4.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition4.Expression = "[StockedOut] == 1";
     this.gridItemChoiceView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition4});
     this.gridItemChoiceView.GridControl = this.gridItemsChoice;
     this.gridItemChoiceView.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.None, "", null, "")});
     this.gridItemChoiceView.HorzScrollStep = 1;
     this.gridItemChoiceView.Name = "gridItemChoiceView";
     this.gridItemChoiceView.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridItemChoiceView.OptionsCustomization.AllowColumnMoving = false;
     this.gridItemChoiceView.OptionsCustomization.AllowColumnResizing = false;
     this.gridItemChoiceView.OptionsCustomization.AllowFilter = false;
     this.gridItemChoiceView.OptionsCustomization.AllowGroup = false;
     this.gridItemChoiceView.OptionsDetail.AllowExpandEmptyDetails = true;
     this.gridItemChoiceView.OptionsDetail.EnableDetailToolTip = true;
     this.gridItemChoiceView.OptionsDetail.SmartDetailExpandButtonMode = DevExpress.XtraGrid.Views.Grid.DetailExpandButtonMode.AlwaysEnabled;
     this.gridItemChoiceView.OptionsDetail.SmartDetailHeight = true;
     this.gridItemChoiceView.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridItemChoiceView.OptionsMenu.EnableColumnMenu = false;
     this.gridItemChoiceView.OptionsMenu.EnableFooterMenu = false;
     this.gridItemChoiceView.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridItemChoiceView.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridItemChoiceView.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridItemChoiceView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridItemChoiceView.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gridItemChoiceView.OptionsSelection.MultiSelect = true;
     this.gridItemChoiceView.OptionsView.EnableAppearanceEvenRow = true;
     this.gridItemChoiceView.OptionsView.EnableAppearanceOddRow = true;
     this.gridItemChoiceView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridItemChoiceView.OptionsView.ShowGroupPanel = false;
     this.gridItemChoiceView.OptionsView.ShowIndicator = false;
     this.gridItemChoiceView.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.gridItemChoiceView_RowClick);
     //
     // gridColumn30
     //
     this.gridColumn30.ColumnEdit = this.repositoryItemCheckEdit1;
     this.gridColumn30.FieldName = "IsSelected";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.OptionsColumn.AllowEdit = false;
     this.gridColumn30.OptionsColumn.AllowFocus = false;
     this.gridColumn30.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn30.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsColumn.AllowMove = false;
     this.gridColumn30.OptionsColumn.AllowShowHide = false;
     this.gridColumn30.OptionsColumn.AllowSize = false;
     this.gridColumn30.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsColumn.FixedWidth = true;
     this.gridColumn30.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn30.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn30.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn30.OptionsFilter.AllowFilter = false;
     this.gridColumn30.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn30.OptionsFilter.AutoFilterCondition = DevExpress.XtraGrid.Columns.AutoFilterCondition.Like;
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 0;
     this.gridColumn30.Width = 20;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit1.ValueGrayed = false;
     this.repositoryItemCheckEdit1.CheckedChanged += new System.EventHandler(this.OnItemCheckedChanged);
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "Stock Code";
     this.gridColumn28.FieldName = "StockCode";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.OptionsColumn.AllowEdit = false;
     this.gridColumn28.OptionsColumn.AllowFocus = false;
     this.gridColumn28.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.OptionsColumn.AllowMove = false;
     this.gridColumn28.OptionsColumn.AllowShowHide = false;
     this.gridColumn28.OptionsColumn.AllowSize = false;
     this.gridColumn28.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.OptionsColumn.FixedWidth = true;
     this.gridColumn28.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn28.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn28.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn28.OptionsFilter.AllowFilter = false;
     this.gridColumn28.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn28.Width = 89;
     //
     // colItemName
     //
     this.colItemName.AppearanceCell.Options.UseTextOptions = true;
     this.colItemName.AppearanceCell.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.colItemName.AppearanceHeader.Options.UseTextOptions = true;
     this.colItemName.AppearanceHeader.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.colItemName.Caption = "Item";
     this.colItemName.ColumnEdit = this.repositoryItemMemoEdit2;
     this.colItemName.FieldName = "FullItemName";
     this.colItemName.Name = "colItemName";
     this.colItemName.OptionsColumn.AllowEdit = false;
     this.colItemName.OptionsColumn.AllowFocus = false;
     this.colItemName.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.OptionsColumn.AllowIncrementalSearch = false;
     this.colItemName.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.OptionsColumn.AllowMove = false;
     this.colItemName.OptionsColumn.AllowShowHide = false;
     this.colItemName.OptionsColumn.AllowSize = false;
     this.colItemName.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.OptionsColumn.FixedWidth = true;
     this.colItemName.OptionsColumn.ShowInCustomizationForm = false;
     this.colItemName.OptionsColumn.ShowInExpressionEditor = false;
     this.colItemName.OptionsFilter.AllowAutoFilter = false;
     this.colItemName.OptionsFilter.AllowFilter = false;
     this.colItemName.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colItemName.Visible = true;
     this.colItemName.VisibleIndex = 1;
     this.colItemName.Width = 343;
     //
     // repositoryItemMemoEdit2
     //
     this.repositoryItemMemoEdit2.LinesCount = 1;
     this.repositoryItemMemoEdit2.Name = "repositoryItemMemoEdit2";
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Type";
     this.gridColumn14.FieldName = "CommodityType";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit = false;
     this.gridColumn14.OptionsColumn.AllowFocus = false;
     this.gridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn14.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn14.OptionsColumn.AllowMove = false;
     this.gridColumn14.OptionsColumn.AllowShowHide = false;
     this.gridColumn14.OptionsColumn.AllowSize = false;
     this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn14.OptionsColumn.FixedWidth = true;
     this.gridColumn14.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn14.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn14.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn14.OptionsFilter.AllowFilter = false;
     this.gridColumn14.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "Unit";
     this.gridColumn29.FieldName = "Unit";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.OptionsColumn.AllowEdit = false;
     this.gridColumn29.OptionsColumn.AllowFocus = false;
     this.gridColumn29.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn29.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.AllowMove = false;
     this.gridColumn29.OptionsColumn.AllowShowHide = false;
     this.gridColumn29.OptionsColumn.AllowSize = false;
     this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.OptionsColumn.FixedWidth = true;
     this.gridColumn29.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn29.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn29.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn29.OptionsFilter.AllowFilter = false;
     this.gridColumn29.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 2;
     //
     // gridColumn66
     //
     this.gridColumn66.Caption = "gridColumn66";
     this.gridColumn66.FieldName = "SubCategoryID";
     this.gridColumn66.Name = "gridColumn66";
     this.gridColumn66.OptionsColumn.AllowEdit = false;
     this.gridColumn66.OptionsColumn.AllowFocus = false;
     this.gridColumn66.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn66.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn66.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn66.OptionsColumn.AllowMove = false;
     this.gridColumn66.OptionsColumn.AllowShowHide = false;
     this.gridColumn66.OptionsColumn.AllowSize = false;
     this.gridColumn66.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn66.OptionsColumn.FixedWidth = true;
     this.gridColumn66.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn66.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn66.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn66.OptionsFilter.AllowFilter = false;
     this.gridColumn66.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn67
     //
     this.gridColumn67.Caption = "gridColumn67";
     this.gridColumn67.FieldName = "CategoryID";
     this.gridColumn67.Name = "gridColumn67";
     this.gridColumn67.OptionsColumn.AllowEdit = false;
     this.gridColumn67.OptionsColumn.AllowFocus = false;
     this.gridColumn67.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn67.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn67.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn67.OptionsColumn.AllowMove = false;
     this.gridColumn67.OptionsColumn.AllowShowHide = false;
     this.gridColumn67.OptionsColumn.AllowSize = false;
     this.gridColumn67.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn67.OptionsColumn.FixedWidth = true;
     this.gridColumn67.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn67.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn67.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn67.OptionsFilter.AllowFilter = false;
     this.gridColumn67.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "gridColumn21";
     this.gridColumn21.FieldName = "TypeID";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.OptionsColumn.AllowEdit = false;
     this.gridColumn21.OptionsColumn.AllowFocus = false;
     this.gridColumn21.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn21.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.OptionsColumn.AllowMove = false;
     this.gridColumn21.OptionsColumn.AllowShowHide = false;
     this.gridColumn21.OptionsColumn.AllowSize = false;
     this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn21.OptionsColumn.FixedWidth = true;
     this.gridColumn21.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn21.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn21.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn21.OptionsFilter.AllowFilter = false;
     this.gridColumn21.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     //
     // lkPaymentType
     //
     this.lkPaymentType.Location = new System.Drawing.Point(1150, 35);
     this.lkPaymentType.Margin = new System.Windows.Forms.Padding(0);
     this.lkPaymentType.Name = "lkPaymentType";
     this.lkPaymentType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkPaymentType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkPaymentType.Properties.DisplayMember = "Name";
     this.lkPaymentType.Properties.NullText = "Select Payment Type";
     this.lkPaymentType.Properties.PopupSizeable = false;
     this.lkPaymentType.Properties.ShowFooter = false;
     this.lkPaymentType.Properties.ShowHeader = false;
     this.lkPaymentType.Properties.ValueMember = "ID";
     this.lkPaymentType.Size = new System.Drawing.Size(184, 20);
     this.lkPaymentType.TabIndex = 37;
     conditionValidationRule3.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule3.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkPaymentType, conditionValidationRule3);
     //
     // lkForFacility
     //
     this.lkForFacility.EditValue = "1";
     this.lkForFacility.Location = new System.Drawing.Point(818, 83);
     this.lkForFacility.Name = "lkForFacility";
     this.lkForFacility.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkForFacility.Properties.DisplayMember = "Name";
     this.lkForFacility.Properties.NullText = "Select Issue Location";
     this.lkForFacility.Properties.ShowFooter = false;
     this.lkForFacility.Properties.ShowPopupShadow = false;
     this.lkForFacility.Properties.ValueMember = "ID";
     this.lkForFacility.Properties.View = this.gridLookUpEdit1View;
     this.lkForFacility.Size = new System.Drawing.Size(211, 20);
     this.lkForFacility.TabIndex = 22;
     this.lkForFacility.EditValueChanged += new System.EventHandler(this.lkForFacility_EditValueChanged);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn19,
     this.gridColumn20,
     this.gridColumn22,
     this.gridColumn24,
     this.gridColumn25});
     this.gridLookUpEdit1View.DetailTabHeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Bottom;
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsCustomization.AllowColumnMoving = false;
     this.gridLookUpEdit1View.OptionsCustomization.AllowColumnResizing = false;
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowAutoFilterRow = true;
     this.gridLookUpEdit1View.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     this.gridLookUpEdit1View.OptionsView.ShowIndicator = false;
     this.gridLookUpEdit1View.ScrollStyle = DevExpress.XtraGrid.Views.Grid.ScrollStyleFlags.LiveVertScroll;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Name";
     this.gridColumn15.FieldName = "Name";
     this.gridColumn15.MinWidth = 150;
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.OptionsColumn.AllowFocus = false;
     this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.AllowMove = false;
     this.gridColumn15.OptionsColumn.AllowShowHide = false;
     this.gridColumn15.OptionsColumn.AllowSize = false;
     this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 150;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Ownership";
     this.gridColumn19.FieldName = "OwnershipName";
     this.gridColumn19.MinWidth = 75;
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.AllowEdit = false;
     this.gridColumn19.OptionsColumn.AllowFocus = false;
     this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.AllowMove = false;
     this.gridColumn19.OptionsColumn.AllowShowHide = false;
     this.gridColumn19.OptionsColumn.AllowSize = false;
     this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn19.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Type";
     this.gridColumn20.FieldName = "InstitutionTypeName";
     this.gridColumn20.MinWidth = 75;
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.OptionsColumn.AllowEdit = false;
     this.gridColumn20.OptionsColumn.AllowFocus = false;
     this.gridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.AllowMove = false;
     this.gridColumn20.OptionsColumn.AllowShowHide = false;
     this.gridColumn20.OptionsColumn.AllowSize = false;
     this.gridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn20.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 2;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Woreda";
     this.gridColumn22.FieldName = "WoredaName";
     this.gridColumn22.MinWidth = 150;
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowEdit = false;
     this.gridColumn22.OptionsColumn.AllowFocus = false;
     this.gridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowMove = false;
     this.gridColumn22.OptionsColumn.AllowShowHide = false;
     this.gridColumn22.OptionsColumn.AllowSize = false;
     this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 3;
     this.gridColumn22.Width = 150;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Zone";
     this.gridColumn24.FieldName = "ZoneName";
     this.gridColumn24.MinWidth = 150;
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.OptionsColumn.AllowEdit = false;
     this.gridColumn24.OptionsColumn.AllowFocus = false;
     this.gridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.AllowMove = false;
     this.gridColumn24.OptionsColumn.AllowShowHide = false;
     this.gridColumn24.OptionsColumn.AllowSize = false;
     this.gridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn24.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 4;
     this.gridColumn24.Width = 150;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Region";
     this.gridColumn25.FieldName = "RegionName";
     this.gridColumn25.MinWidth = 75;
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.OptionsColumn.AllowEdit = false;
     this.gridColumn25.OptionsColumn.AllowFocus = false;
     this.gridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.AllowMove = false;
     this.gridColumn25.OptionsColumn.AllowShowHide = false;
     this.gridColumn25.OptionsColumn.AllowSize = false;
     this.gridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn25.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 5;
     //
     // lkPeriod
     //
     this.lkPeriod.Location = new System.Drawing.Point(818, 107);
     this.lkPeriod.Name = "lkPeriod";
     this.lkPeriod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkPeriod.Properties.DisplayMember = "StartDate_EndDate";
     this.lkPeriod.Properties.NullText = "Select Period";
     this.lkPeriod.Properties.ShowFooter = false;
     this.lkPeriod.Properties.ValueMember = "PeriodID";
     this.lkPeriod.Properties.View = this.gridView2;
     this.lkPeriod.Size = new System.Drawing.Size(211, 20);
     this.lkPeriod.TabIndex = 44;
     this.lkPeriod.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.lkPeriod_EditValueChanging);
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.lkColStartDate_EndDate});
     this.gridView2.DetailHeight = 150;
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // lkColStartDate_EndDate
     //
     this.lkColStartDate_EndDate.Caption = "StartDate_EndDate";
     this.lkColStartDate_EndDate.FieldName = "StartDate_EndDate";
     this.lkColStartDate_EndDate.Name = "lkColStartDate_EndDate";
     this.lkColStartDate_EndDate.Visible = true;
     this.lkColStartDate_EndDate.VisibleIndex = 0;
     //
     // lkRequisitionType
     //
     this.lkRequisitionType.Location = new System.Drawing.Point(78, 38);
     this.lkRequisitionType.Name = "lkRequisitionType";
     this.lkRequisitionType.Properties.AllowMouseWheel = false;
     this.lkRequisitionType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkRequisitionType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Description", "Requisiton Type")});
     this.lkRequisitionType.Properties.DisplayMember = "Description";
     this.lkRequisitionType.Properties.NullText = "Select Type";
     this.lkRequisitionType.Properties.PopupWidth = 100;
     this.lkRequisitionType.Properties.ShowFooter = false;
     this.lkRequisitionType.Properties.ValueMember = "Value";
     this.lkRequisitionType.Size = new System.Drawing.Size(186, 20);
     this.lkRequisitionType.TabIndex = 45;
     conditionValidationRule4.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule4.ErrorText = "This value is not valid";
     this.dxValidation1stTab.SetValidationRule(this.lkRequisitionType, conditionValidationRule4);
     this.lkRequisitionType.EditValueChanged += new System.EventHandler(this.lkRequisitionType_EditValueChanged);
     this.lkRequisitionType.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.lkRequisitionType_EditValueChanging);
     //
     // btnCancelOne
     //
     this.btnCancelOne.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelOne.Image")));
     this.btnCancelOne.Location = new System.Drawing.Point(1201, 367);
     this.btnCancelOne.Name = "btnCancelOne";
     this.btnCancelOne.Size = new System.Drawing.Size(142, 22);
     this.btnCancelOne.TabIndex = 20;
     this.btnCancelOne.Text = "Cancel";
     this.btnCancelOne.Click += new System.EventHandler(this.btnCancelOne_Click);
     //
     // layoutControlItem24
     //
     this.layoutControlItem24.Control = this.txtReceivedBy;
     this.layoutControlItem24.CustomizationFormText = "Received By";
     this.layoutControlItem24.Location = new System.Drawing.Point(538, 517);
     this.layoutControlItem24.Name = "layoutControlItem24";
     this.layoutControlItem24.Size = new System.Drawing.Size(250, 26);
     this.layoutControlItem24.Text = "Received By";
     this.layoutControlItem24.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem24.TextToControlDistance = 5;
     //
     // layoutControlItem25
     //
     this.layoutControlItem25.Control = this.txtRemark;
     this.layoutControlItem25.CustomizationFormText = "layoutControlItem25";
     this.layoutControlItem25.Location = new System.Drawing.Point(231, 517);
     this.layoutControlItem25.Name = "layoutControlItem25";
     this.layoutControlItem25.Size = new System.Drawing.Size(521, 26);
     this.layoutControlItem25.Text = "Remarks";
     this.layoutControlItem25.TextSize = new System.Drawing.Size(120, 13);
     this.layoutControlItem25.TextToControlDistance = 5;
     //
     // layoutReload
     //
     this.layoutReload.Control = this.lblLoadRU;
     this.layoutReload.ControlAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.layoutReload.CustomizationFormText = "layoutControlItem2";
     this.layoutReload.FillControlToClientArea = false;
     this.layoutReload.Location = new System.Drawing.Point(1078, 0);
     this.layoutReload.Name = "layoutReload";
     this.layoutReload.Size = new System.Drawing.Size(37, 48);
     this.layoutReload.Text = "layoutReload";
     this.layoutReload.TextLocation = DevExpress.Utils.Locations.Default;
     this.layoutReload.TextSize = new System.Drawing.Size(0, 0);
     this.layoutReload.TextToControlDistance = 0;
     this.layoutReload.TextVisible = false;
     this.layoutReload.TrimClientAreaToControl = false;
     this.layoutReload.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // progressBarlayoutControlItem
     //
     this.progressBarlayoutControlItem.Control = this.progressBarControl;
     this.progressBarlayoutControlItem.CustomizationFormText = "progressBarlayoutControlItem";
     this.progressBarlayoutControlItem.Location = new System.Drawing.Point(386, 366);
     this.progressBarlayoutControlItem.MinSize = new System.Drawing.Size(54, 18);
     this.progressBarlayoutControlItem.Name = "progressBarlayoutControlItem";
     this.progressBarlayoutControlItem.Size = new System.Drawing.Size(966, 24);
     this.progressBarlayoutControlItem.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.progressBarlayoutControlItem.Text = "progressBarlayoutControlItem";
     this.progressBarlayoutControlItem.TextSize = new System.Drawing.Size(0, 0);
     this.progressBarlayoutControlItem.TextToControlDistance = 0;
     this.progressBarlayoutControlItem.TextVisible = false;
     this.progressBarlayoutControlItem.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // layoutControlItem23
     //
     this.layoutControlItem23.Control = this.txtTin;
     this.layoutControlItem23.CustomizationFormText = "TIN Number";
     this.layoutControlItem23.Location = new System.Drawing.Point(430, 0);
     this.layoutControlItem23.MaxSize = new System.Drawing.Size(189, 22);
     this.layoutControlItem23.MinSize = new System.Drawing.Size(189, 22);
     this.layoutControlItem23.Name = "layoutControlItem23";
     this.layoutControlItem23.Size = new System.Drawing.Size(189, 22);
     this.layoutControlItem23.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem23.Text = "TIN Number:";
     this.layoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem23.TextSize = new System.Drawing.Size(61, 13);
     this.layoutControlItem23.TextToControlDistance = 2;
     //
     // layoutControlItem22
     //
     this.layoutControlItem22.Control = this.txtVatRegistration;
     this.layoutControlItem22.CustomizationFormText = "VAT Registration Number";
     this.layoutControlItem22.Location = new System.Drawing.Point(552, 0);
     this.layoutControlItem22.MaxSize = new System.Drawing.Size(197, 22);
     this.layoutControlItem22.MinSize = new System.Drawing.Size(197, 22);
     this.layoutControlItem22.Name = "layoutControlItem22";
     this.layoutControlItem22.Size = new System.Drawing.Size(197, 22);
     this.layoutControlItem22.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem22.Text = "VAT Number:";
     this.layoutControlItem22.TextSize = new System.Drawing.Size(63, 13);
     this.layoutControlItem22.TextToControlDistance = 5;
     //
     // layoutControlItem21
     //
     this.layoutControlItem21.Control = this.txtRegistrationNo;
     this.layoutControlItem21.CustomizationFormText = "License Number";
     this.layoutControlItem21.Location = new System.Drawing.Point(723, 0);
     this.layoutControlItem21.MinSize = new System.Drawing.Size(135, 22);
     this.layoutControlItem21.Name = "layoutControlItem21";
     this.layoutControlItem21.Size = new System.Drawing.Size(135, 22);
     this.layoutControlItem21.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem21.Text = "License Number:";
     this.layoutControlItem21.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem21.TextSize = new System.Drawing.Size(79, 13);
     this.layoutControlItem21.TextToControlDistance = 2;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.txtRefNo;
     this.layoutControlItem13.CustomizationFormText = "Order Number";
     this.layoutControlItem13.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem13.MaxSize = new System.Drawing.Size(252, 22);
     this.layoutControlItem13.MinSize = new System.Drawing.Size(252, 22);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem13.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem13.Text = "Order Number:";
     this.layoutControlItem13.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem13.TextSize = new System.Drawing.Size(72, 13);
     this.layoutControlItem13.TextToControlDistance = 16;
     //
     // layoutControlGroup14
     //
     this.layoutControlGroup14.CustomizationFormText = "Root";
     this.layoutControlGroup14.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup14.GroupBordersVisible = false;
     this.layoutControlGroup14.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem29,
     this.layoutControlItem2,
     this.layoutControlItem30,
     this.layoutControlItem8,
     this.layoutControlItem19,
     this.layoutControlItem12,
     this.emptySpaceItem14,
     this.simpleSeparator2,
     this.LastVisitlayout,
     this.NoRequisitionlayout,
     this.layoutControlGroup2,
     this.layoutControlGroup5,
     this.emptySpaceItem5,
     this.simpleSeparator3,
     this.layoutControlGroup4,
     this.layoutControlItem18,
     this.layoutControlItem34,
     this.layoutControlItem35,
     this.emptySpaceItem9,
     this.layoutControlGroup3});
     this.layoutControlGroup14.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup14.Name = "Root";
     this.layoutControlGroup14.OptionsItemText.TextToControlDistance = 2;
     this.layoutControlGroup14.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup14.Size = new System.Drawing.Size(1350, 393);
     this.layoutControlGroup14.Text = "Root";
     this.layoutControlGroup14.TextVisible = false;
     //
     // layoutControlItem29
     //
     this.layoutControlItem29.Control = this.gridItemsChoice;
     this.layoutControlItem29.CustomizationFormText = "layoutControlItem29";
     this.layoutControlItem29.Location = new System.Drawing.Point(0, 118);
     this.layoutControlItem29.Name = "layoutControlItem29";
     this.layoutControlItem29.Size = new System.Drawing.Size(422, 245);
     this.layoutControlItem29.Text = "layoutControlItem29";
     this.layoutControlItem29.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem29.TextToControlDistance = 0;
     this.layoutControlItem29.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.xtraTabControl1;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(430, 141);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlItem2.Size = new System.Drawing.Size(916, 222);
     this.layoutControlItem2.Text = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem30
     //
     this.layoutControlItem30.Control = this.simpleButton1;
     this.layoutControlItem30.CustomizationFormText = "layoutControlItem30";
     this.layoutControlItem30.Location = new System.Drawing.Point(759, 363);
     this.layoutControlItem30.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem30.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem30.Name = "layoutControlItem30";
     this.layoutControlItem30.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem30.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem30.Text = "layoutControlItem30";
     this.layoutControlItem30.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem30.TextToControlDistance = 0;
     this.layoutControlItem30.TextVisible = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.btnSaveAndForward;
     this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
     this.layoutControlItem8.Location = new System.Drawing.Point(1051, 363);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.Text = "layoutControlItem8";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextToControlDistance = 0;
     this.layoutControlItem8.TextVisible = false;
     //
     // layoutControlItem19
     //
     this.layoutControlItem19.Control = this.btnSaveOrder;
     this.layoutControlItem19.CustomizationFormText = "layoutControlItem19";
     this.layoutControlItem19.Location = new System.Drawing.Point(905, 363);
     this.layoutControlItem19.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem19.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem19.Name = "layoutControlItem19";
     this.layoutControlItem19.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem19.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem19.Text = "layoutControlItem19";
     this.layoutControlItem19.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem19.TextToControlDistance = 0;
     this.layoutControlItem19.TextVisible = false;
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.Control = this.btnCancelOne;
     this.layoutControlItem12.CustomizationFormText = "layoutControlItem12";
     this.layoutControlItem12.Location = new System.Drawing.Point(1197, 363);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 5, 2, 2);
     this.layoutControlItem12.Size = new System.Drawing.Size(149, 26);
     this.layoutControlItem12.Text = "layoutControlItem12";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem12.TextToControlDistance = 0;
     this.layoutControlItem12.TextVisible = false;
     //
     // emptySpaceItem14
     //
     this.emptySpaceItem14.AllowHotTrack = false;
     this.emptySpaceItem14.CustomizationFormText = "emptySpaceItem14";
     this.emptySpaceItem14.Location = new System.Drawing.Point(0, 363);
     this.emptySpaceItem14.Name = "emptySpaceItem14";
     this.emptySpaceItem14.Size = new System.Drawing.Size(759, 26);
     this.emptySpaceItem14.Text = "emptySpaceItem14";
     this.emptySpaceItem14.TextSize = new System.Drawing.Size(0, 0);
     //
     // simpleSeparator2
     //
     this.simpleSeparator2.AllowHotTrack = false;
     this.simpleSeparator2.CustomizationFormText = "simpleSeparator2";
     this.simpleSeparator2.Location = new System.Drawing.Point(430, 17);
     this.simpleSeparator2.Name = "simpleSeparator2";
     this.simpleSeparator2.Size = new System.Drawing.Size(916, 2);
     this.simpleSeparator2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.simpleSeparator2.Text = "simpleSeparator2";
     //
     // LastVisitlayout
     //
     this.LastVisitlayout.AppearanceItemCaption.Options.UseTextOptions = true;
     this.LastVisitlayout.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.LastVisitlayout.Control = this.LastVisitlabel;
     this.LastVisitlayout.CustomizationFormText = "Last Visit:";
     this.LastVisitlayout.Location = new System.Drawing.Point(992, 0);
     this.LastVisitlayout.MaxSize = new System.Drawing.Size(177, 17);
     this.LastVisitlayout.MinSize = new System.Drawing.Size(177, 17);
     this.LastVisitlayout.Name = "LastVisitlayout";
     this.LastVisitlayout.Size = new System.Drawing.Size(177, 17);
     this.LastVisitlayout.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.LastVisitlayout.Text = "  Last Visit:";
     this.LastVisitlayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.CustomSize;
     this.LastVisitlayout.TextSize = new System.Drawing.Size(52, 13);
     this.LastVisitlayout.TextToControlDistance = 2;
     //
     // NoRequisitionlayout
     //
     this.NoRequisitionlayout.Control = this.NoOfVisitLabel;
     this.NoRequisitionlayout.CustomizationFormText = "        No of Requistion:";
     this.NoRequisitionlayout.Location = new System.Drawing.Point(1169, 0);
     this.NoRequisitionlayout.MaxSize = new System.Drawing.Size(177, 17);
     this.NoRequisitionlayout.MinSize = new System.Drawing.Size(177, 17);
     this.NoRequisitionlayout.Name = "NoRequisitionlayout";
     this.NoRequisitionlayout.Size = new System.Drawing.Size(177, 17);
     this.NoRequisitionlayout.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.NoRequisitionlayout.Text = "Last Requisitions:";
     this.NoRequisitionlayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.NoRequisitionlayout.TextSize = new System.Drawing.Size(84, 13);
     this.NoRequisitionlayout.TextToControlDistance = 2;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = " ";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem15,
     this.ShowStockOutCheckBoxLayout,
     this.layoutControlItem3,
     this.layoutControlItem4});
     this.layoutControlGroup2.Location = new System.Drawing.Point(430, 19);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Size = new System.Drawing.Size(305, 120);
     this.layoutControlGroup2.Text = " ";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem15.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem15.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem15.Control = this.lkWoreda;
     this.layoutControlItem15.CustomizationFormText = "Woreda";
     this.layoutControlItem15.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem15.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem15.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem15.Name = "layoutControlItem15";
     this.layoutControlItem15.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem15.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem15.Text = "Woreda:";
     this.layoutControlItem15.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem15.TextSize = new System.Drawing.Size(47, 13);
     this.layoutControlItem15.TextToControlDistance = 4;
     //
     // ShowStockOutCheckBoxLayout
     //
     this.ShowStockOutCheckBoxLayout.Control = this.ShowStockOutCheckBox;
     this.ShowStockOutCheckBoxLayout.CustomizationFormText = "ShowStockOutCheckBoxLayout";
     this.ShowStockOutCheckBoxLayout.Location = new System.Drawing.Point(0, 72);
     this.ShowStockOutCheckBoxLayout.Name = "ShowStockOutCheckBoxLayout";
     this.ShowStockOutCheckBoxLayout.Size = new System.Drawing.Size(281, 24);
     this.ShowStockOutCheckBoxLayout.Text = "ShowStockOutCheckBoxLayout";
     this.ShowStockOutCheckBoxLayout.TextSize = new System.Drawing.Size(0, 0);
     this.ShowStockOutCheckBoxLayout.TextToControlDistance = 0;
     this.ShowStockOutCheckBoxLayout.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem3.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem3.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem3.Control = this.lkRegion;
     this.layoutControlItem3.CustomizationFormText = "Region";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "Region:";
     this.layoutControlItem3.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(42, 13);
     this.layoutControlItem3.TextToControlDistance = 9;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem4.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem4.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem4.Control = this.lkZone;
     this.layoutControlItem4.CustomizationFormText = "Zone";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(281, 24);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.Text = "Zone:";
     this.layoutControlItem4.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem4.TextToControlDistance = 20;
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = " ";
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.RequisitionTypelayoutControlItem,
     this.layoutControlItem7,
     this.RangeLayout,
     this.layoutControlItem52,
     this.layoutControlItem31,
     this.emptySpaceItem1,
     this.emptySpaceItem7,
     this.layoutControlItem38});
     this.layoutControlGroup5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup5.Name = "layoutControlGroup5";
     this.layoutControlGroup5.Size = new System.Drawing.Size(422, 118);
     this.layoutControlGroup5.Text = " ";
     this.layoutControlGroup5.TextVisible = false;
     //
     // RequisitionTypelayoutControlItem
     //
     this.RequisitionTypelayoutControlItem.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.RequisitionTypelayoutControlItem.AppearanceItemCaption.Options.UseForeColor = true;
     this.RequisitionTypelayoutControlItem.Control = this.lkRequisitionType;
     this.RequisitionTypelayoutControlItem.CustomizationFormText = "Type";
     this.RequisitionTypelayoutControlItem.ImageToTextDistance = 1;
     this.RequisitionTypelayoutControlItem.Location = new System.Drawing.Point(0, 22);
     this.RequisitionTypelayoutControlItem.MaxSize = new System.Drawing.Size(252, 24);
     this.RequisitionTypelayoutControlItem.MinSize = new System.Drawing.Size(252, 24);
     this.RequisitionTypelayoutControlItem.Name = "RequisitionTypelayoutControlItem";
     this.RequisitionTypelayoutControlItem.Size = new System.Drawing.Size(252, 24);
     this.RequisitionTypelayoutControlItem.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.RequisitionTypelayoutControlItem.Text = "Type:";
     this.RequisitionTypelayoutControlItem.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.RequisitionTypelayoutControlItem.TextSize = new System.Drawing.Size(28, 13);
     this.RequisitionTypelayoutControlItem.TextToControlDistance = 34;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem7.Control = this.lkModes;
     this.layoutControlItem7.CustomizationFormText = "Mode:";
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 46);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(252, 24);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text = "Mode:";
     this.layoutControlItem7.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem7.TextToControlDistance = 32;
     //
     // RangeLayout
     //
     this.RangeLayout.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.RangeLayout.AppearanceItemCaption.Options.UseForeColor = true;
     this.RangeLayout.Control = this.lkRange;
     this.RangeLayout.CustomizationFormText = "RangeLayout";
     this.RangeLayout.Location = new System.Drawing.Point(252, 22);
     this.RangeLayout.MaxSize = new System.Drawing.Size(146, 24);
     this.RangeLayout.MinSize = new System.Drawing.Size(146, 24);
     this.RangeLayout.Name = "RangeLayout";
     this.RangeLayout.Size = new System.Drawing.Size(146, 24);
     this.RangeLayout.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.RangeLayout.Text = "Range:";
     this.RangeLayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.RangeLayout.TextSize = new System.Drawing.Size(35, 13);
     this.RangeLayout.TextToControlDistance = 5;
     //
     // layoutControlItem52
     //
     this.layoutControlItem52.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.layoutControlItem52.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem52.Control = this.lkCategoires;
     this.layoutControlItem52.CustomizationFormText = "Categories";
     this.layoutControlItem52.Location = new System.Drawing.Point(0, 70);
     this.layoutControlItem52.MaxSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem52.MinSize = new System.Drawing.Size(252, 24);
     this.layoutControlItem52.Name = "layoutControlItem52";
     this.layoutControlItem52.Size = new System.Drawing.Size(252, 24);
     this.layoutControlItem52.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem52.Text = "Commodity:";
     this.layoutControlItem52.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem52.TextSize = new System.Drawing.Size(57, 13);
     this.layoutControlItem52.TextToControlDistance = 5;
     //
     // layoutControlItem31
     //
     this.layoutControlItem31.AppearanceItemCaption.ForeColor = System.Drawing.Color.Black;
     this.layoutControlItem31.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem31.Control = this.txtItemName;
     this.layoutControlItem31.CustomizationFormText = "layoutControlItem31";
     this.layoutControlItem31.Location = new System.Drawing.Point(252, 70);
     this.layoutControlItem31.MaxSize = new System.Drawing.Size(146, 24);
     this.layoutControlItem31.MinSize = new System.Drawing.Size(146, 24);
     this.layoutControlItem31.Name = "layoutControlItem31";
     this.layoutControlItem31.Size = new System.Drawing.Size(146, 24);
     this.layoutControlItem31.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem31.Text = "Item:";
     this.layoutControlItem31.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem31.TextSize = new System.Drawing.Size(26, 13);
     this.layoutControlItem31.TextToControlDistance = 14;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(252, 46);
     this.emptySpaceItem1.MaxSize = new System.Drawing.Size(146, 24);
     this.emptySpaceItem1.MinSize = new System.Drawing.Size(146, 24);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(146, 24);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem7
     //
     this.emptySpaceItem7.AllowHotTrack = false;
     this.emptySpaceItem7.CustomizationFormText = "emptySpaceItem7";
     this.emptySpaceItem7.Location = new System.Drawing.Point(252, 0);
     this.emptySpaceItem7.MaxSize = new System.Drawing.Size(146, 22);
     this.emptySpaceItem7.MinSize = new System.Drawing.Size(146, 22);
     this.emptySpaceItem7.Name = "emptySpaceItem7";
     this.emptySpaceItem7.Size = new System.Drawing.Size(146, 22);
     this.emptySpaceItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem7.Text = "emptySpaceItem7";
     this.emptySpaceItem7.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem38
     //
     this.layoutControlItem38.Control = this.labelControl4;
     this.layoutControlItem38.CustomizationFormText = "Order Number: ";
     this.layoutControlItem38.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem38.Name = "layoutControlItem38";
     this.layoutControlItem38.Size = new System.Drawing.Size(252, 22);
     this.layoutControlItem38.Text = "Order No: ";
     this.layoutControlItem38.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem38.TextSize = new System.Drawing.Size(51, 13);
     this.layoutControlItem38.TextToControlDistance = 8;
     //
     // emptySpaceItem5
     //
     this.emptySpaceItem5.AllowHotTrack = false;
     this.emptySpaceItem5.CustomizationFormText = "emptySpaceItem5";
     this.emptySpaceItem5.Location = new System.Drawing.Point(422, 0);
     this.emptySpaceItem5.MinSize = new System.Drawing.Size(8, 10);
     this.emptySpaceItem5.Name = "emptySpaceItem5";
     this.emptySpaceItem5.Size = new System.Drawing.Size(8, 363);
     this.emptySpaceItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem5.Text = "emptySpaceItem5";
     this.emptySpaceItem5.TextSize = new System.Drawing.Size(0, 0);
     //
     // simpleSeparator3
     //
     this.simpleSeparator3.AllowHotTrack = false;
     this.simpleSeparator3.CustomizationFormText = "simpleSeparator3";
     this.simpleSeparator3.Location = new System.Drawing.Point(430, 139);
     this.simpleSeparator3.Name = "simpleSeparator3";
     this.simpleSeparator3.Size = new System.Drawing.Size(916, 2);
     this.simpleSeparator3.Text = "simpleSeparator3";
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem5,
     this.layoutControlItem20,
     this.layoutControlItem1,
     this.emptySpaceItem8});
     this.layoutControlGroup4.Location = new System.Drawing.Point(1041, 19);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Size = new System.Drawing.Size(305, 120);
     this.layoutControlGroup4.Text = " ";
     this.layoutControlGroup4.TextVisible = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem5.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem5.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem5.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem5.Control = this.txtContactPerson;
     this.layoutControlItem5.CustomizationFormText = "Contact Person";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem5.Text = "Contact Person:";
     this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(89, 13);
     this.layoutControlItem5.TextToControlDistance = 5;
     //
     // layoutControlItem20
     //
     this.layoutControlItem20.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem20.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem20.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem20.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem20.Control = this.txtLetterNumber;
     this.layoutControlItem20.CustomizationFormText = "Letter Number";
     this.layoutControlItem20.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem20.Name = "layoutControlItem20";
     this.layoutControlItem20.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem20.Text = "Letter No:";
     this.layoutControlItem20.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem20.TextSize = new System.Drawing.Size(55, 13);
     this.layoutControlItem20.TextToControlDistance = 39;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem1.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem1.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem1.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem1.Control = this.lkPaymentType;
     this.layoutControlItem1.CustomizationFormText = "Payment Type";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(281, 24);
     this.layoutControlItem1.Text = "Payment:";
     this.layoutControlItem1.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(54, 13);
     this.layoutControlItem1.TextToControlDistance = 39;
     //
     // emptySpaceItem8
     //
     this.emptySpaceItem8.AllowHotTrack = false;
     this.emptySpaceItem8.CustomizationFormText = "emptySpaceItem8";
     this.emptySpaceItem8.Location = new System.Drawing.Point(0, 72);
     this.emptySpaceItem8.Name = "emptySpaceItem8";
     this.emptySpaceItem8.Size = new System.Drawing.Size(281, 24);
     this.emptySpaceItem8.Text = "emptySpaceItem8";
     this.emptySpaceItem8.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem18
     //
     this.layoutControlItem18.Control = this.labelControl1;
     this.layoutControlItem18.CustomizationFormText = "Tin Number:";
     this.layoutControlItem18.Location = new System.Drawing.Point(459, 0);
     this.layoutControlItem18.MaxSize = new System.Drawing.Size(177, 17);
     this.layoutControlItem18.MinSize = new System.Drawing.Size(177, 17);
     this.layoutControlItem18.Name = "layoutControlItem18";
     this.layoutControlItem18.Size = new System.Drawing.Size(177, 17);
     this.layoutControlItem18.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem18.Text = "Tin Number:";
     this.layoutControlItem18.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem18.TextSize = new System.Drawing.Size(58, 13);
     this.layoutControlItem18.TextToControlDistance = 2;
     //
     // layoutControlItem34
     //
     this.layoutControlItem34.Control = this.labelControl2;
     this.layoutControlItem34.CustomizationFormText = "VAT number: ";
     this.layoutControlItem34.Location = new System.Drawing.Point(636, 0);
     this.layoutControlItem34.MaxSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem34.MinSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem34.Name = "layoutControlItem34";
     this.layoutControlItem34.Size = new System.Drawing.Size(178, 17);
     this.layoutControlItem34.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem34.Text = "VAT number: ";
     this.layoutControlItem34.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem34.TextSize = new System.Drawing.Size(65, 13);
     this.layoutControlItem34.TextToControlDistance = 2;
     //
     // layoutControlItem35
     //
     this.layoutControlItem35.Control = this.labelControl3;
     this.layoutControlItem35.CustomizationFormText = "License Number:";
     this.layoutControlItem35.Location = new System.Drawing.Point(814, 0);
     this.layoutControlItem35.MaxSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem35.MinSize = new System.Drawing.Size(178, 17);
     this.layoutControlItem35.Name = "layoutControlItem35";
     this.layoutControlItem35.Size = new System.Drawing.Size(178, 17);
     this.layoutControlItem35.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem35.Text = "License Number:";
     this.layoutControlItem35.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem35.TextSize = new System.Drawing.Size(79, 13);
     this.layoutControlItem35.TextToControlDistance = 2;
     //
     // emptySpaceItem9
     //
     this.emptySpaceItem9.AllowHotTrack = false;
     this.emptySpaceItem9.CustomizationFormText = "emptySpaceItem9";
     this.emptySpaceItem9.Location = new System.Drawing.Point(430, 0);
     this.emptySpaceItem9.Name = "emptySpaceItem9";
     this.emptySpaceItem9.Size = new System.Drawing.Size(29, 17);
     this.emptySpaceItem9.Text = "emptySpaceItem9";
     this.emptySpaceItem9.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem11,
     this.lkPeriodlayout,
     this.layoutControlItem14,
     this.layoutForFacility});
     this.layoutControlGroup3.Location = new System.Drawing.Point(735, 19);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Size = new System.Drawing.Size(306, 120);
     this.layoutControlGroup3.Text = " ";
     this.layoutControlGroup3.TextVisible = false;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem11.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem11.Control = this.lkOwnership;
     this.layoutControlItem11.CustomizationFormText = "Ownership";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(282, 24);
     this.layoutControlItem11.Text = "Ownership:";
     this.layoutControlItem11.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem11.TextSize = new System.Drawing.Size(62, 13);
     this.layoutControlItem11.TextToControlDistance = 5;
     //
     // lkPeriodlayout
     //
     this.lkPeriodlayout.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lkPeriodlayout.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.lkPeriodlayout.AppearanceItemCaption.Options.UseFont = true;
     this.lkPeriodlayout.AppearanceItemCaption.Options.UseForeColor = true;
     this.lkPeriodlayout.Control = this.lkPeriod;
     this.lkPeriodlayout.CustomizationFormText = "Period";
     this.lkPeriodlayout.ImageToTextDistance = 1;
     this.lkPeriodlayout.Location = new System.Drawing.Point(0, 72);
     this.lkPeriodlayout.Name = "lkPeriodlayout";
     this.lkPeriodlayout.Size = new System.Drawing.Size(282, 24);
     this.lkPeriodlayout.Text = "Period:";
     this.lkPeriodlayout.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.lkPeriodlayout.TextSize = new System.Drawing.Size(39, 13);
     this.lkPeriodlayout.TextToControlDistance = 28;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem14.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem14.Control = this.lkType;
     this.layoutControlItem14.CustomizationFormText = "Type";
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(282, 24);
     this.layoutControlItem14.Text = "Inst. Type:";
     this.layoutControlItem14.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem14.TextSize = new System.Drawing.Size(60, 13);
     this.layoutControlItem14.TextToControlDistance = 7;
     //
     // layoutForFacility
     //
     this.layoutForFacility.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutForFacility.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutForFacility.AppearanceItemCaption.Options.UseFont = true;
     this.layoutForFacility.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutForFacility.Control = this.lkForFacility;
     this.layoutForFacility.CustomizationFormText = "For Facility";
     this.layoutForFacility.Location = new System.Drawing.Point(0, 48);
     this.layoutForFacility.Name = "layoutForFacility";
     this.layoutForFacility.Size = new System.Drawing.Size(282, 24);
     this.layoutForFacility.Text = "Facility:";
     this.layoutForFacility.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutForFacility.TextSize = new System.Drawing.Size(43, 13);
     this.layoutForFacility.TextToControlDistance = 24;
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(297, 0);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(368, 20);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // popupMenu1
     //
     this.popupMenu1.Name = "popupMenu1";
     //
     // emptySpaceItem15
     //
     this.emptySpaceItem15.AllowHotTrack = false;
     this.emptySpaceItem15.CustomizationFormText = "emptySpaceItem15";
     this.emptySpaceItem15.Location = new System.Drawing.Point(0, 116);
     this.emptySpaceItem15.Name = "emptySpaceItem15";
     this.emptySpaceItem15.Size = new System.Drawing.Size(717, 10);
     this.emptySpaceItem15.Text = "emptySpaceItem15";
     this.emptySpaceItem15.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup8
     //
     this.layoutControlGroup8.CustomizationFormText = "layoutControlGroup8";
     this.layoutControlGroup8.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup8.Name = "layoutControlGroup8";
     this.layoutControlGroup8.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup8.Size = new System.Drawing.Size(717, 116);
     this.layoutControlGroup8.Text = "layoutControlGroup8";
     //
     // layoutControlGroup9
     //
     this.layoutControlGroup9.CustomizationFormText = "layoutControlGroup9";
     this.layoutControlGroup9.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup9.Name = "layoutControlGroup9";
     this.layoutControlGroup9.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup9.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup9.Text = "layoutControlGroup9";
     //
     // layoutControlGroup10
     //
     this.layoutControlGroup10.CustomizationFormText = "layoutControlGroup10";
     this.layoutControlGroup10.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup10.Name = "layoutControlGroup10";
     this.layoutControlGroup10.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup10.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup10.Text = "layoutControlGroup10";
     //
     // emptySpaceItem10
     //
     this.emptySpaceItem10.AllowHotTrack = false;
     this.emptySpaceItem10.CustomizationFormText = "emptySpaceItem10";
     this.emptySpaceItem10.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem10.Name = "emptySpaceItem10";
     this.emptySpaceItem10.Size = new System.Drawing.Size(693, 10);
     this.emptySpaceItem10.Text = "emptySpaceItem10";
     this.emptySpaceItem10.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem22
     //
     this.emptySpaceItem22.AllowHotTrack = false;
     this.emptySpaceItem22.CustomizationFormText = "emptySpaceItem22";
     this.emptySpaceItem22.Location = new System.Drawing.Point(85, 0);
     this.emptySpaceItem22.Name = "emptySpaceItem22";
     this.emptySpaceItem22.Size = new System.Drawing.Size(119, 479);
     this.emptySpaceItem22.Text = "emptySpaceItem22";
     this.emptySpaceItem22.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem23
     //
     this.emptySpaceItem23.AllowHotTrack = false;
     this.emptySpaceItem23.CustomizationFormText = "emptySpaceItem23";
     this.emptySpaceItem23.Location = new System.Drawing.Point(1179, 24);
     this.emptySpaceItem23.Name = "emptySpaceItem23";
     this.emptySpaceItem23.Size = new System.Drawing.Size(10, 455);
     this.emptySpaceItem23.Text = "emptySpaceItem23";
     this.emptySpaceItem23.TextSize = new System.Drawing.Size(0, 0);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
     this.printableComponentLink1,
     this.printOrder});
     //
     // printableComponentLink1
     //
     //
     //
     //
     this.printableComponentLink1.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printableComponentLink1.ImageCollection.ImageStream")));
     this.printableComponentLink1.Landscape = true;
     this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(20, 20, 20, 20);
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(null, new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "[Time Printed]",
         "[Date Printed]",
         "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink1.PrintingSystem = this.printingSystem1;
     this.printableComponentLink1.PrintingSystemBase = this.printingSystem1;
     this.printableComponentLink1.RtfReportHeader = resources.GetString("printableComponentLink1.RtfReportHeader");
     //
     // printOrder
     //
     //
     //
     //
     this.printOrder.ImageCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("printOrder.ImageCollection.ImageStream")));
     this.printOrder.Landscape = true;
     this.printOrder.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printOrder.PrintingSystem = this.printingSystem1;
     this.printOrder.PrintingSystemBase = this.printingSystem1;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.CustomizationFormText = "Type";
     this.layoutControlItem9.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem9.Name = "layoutControlItem5";
     this.layoutControlItem9.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem9.Text = "Facility Type";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem9.TextToControlDistance = 5;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.CustomizationFormText = "Type";
     this.layoutControlItem10.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem10.Name = "layoutControlItem5";
     this.layoutControlItem10.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem10.Text = "Facility Type";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem10.TextToControlDistance = 5;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.CustomizationFormText = "Woreda";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem6.Name = "layoutControlItem4";
     this.layoutControlItem6.Size = new System.Drawing.Size(387, 24);
     this.layoutControlItem6.Text = "Woreda";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem6.TextToControlDistance = 5;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.CustomizationFormText = "Ownership";
     this.layoutControlItem16.Location = new System.Drawing.Point(387, 0);
     this.layoutControlItem16.Name = "layoutControlItem6";
     this.layoutControlItem16.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem16.Text = "Ownership Type";
     this.layoutControlItem16.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem16.TextToControlDistance = 5;
     //
     // layoutControlItem17
     //
     this.layoutControlItem17.CustomizationFormText = "Type";
     this.layoutControlItem17.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem17.Name = "layoutControlItem5";
     this.layoutControlItem17.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem17.Text = "Facility Type";
     this.layoutControlItem17.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem17.TextToControlDistance = 5;
     //
     // layoutControlItem26
     //
     this.layoutControlItem26.CustomizationFormText = "Woreda";
     this.layoutControlItem26.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem26.Name = "layoutControlItem4";
     this.layoutControlItem26.Size = new System.Drawing.Size(387, 24);
     this.layoutControlItem26.Text = "Woreda";
     this.layoutControlItem26.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem26.TextToControlDistance = 5;
     //
     // layoutControlItem27
     //
     this.layoutControlItem27.CustomizationFormText = "Ownership";
     this.layoutControlItem27.Location = new System.Drawing.Point(387, 0);
     this.layoutControlItem27.Name = "layoutControlItem6";
     this.layoutControlItem27.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem27.Text = "Ownership Type";
     this.layoutControlItem27.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem27.TextToControlDistance = 5;
     //
     // layoutControlItem28
     //
     this.layoutControlItem28.CustomizationFormText = "Type";
     this.layoutControlItem28.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem28.Name = "layoutControlItem5";
     this.layoutControlItem28.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem28.Text = "Facility Type";
     this.layoutControlItem28.TextSize = new System.Drawing.Size(78, 13);
     this.layoutControlItem28.TextToControlDistance = 5;
     //
     // simpleLabelItem13
     //
     this.simpleLabelItem13.AllowHotTrack = false;
     this.simpleLabelItem13.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem13.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem13.CustomizationFormText = "Insurance";
     this.simpleLabelItem13.Location = new System.Drawing.Point(459, 85);
     this.simpleLabelItem13.Name = "simpleLabelItem13";
     this.simpleLabelItem13.Size = new System.Drawing.Size(165, 17);
     this.simpleLabelItem13.Text = "Insurance:";
     this.simpleLabelItem13.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem1
     //
     this.simpleLabelItem1.AllowHotTrack = false;
     this.simpleLabelItem1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem1.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem1.CustomizationFormText = "Insurance";
     this.simpleLabelItem1.Location = new System.Drawing.Point(459, 85);
     this.simpleLabelItem1.Name = "simpleLabelItem13";
     this.simpleLabelItem1.Size = new System.Drawing.Size(165, 17);
     this.simpleLabelItem1.Text = "Insurance:";
     this.simpleLabelItem1.TextSize = new System.Drawing.Size(111, 13);
     //
     // simpleLabelItem2
     //
     this.simpleLabelItem2.AllowHotTrack = false;
     this.simpleLabelItem2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.simpleLabelItem2.AppearanceItemCaption.Options.UseFont = true;
     this.simpleLabelItem2.CustomizationFormText = "Insurance";
     this.simpleLabelItem2.Location = new System.Drawing.Point(459, 85);
     this.simpleLabelItem2.Name = "simpleLabelItem13";
     this.simpleLabelItem2.Size = new System.Drawing.Size(165, 17);
     this.simpleLabelItem2.Text = "Insurance:";
     this.simpleLabelItem2.TextSize = new System.Drawing.Size(111, 13);
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Ownership Type";
     this.gridColumn23.FieldName = "OwnershipName";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 4;
     //
     // WishListForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1350, 393);
     this.Controls.Add(this.layoutControl4);
     this.Name = "WishListForm";
     this.Text = "Order";
     this.Load += new System.EventHandler(this.OrderForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditPack)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl4)).EndInit();
     this.layoutControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkRange.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBox.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.ItemSelectionPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.orderGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOrderView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExpireDateEditor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEditQtyPerPack)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridRecieveView1)).EndInit();
     this.VolumeMetricsPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkContainerTypes.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdVolumeGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem36)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem37)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem40)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem39)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem33)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarControl.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtReceivedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTin.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVatRegistration.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRegistrationNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLetterNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkModes.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtContactPerson.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkCategoires.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemsChoice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridItemChoiceView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkForFacility.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRequisitionType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutReload)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.progressBarlayoutControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LastVisitlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoRequisitionlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ShowStockOutCheckBoxLayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RequisitionTypelayoutControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RangeLayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem52)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem38)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleSeparator3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem34)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem35)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPeriodlayout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutForFacility)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printableComponentLink1.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printOrder.ImageCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidation1stTab)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem2)).EndInit();
     this.ResumeLayout(false);
 }
Example #24
0
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form7));
     this.barManager1 = new DevExpress.XtraBars.BarManager();
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.bar2 = new DevExpress.XtraBars.Bar();
     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.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.AllowCustomization = false;
     this.barManager1.AllowQuickCustomization = false;
     this.barManager1.AllowShowToolbarsPopup = false;
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1,
     this.bar2});
     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.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5,
     this.barButtonItem6,
     this.barButtonItem7,
     this.barButtonItem8,
     this.barButtonItem9});
     this.barManager1.MaxItemId = 9;
     this.barManager1.StatusBar = this.bar2;
     //
     // bar1
     //
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem5),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem6, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem8, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem9, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem7, true)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "�����ӷ���";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 4;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "�޸ķ���";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.ImageIndex = 5;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "ɾ������";
     this.barButtonItem3.Id = 2;
     this.barButtonItem3.ImageIndex = 2;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "�������";
     this.barButtonItem4.Id = 3;
     this.barButtonItem4.ImageIndex = 4;
     this.barButtonItem4.Name = "barButtonItem4";
     this.barButtonItem4.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem4_ItemClick);
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "ɾ�����";
     this.barButtonItem5.Id = 4;
     this.barButtonItem5.ImageIndex = 2;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "ͳ��";
     this.barButtonItem6.Id = 5;
     this.barButtonItem6.ImageIndex = 8;
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption = "���û�׼��";
     this.barButtonItem8.Id = 7;
     this.barButtonItem8.ImageIndex = 13;
     this.barButtonItem8.Name = "barButtonItem8";
     this.barButtonItem8.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick);
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption = "������������";
     this.barButtonItem9.Id = 8;
     this.barButtonItem9.ImageIndex = 11;
     this.barButtonItem9.Name = "barButtonItem9";
     this.barButtonItem9.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem9.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem9_ItemClick);
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "�ر�";
     this.barButtonItem7.Id = 6;
     this.barButtonItem7.ImageIndex = 9;
     this.barButtonItem7.Name = "barButtonItem7";
     this.barButtonItem7.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem7.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem7_ItemClick);
     //
     // bar2
     //
     this.bar2.BarName = "Custom 2";
     this.bar2.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar2.OptionsBar.AllowQuickCustomization = false;
     this.bar2.OptionsBar.DrawDragBorder = false;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Custom 2";
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "����.ico");
     this.imageList1.Images.SetKeyName(1, "��ӡ.ico");
     this.imageList1.Images.SetKeyName(2, "ɾ��.ico");
     this.imageList1.Images.SetKeyName(3, "����¼�.ico");
     this.imageList1.Images.SetKeyName(4, "�½�.ico");
     this.imageList1.Images.SetKeyName(5, "�޸�.ico");
     this.imageList1.Images.SetKeyName(6, "���ͬ��.ico");
     this.imageList1.Images.SetKeyName(7, "����.ico");
     this.imageList1.Images.SetKeyName(8, "���.ico");
     this.imageList1.Images.SetKeyName(9, "�ر�.ico");
     this.imageList1.Images.SetKeyName(10, "��ѯ.ico");
     this.imageList1.Images.SetKeyName(11, "���ȹ���1.ico");
     this.imageList1.Images.SetKeyName(12, "15.ico");
     this.imageList1.Images.SetKeyName(13, "����.ico");
     //
     // treeList1
     //
     this.treeList1.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.treeList1.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 34);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsBehavior.AutoFocusNewNode = true;
     this.treeList1.OptionsView.AutoWidth = false;
     this.treeList1.OptionsView.EnableAppearanceOddRow = true;
     this.treeList1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.treeList1.Size = new System.Drawing.Size(880, 281);
     this.treeList1.TabIndex = 4;
     this.treeList1.FocusedColumnChanged += new DevExpress.XtraTreeList.FocusedColumnChangedEventHandler(this.treeList1_FocusedColumnChanged);
     this.treeList1.ShownEditor += new System.EventHandler(this.treeList1_ShownEditor);
     this.treeList1.CellValueChanged += new DevExpress.XtraTreeList.CellValueChangedEventHandler(this.treeList1_CellValueChanged);
     this.treeList1.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList1_FocusedNodeChanged);
     this.treeList1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.treeList1_ShowingEditor);
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Mask.EditMask = "###########.####";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // Form7
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(880, 333);
     this.Controls.Add(this.treeList1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "Form7";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "���������÷�չĿ��";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Form7_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form9ProfessionalMethod));
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.barManager1 = new DevExpress.XtraBars.BarManager();
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = 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.imageList1 = new System.Windows.Forms.ImageList(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     this.SuspendLayout();
     //
     // treeList1
     //
     this.treeList1.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.treeList1.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 33);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsView.AutoWidth = false;
     this.treeList1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.treeList1.Size = new System.Drawing.Size(692, 344);
     this.treeList1.TabIndex = 3;
     this.treeList1.CellValueChanged += new DevExpress.XtraTreeList.CellValueChangedEventHandler(this.treeList1_CellValueChanged);
     this.treeList1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.treeList1_ShowingEditor);
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatString = "##.####";
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.EditFormat.FormatString = "p2";
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.EditMask = "###.##%";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     this.repositoryItemTextEdit1.DoubleClick += new System.EventHandler(this.repositoryItemTextEdit1_DoubleClick);
     //
     // barManager1
     //
     this.barManager1.AllowCustomization = false;
     this.barManager1.AllowMoveBarOnToolbar = false;
     this.barManager1.AllowQuickCustomization = false;
     this.barManager1.AllowShowToolbarsPopup = false;
     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.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItem1,
     this.barButtonItem2});
     this.barManager1.MaxItemId = 2;
     //
     // bar1
     //
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2, true)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "确定";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 1;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "取消";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.ImageIndex = 0;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "关闭.ico");
     this.imageList1.Images.SetKeyName(1, "审批.ico");
     //
     // Form9ProfessionalMethod
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(692, 377);
     this.Controls.Add(this.treeList1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "Form9ProfessionalMethod";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "专家干预:指定各年增长率";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Form9ProfessionalMethod_Load);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     this.ResumeLayout(false);
 }
Example #26
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(frmProgBrw));
     this.persistentRepository1   = new DevExpress.XtraEditors.Repository.PersistentRepository(this.components);
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.pnl_Find                = new System.Windows.Forms.Panel();
     this.panel1                  = new System.Windows.Forms.Panel();
     this.pictureBox1             = new System.Windows.Forms.PictureBox();
     this.txtSearch               = new System.Windows.Forms.TextBox();
     this.chk_Anywhere            = new System.Windows.Forms.CheckBox();
     this.btn_Clear               = new System.Windows.Forms.Button();
     this.btn_Find                = new System.Windows.Forms.Button();
     this.lbl_Find                = new System.Windows.Forms.Label();
     this.chk_AdvanceSearch       = new System.Windows.Forms.CheckBox();
     this.pnlBody                 = new System.Windows.Forms.Panel();
     this.panel2                  = new System.Windows.Forms.Panel();
     this.pnl_SpeedSearch         = new System.Windows.Forms.Panel();
     this.pnl_SpeedSearch1        = new System.Windows.Forms.Panel();
     this.txt_SpeedSearch         = new System.Windows.Forms.TextBox();
     this.label1                  = new System.Windows.Forms.Label();
     this.grdProgram              = new DevExpress.XtraGrid.GridControl();
     this.gvwProgram              = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcolProgID              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColName                = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolPhonetic            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolNameRomaji          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColDepartment          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolClientName          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContact1            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContact2            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolReportAttendence    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolTestIniEventID      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColTestMidEventID      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColTestFinalEventID    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolTestIniForm         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColTestMidForm         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolTestFinalForm       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolEvaluationMidForm   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolEvaluationFinalForm = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolQuestMidForm        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolQuestFinalForm      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolProgramStatus       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolDescription         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolDateLastLogin       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolDateCreated         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolLastModified        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolLastModifiedByUser  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1             = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     this.pnl_Find.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.pnlBody.SuspendLayout();
     this.panel2.SuspendLayout();
     this.pnl_SpeedSearch.SuspendLayout();
     this.pnl_SpeedSearch1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdProgram)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwProgram)).BeginInit();
     this.SuspendLayout();
     //
     // persistentRepository1
     //
     this.persistentRepository1.Items.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemTextEdit1
     });
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AllowFocused = false;
     this.repositoryItemTextEdit1.AutoHeight   = false;
     this.repositoryItemTextEdit1.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemTextEdit1.Name         = "repositoryItemTextEdit1";
     //
     // pnl_Find
     //
     this.pnl_Find.BackColor   = System.Drawing.SystemColors.Window;
     this.pnl_Find.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pnl_Find.Controls.Add(this.panel1);
     this.pnl_Find.Controls.Add(this.txtSearch);
     this.pnl_Find.Controls.Add(this.chk_Anywhere);
     this.pnl_Find.Controls.Add(this.btn_Clear);
     this.pnl_Find.Controls.Add(this.btn_Find);
     this.pnl_Find.Controls.Add(this.lbl_Find);
     this.pnl_Find.Controls.Add(this.chk_AdvanceSearch);
     this.pnl_Find.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pnl_Find.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.pnl_Find.Location = new System.Drawing.Point(0, 0);
     this.pnl_Find.Name     = "pnl_Find";
     this.pnl_Find.Size     = new System.Drawing.Size(672, 129);
     this.pnl_Find.TabIndex = 42;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.pictureBox1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panel1.Location = new System.Drawing.Point(373, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(295, 125);
     this.panel1.TabIndex = 10;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(295, 125);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop  = false;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(102, 24);
     this.txtSearch.Name     = "txtSearch";
     this.txtSearch.Size     = new System.Drawing.Size(474, 27);
     this.txtSearch.TabIndex = 9;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // chk_Anywhere
     //
     this.chk_Anywhere.BackColor               = System.Drawing.SystemColors.Window;
     this.chk_Anywhere.FlatStyle               = System.Windows.Forms.FlatStyle.System;
     this.chk_Anywhere.Font                    = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_Anywhere.Location                = new System.Drawing.Point(336, 63);
     this.chk_Anywhere.Name                    = "chk_Anywhere";
     this.chk_Anywhere.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chk_Anywhere.Size                    = new System.Drawing.Size(246, 34);
     this.chk_Anywhere.TabIndex                = 7;
     this.chk_Anywhere.Text                    = "Search Anywhere in Fields";
     this.chk_Anywhere.UseVisualStyleBackColor = false;
     //
     // btn_Clear
     //
     this.btn_Clear.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Clear.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Clear.Location  = new System.Drawing.Point(592, 63);
     this.btn_Clear.Name      = "btn_Clear";
     this.btn_Clear.Size      = new System.Drawing.Size(120, 33);
     this.btn_Clear.TabIndex  = 6;
     this.btn_Clear.Text      = "Clear";
     this.btn_Clear.UseVisualStyleBackColor = false;
     this.btn_Clear.Click += new System.EventHandler(this.btn_Clear_Click);
     //
     // btn_Find
     //
     this.btn_Find.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Find.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Find.Location  = new System.Drawing.Point(592, 21);
     this.btn_Find.Name      = "btn_Find";
     this.btn_Find.Size      = new System.Drawing.Size(120, 33);
     this.btn_Find.TabIndex  = 4;
     this.btn_Find.Text      = "Find";
     this.btn_Find.UseVisualStyleBackColor = false;
     this.btn_Find.Click += new System.EventHandler(this.btn_Find_Click);
     //
     // lbl_Find
     //
     this.lbl_Find.AutoSize = true;
     this.lbl_Find.Location = new System.Drawing.Point(24, 27);
     this.lbl_Find.Name     = "lbl_Find";
     this.lbl_Find.Size     = new System.Drawing.Size(46, 21);
     this.lbl_Find.TabIndex = 0;
     this.lbl_Find.Text     = " Find";
     //
     // chk_AdvanceSearch
     //
     this.chk_AdvanceSearch.BackColor               = System.Drawing.SystemColors.Window;
     this.chk_AdvanceSearch.Checked                 = true;
     this.chk_AdvanceSearch.CheckState              = System.Windows.Forms.CheckState.Checked;
     this.chk_AdvanceSearch.FlatStyle               = System.Windows.Forms.FlatStyle.System;
     this.chk_AdvanceSearch.Font                    = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_AdvanceSearch.Location                = new System.Drawing.Point(102, 63);
     this.chk_AdvanceSearch.Name                    = "chk_AdvanceSearch";
     this.chk_AdvanceSearch.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chk_AdvanceSearch.Size                    = new System.Drawing.Size(180, 34);
     this.chk_AdvanceSearch.TabIndex                = 8;
     this.chk_AdvanceSearch.Text                    = "Search All Fields";
     this.chk_AdvanceSearch.UseVisualStyleBackColor = false;
     //
     // pnlBody
     //
     this.pnlBody.Controls.Add(this.panel2);
     this.pnlBody.Controls.Add(this.pnl_Find);
     this.pnlBody.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlBody.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.pnlBody.Location = new System.Drawing.Point(0, 0);
     this.pnlBody.Name     = "pnlBody";
     this.pnlBody.Size     = new System.Drawing.Size(672, 366);
     this.pnlBody.TabIndex = 27;
     this.pnlBody.Resize  += new System.EventHandler(this.pnlBody_Resize);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.pnl_SpeedSearch);
     this.panel2.Controls.Add(this.grdProgram);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 129);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(672, 237);
     this.panel2.TabIndex = 43;
     //
     // pnl_SpeedSearch
     //
     this.pnl_SpeedSearch.BackColor = System.Drawing.Color.Black;
     this.pnl_SpeedSearch.Controls.Add(this.pnl_SpeedSearch1);
     this.pnl_SpeedSearch.Location = new System.Drawing.Point(64, 263);
     this.pnl_SpeedSearch.Name     = "pnl_SpeedSearch";
     this.pnl_SpeedSearch.Size     = new System.Drawing.Size(307, 103);
     this.pnl_SpeedSearch.TabIndex = 42;
     this.pnl_SpeedSearch.Visible  = false;
     //
     // pnl_SpeedSearch1
     //
     this.pnl_SpeedSearch1.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(143)))), ((int)(((byte)(230)))));
     this.pnl_SpeedSearch1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnl_SpeedSearch1.Controls.Add(this.txt_SpeedSearch);
     this.pnl_SpeedSearch1.Controls.Add(this.label1);
     this.pnl_SpeedSearch1.Location = new System.Drawing.Point(6, 6);
     this.pnl_SpeedSearch1.Name     = "pnl_SpeedSearch1";
     this.pnl_SpeedSearch1.Size     = new System.Drawing.Size(295, 91);
     this.pnl_SpeedSearch1.TabIndex = 39;
     //
     // txt_SpeedSearch
     //
     this.txt_SpeedSearch.Location     = new System.Drawing.Point(18, 41);
     this.txt_SpeedSearch.Name         = "txt_SpeedSearch";
     this.txt_SpeedSearch.Size         = new System.Drawing.Size(251, 27);
     this.txt_SpeedSearch.TabIndex     = 10;
     this.txt_SpeedSearch.TextChanged += new System.EventHandler(this.txt_SpeedSearch_TextChanged);
     this.txt_SpeedSearch.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyDown);
     this.txt_SpeedSearch.Leave       += new System.EventHandler(this.txt_SpeedSearch_Leave);
     this.txt_SpeedSearch.KeyUp       += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyUp);
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location  = new System.Drawing.Point(90, 6);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(103, 19);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Fast Search";
     //
     // grdProgram
     //
     this.grdProgram.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdProgram.ExternalRepository = this.persistentRepository1;
     this.grdProgram.Location           = new System.Drawing.Point(0, 0);
     this.grdProgram.MainView           = this.gvwProgram;
     this.grdProgram.Name     = "grdProgram";
     this.grdProgram.Size     = new System.Drawing.Size(672, 237);
     this.grdProgram.TabIndex = 25;
     this.grdProgram.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gvwProgram
     });
     this.grdProgram.DoubleClick += new System.EventHandler(this.grdProgram_DoubleClick);
     this.grdProgram.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.grdProgram_KeyPress);
     //
     // gvwProgram
     //
     this.gvwProgram.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.gvwProgram.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gcolProgID,
         this.gColName,
         this.gcolPhonetic,
         this.gcolNameRomaji,
         this.gColDepartment,
         this.gcolClientName,
         this.gcolContact1,
         this.gcolContact2,
         this.gcolReportAttendence,
         this.gcolTestIniEventID,
         this.gColTestMidEventID,
         this.gColTestFinalEventID,
         this.gcolTestIniForm,
         this.gColTestMidForm,
         this.gcolTestFinalForm,
         this.gcolEvaluationMidForm,
         this.gcolEvaluationFinalForm,
         this.gcolQuestMidForm,
         this.gcolQuestFinalForm,
         this.gcolProgramStatus,
         this.gcolDescription,
         this.gcolDateLastLogin,
         this.gcolDateCreated,
         this.gcolLastModified,
         this.gcolLastModifiedByUser,
         this.gridColumn1
     });
     this.gvwProgram.FocusRectStyle                  = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gvwProgram.GridControl                     = this.grdProgram;
     this.gvwProgram.Name                            = "gvwProgram";
     this.gvwProgram.OptionsView.ShowGroupPanel      = false;
     this.gvwProgram.OptionsView.ShowHorizontalLines = DevExpress.Utils.DefaultBoolean.False;
     this.gvwProgram.OptionsView.ShowIndicator       = false;
     this.gvwProgram.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
         new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcolClientName, DevExpress.Data.ColumnSortOrder.Ascending)
     });
     //
     // gcolProgID
     //
     this.gcolProgID.Caption   = "Program ID";
     this.gcolProgID.FieldName = "ProgramID";
     this.gcolProgID.Name      = "gcolProgID";
     this.gcolProgID.OptionsColumn.AllowEdit = false;
     this.gcolProgID.OptionsColumn.ReadOnly  = true;
     //
     // gColName
     //
     this.gColName.Caption   = "Program Name";
     this.gColName.FieldName = "BrowseName";
     this.gColName.Name      = "gColName";
     this.gColName.OptionsColumn.AllowEdit = false;
     this.gColName.OptionsColumn.ReadOnly  = true;
     this.gColName.Visible      = true;
     this.gColName.VisibleIndex = 2;
     this.gColName.Width        = 116;
     //
     // gcolPhonetic
     //
     this.gcolPhonetic.Caption   = "Name Phonetic";
     this.gcolPhonetic.FieldName = "NamePhonetic";
     this.gcolPhonetic.Name      = "gcolPhonetic";
     this.gcolPhonetic.OptionsColumn.AllowEdit = false;
     this.gcolPhonetic.OptionsColumn.ReadOnly  = true;
     this.gcolPhonetic.Width = 88;
     //
     // gcolNameRomaji
     //
     this.gcolNameRomaji.Caption   = "Name Romaji";
     this.gcolNameRomaji.FieldName = "NameRomaji";
     this.gcolNameRomaji.Name      = "gcolNameRomaji";
     this.gcolNameRomaji.OptionsColumn.AllowEdit = false;
     this.gcolNameRomaji.OptionsColumn.ReadOnly  = true;
     this.gcolNameRomaji.Width = 88;
     //
     // gColDepartment
     //
     this.gColDepartment.Caption   = "Department";
     this.gColDepartment.FieldName = "Department";
     this.gColDepartment.Name      = "gColDepartment";
     this.gColDepartment.OptionsColumn.AllowEdit = false;
     this.gColDepartment.OptionsColumn.ReadOnly  = true;
     this.gColDepartment.Visible      = true;
     this.gColDepartment.VisibleIndex = 1;
     this.gColDepartment.Width        = 120;
     //
     // gcolClientName
     //
     this.gcolClientName.Caption   = "Client Name";
     this.gcolClientName.FieldName = "Client";
     this.gcolClientName.Name      = "gcolClientName";
     this.gcolClientName.OptionsColumn.AllowEdit = false;
     this.gcolClientName.OptionsColumn.ReadOnly  = true;
     this.gcolClientName.Visible      = true;
     this.gcolClientName.VisibleIndex = 0;
     this.gcolClientName.Width        = 120;
     //
     // gcolContact1
     //
     this.gcolContact1.Caption   = "Contact 1 Name";
     this.gcolContact1.FieldName = "Contact1";
     this.gcolContact1.Name      = "gcolContact1";
     this.gcolContact1.OptionsColumn.AllowEdit = false;
     this.gcolContact1.OptionsColumn.ReadOnly  = true;
     this.gcolContact1.Visible      = true;
     this.gcolContact1.VisibleIndex = 3;
     this.gcolContact1.Width        = 120;
     //
     // gcolContact2
     //
     this.gcolContact2.Caption   = "Contact 2 Name";
     this.gcolContact2.FieldName = "Contact2";
     this.gcolContact2.Name      = "gcolContact2";
     this.gcolContact2.OptionsColumn.AllowEdit = false;
     this.gcolContact2.OptionsColumn.ReadOnly  = true;
     this.gcolContact2.Visible      = true;
     this.gcolContact2.VisibleIndex = 4;
     this.gcolContact2.Width        = 120;
     //
     // gcolReportAttendence
     //
     this.gcolReportAttendence.Caption   = "Report Attendence";
     this.gcolReportAttendence.FieldName = "ReportAttendence";
     this.gcolReportAttendence.Name      = "gcolReportAttendence";
     this.gcolReportAttendence.OptionsColumn.AllowEdit = false;
     this.gcolReportAttendence.OptionsColumn.ReadOnly  = true;
     this.gcolReportAttendence.Width = 88;
     //
     // gcolTestIniEventID
     //
     this.gcolTestIniEventID.Caption   = "Initial EventID";
     this.gcolTestIniEventID.FieldName = "TestInitialEventID";
     this.gcolTestIniEventID.Name      = "gcolTestIniEventID";
     this.gcolTestIniEventID.OptionsColumn.AllowEdit = false;
     this.gcolTestIniEventID.OptionsColumn.ReadOnly  = true;
     //
     // gColTestMidEventID
     //
     this.gColTestMidEventID.Caption   = "Mid-term EventID";
     this.gColTestMidEventID.FieldName = "TestMidTermEventID";
     this.gColTestMidEventID.Name      = "gColTestMidEventID";
     this.gColTestMidEventID.OptionsColumn.AllowEdit = false;
     this.gColTestMidEventID.OptionsColumn.ReadOnly  = true;
     //
     // gColTestFinalEventID
     //
     this.gColTestFinalEventID.Caption   = "Final EventID";
     this.gColTestFinalEventID.FieldName = "TestFinalEventID";
     this.gColTestFinalEventID.Name      = "gColTestFinalEventID";
     this.gColTestFinalEventID.OptionsColumn.AllowEdit = false;
     this.gColTestFinalEventID.OptionsColumn.ReadOnly  = true;
     //
     // gcolTestIniForm
     //
     this.gcolTestIniForm.Caption   = "Initial Form";
     this.gcolTestIniForm.FieldName = "TestInitialForm";
     this.gcolTestIniForm.Name      = "gcolTestIniForm";
     this.gcolTestIniForm.OptionsColumn.AllowEdit = false;
     this.gcolTestIniForm.OptionsColumn.ReadOnly  = true;
     //
     // gColTestMidForm
     //
     this.gColTestMidForm.Caption   = "Mid-term Form";
     this.gColTestMidForm.FieldName = "TestMidTermForm";
     this.gColTestMidForm.Name      = "gColTestMidForm";
     this.gColTestMidForm.OptionsColumn.AllowEdit = false;
     this.gColTestMidForm.OptionsColumn.ReadOnly  = true;
     //
     // gcolTestFinalForm
     //
     this.gcolTestFinalForm.Caption   = "Final Form";
     this.gcolTestFinalForm.FieldName = "TestFinalForm";
     this.gcolTestFinalForm.Name      = "gcolTestFinalForm";
     this.gcolTestFinalForm.OptionsColumn.AllowEdit = false;
     this.gcolTestFinalForm.OptionsColumn.ReadOnly  = true;
     //
     // gcolEvaluationMidForm
     //
     this.gcolEvaluationMidForm.Caption   = "Eval. Mid-term Form";
     this.gcolEvaluationMidForm.FieldName = "EvaluationMidTermForm";
     this.gcolEvaluationMidForm.Name      = "gcolEvaluationMidForm";
     this.gcolEvaluationMidForm.OptionsColumn.AllowEdit = false;
     this.gcolEvaluationMidForm.OptionsColumn.ReadOnly  = true;
     //
     // gcolEvaluationFinalForm
     //
     this.gcolEvaluationFinalForm.Caption   = "Eval. Final Form";
     this.gcolEvaluationFinalForm.FieldName = "EvaluationFinalForm";
     this.gcolEvaluationFinalForm.Name      = "gcolEvaluationFinalForm";
     this.gcolEvaluationFinalForm.OptionsColumn.AllowEdit = false;
     this.gcolEvaluationFinalForm.OptionsColumn.ReadOnly  = true;
     //
     // gcolQuestMidForm
     //
     this.gcolQuestMidForm.Caption   = "Questionnaire Mid-term Form";
     this.gcolQuestMidForm.FieldName = "QuestionaireMidtermForm";
     this.gcolQuestMidForm.Name      = "gcolQuestMidForm";
     this.gcolQuestMidForm.OptionsColumn.AllowEdit = false;
     this.gcolQuestMidForm.OptionsColumn.ReadOnly  = true;
     //
     // gcolQuestFinalForm
     //
     this.gcolQuestFinalForm.Caption   = "Questionnaire Final Form";
     this.gcolQuestFinalForm.FieldName = "QuestionaireFinalForm";
     this.gcolQuestFinalForm.Name      = "gcolQuestFinalForm";
     this.gcolQuestFinalForm.OptionsColumn.AllowEdit = false;
     this.gcolQuestFinalForm.OptionsColumn.ReadOnly  = true;
     //
     // gcolProgramStatus
     //
     this.gcolProgramStatus.Caption   = "Status";
     this.gcolProgramStatus.FieldName = "ProgramStatus";
     this.gcolProgramStatus.Name      = "gcolProgramStatus";
     this.gcolProgramStatus.OptionsColumn.AllowEdit = false;
     this.gcolProgramStatus.OptionsColumn.ReadOnly  = true;
     this.gcolProgramStatus.Visible      = true;
     this.gcolProgramStatus.VisibleIndex = 6;
     this.gcolProgramStatus.Width        = 72;
     //
     // gcolDescription
     //
     this.gcolDescription.Caption   = "Description";
     this.gcolDescription.FieldName = "Description";
     this.gcolDescription.Name      = "gcolDescription";
     this.gcolDescription.OptionsColumn.AllowEdit = false;
     this.gcolDescription.OptionsColumn.ReadOnly  = true;
     this.gcolDescription.Width = 168;
     //
     // gcolDateLastLogin
     //
     this.gcolDateLastLogin.Caption   = "Date Last Login";
     this.gcolDateLastLogin.FieldName = "DatelastLogin";
     this.gcolDateLastLogin.Name      = "gcolDateLastLogin";
     this.gcolDateLastLogin.OptionsColumn.AllowEdit = false;
     this.gcolDateLastLogin.OptionsColumn.ReadOnly  = true;
     //
     // gcolDateCreated
     //
     this.gcolDateCreated.Caption   = "Date Created";
     this.gcolDateCreated.FieldName = "DateCreated";
     this.gcolDateCreated.Name      = "gcolDateCreated";
     this.gcolDateCreated.OptionsColumn.AllowEdit = false;
     this.gcolDateCreated.OptionsColumn.ReadOnly  = true;
     //
     // gcolLastModified
     //
     this.gcolLastModified.Caption   = "Date Last Modified";
     this.gcolLastModified.FieldName = "DateLastModified";
     this.gcolLastModified.Name      = "gcolLastModified";
     this.gcolLastModified.OptionsColumn.AllowEdit = false;
     this.gcolLastModified.OptionsColumn.ReadOnly  = true;
     //
     // gcolLastModifiedByUser
     //
     this.gcolLastModifiedByUser.Caption   = "Last Modified User ID";
     this.gcolLastModifiedByUser.FieldName = "LastModifiedByUserID";
     this.gcolLastModifiedByUser.Name      = "gcolLastModifiedByUser";
     this.gcolLastModifiedByUser.OptionsColumn.AllowEdit = false;
     this.gcolLastModifiedByUser.OptionsColumn.ReadOnly  = true;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption   = "Billing";
     this.gridColumn1.FieldName = "Billing";
     this.gridColumn1.Name      = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.ReadOnly  = true;
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 5;
     //
     // frmProgBrw
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(8, 20);
     this.ClientSize        = new System.Drawing.Size(672, 366);
     this.Controls.Add(this.pnlBody);
     this.Font          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MinimizeBox   = false;
     this.Name          = "frmProgBrw";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Program...";
     this.Load         += new System.EventHandler(this.frmProgBrw_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     this.pnl_Find.ResumeLayout(false);
     this.pnl_Find.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.pnlBody.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.pnl_SpeedSearch.ResumeLayout(false);
     this.pnl_SpeedSearch1.ResumeLayout(false);
     this.pnl_SpeedSearch1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdProgram)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwProgram)).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();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition1 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition2 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition3 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition4 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition5 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition6 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition7 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition8 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition9 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition10 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition11 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition12 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition13 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition14 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition15 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition pivotGridStyleFormatCondition16 = new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition();
     this.calcAPOSVsTargetDay = new DevExpress.XtraPivotGrid.PivotGridField();
     this.calcAPOSVsTargetMonth = new DevExpress.XtraPivotGrid.PivotGridField();
     this.calcINVVsTargetDay = new DevExpress.XtraPivotGrid.PivotGridField();
     this.calcINVVsTargetMonth = new DevExpress.XtraPivotGrid.PivotGridField();
     this.calcNPSVsTargetDay = new DevExpress.XtraPivotGrid.PivotGridField();
     this.calcNPSVsTargetMonth = new DevExpress.XtraPivotGrid.PivotGridField();
     this.calcDSVsTargetDay = new DevExpress.XtraPivotGrid.PivotGridField();
     this.calcDSVsTargetMonth = new DevExpress.XtraPivotGrid.PivotGridField();
     this.repositoryItemTextEditPers = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemTextEditf2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.popupMenuMain = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barManagerMain = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barHeaderItem1 = new DevExpress.XtraBars.BarHeaderItem();
     this.bbiStartDate = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.barHeaderItem2 = new DevExpress.XtraBars.BarHeaderItem();
     this.bbiEndDate = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.bbiGetData = new DevExpress.XtraBars.BarLargeButtonItem();
     this.bbiExport = 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.repositoryItemDateEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.pivotGridControlMain = new DevExpress.XtraPivotGrid.PivotGridControl();
     this.pro0001BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsNMQry = new NestleICSales.DataSources.dsQry();
     this.fieldRouteNumber1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldRouteName1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldSupervisor1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldRouteBrand1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldPlantSalesDistrict1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldPlantName1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldPlantBaseName1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldDistributionChannel1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldAPOSLD = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldTargetAPOSDay = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldAPOS = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldTargetAPOS = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldINVLD = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldTargetINVDay = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldINV = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldTargetINV = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldNPSLD = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldTargetNPSDay = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldNPS = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldTargetNPS = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldDSLD1 = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldTargetDSDay = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldDS = new DevExpress.XtraPivotGrid.PivotGridField();
     this.fieldTargetDS = new DevExpress.XtraPivotGrid.PivotGridField();
     this.dxValidationProviderMain = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.pro_0001TableAdapter = new NestleICSales.DataSources.dsQryTableAdapters.Pro_0001TableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditPers)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditf2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pivotGridControlMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pro0001BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsNMQry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).BeginInit();
     this.SuspendLayout();
     //
     // calcAPOSVsTargetDay
     //
     this.calcAPOSVsTargetDay.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.calcAPOSVsTargetDay.AreaIndex = 2;
     this.calcAPOSVsTargetDay.Caption = "APOS Vs Target LD";
     this.calcAPOSVsTargetDay.EmptyCellText = "0";
     this.calcAPOSVsTargetDay.EmptyValueText = "0";
     this.calcAPOSVsTargetDay.GrandTotalCellFormat.FormatString = "p";
     this.calcAPOSVsTargetDay.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcAPOSVsTargetDay.Name = "calcAPOSVsTargetDay";
     this.calcAPOSVsTargetDay.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Average;
     this.calcAPOSVsTargetDay.UnboundExpression = "([APOSLD] * 1.0) / [TargetAPOSDay]";
     this.calcAPOSVsTargetDay.UnboundFieldName = "calcAPOSVsTarget";
     this.calcAPOSVsTargetDay.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     //
     // calcAPOSVsTargetMonth
     //
     this.calcAPOSVsTargetMonth.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.calcAPOSVsTargetMonth.AreaIndex = 5;
     this.calcAPOSVsTargetMonth.Caption = "APOS Vs Target MTD";
     this.calcAPOSVsTargetMonth.EmptyCellText = "0";
     this.calcAPOSVsTargetMonth.EmptyValueText = "0";
     this.calcAPOSVsTargetMonth.GrandTotalCellFormat.FormatString = "p";
     this.calcAPOSVsTargetMonth.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcAPOSVsTargetMonth.Name = "calcAPOSVsTargetMonth";
     this.calcAPOSVsTargetMonth.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Average;
     this.calcAPOSVsTargetMonth.UnboundExpression = "([APOS] * 1.0) / [TargetAPOS]";
     this.calcAPOSVsTargetMonth.UnboundFieldName = "calcAPOSVsTargetMonth";
     this.calcAPOSVsTargetMonth.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     //
     // calcINVVsTargetDay
     //
     this.calcINVVsTargetDay.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.calcINVVsTargetDay.AreaIndex = 8;
     this.calcINVVsTargetDay.Caption = "INV Vs Target LD";
     this.calcINVVsTargetDay.EmptyCellText = "0";
     this.calcINVVsTargetDay.EmptyValueText = "0";
     this.calcINVVsTargetDay.GrandTotalCellFormat.FormatString = "p";
     this.calcINVVsTargetDay.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcINVVsTargetDay.Name = "calcINVVsTargetDay";
     this.calcINVVsTargetDay.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Average;
     this.calcINVVsTargetDay.UnboundExpression = "([INVLD] * 1.0) / [TargetINVDay]";
     this.calcINVVsTargetDay.UnboundFieldName = "calcINVVsTargetDay";
     this.calcINVVsTargetDay.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     //
     // calcINVVsTargetMonth
     //
     this.calcINVVsTargetMonth.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.calcINVVsTargetMonth.AreaIndex = 11;
     this.calcINVVsTargetMonth.Caption = "INV Vs Target MTD";
     this.calcINVVsTargetMonth.EmptyCellText = "0";
     this.calcINVVsTargetMonth.EmptyValueText = "0";
     this.calcINVVsTargetMonth.GrandTotalCellFormat.FormatString = "p";
     this.calcINVVsTargetMonth.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcINVVsTargetMonth.Name = "calcINVVsTargetMonth";
     this.calcINVVsTargetMonth.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Average;
     this.calcINVVsTargetMonth.UnboundExpression = "([INV] * 1.0) / [TargetINV]";
     this.calcINVVsTargetMonth.UnboundFieldName = "calcINVVsTargetMonth";
     this.calcINVVsTargetMonth.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     //
     // calcNPSVsTargetDay
     //
     this.calcNPSVsTargetDay.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.calcNPSVsTargetDay.AreaIndex = 14;
     this.calcNPSVsTargetDay.Caption = "NPS Vs Target LD";
     this.calcNPSVsTargetDay.EmptyCellText = "0";
     this.calcNPSVsTargetDay.EmptyValueText = "0";
     this.calcNPSVsTargetDay.GrandTotalCellFormat.FormatString = "p";
     this.calcNPSVsTargetDay.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcNPSVsTargetDay.Name = "calcNPSVsTargetDay";
     this.calcNPSVsTargetDay.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Average;
     this.calcNPSVsTargetDay.UnboundExpression = "([NPSLD] * 1.0) / [TargetNPSDay]";
     this.calcNPSVsTargetDay.UnboundFieldName = "calcNPSVsTargetDay";
     this.calcNPSVsTargetDay.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     //
     // calcNPSVsTargetMonth
     //
     this.calcNPSVsTargetMonth.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.calcNPSVsTargetMonth.AreaIndex = 17;
     this.calcNPSVsTargetMonth.Caption = "NPS Vs Target MTD";
     this.calcNPSVsTargetMonth.EmptyCellText = "0";
     this.calcNPSVsTargetMonth.EmptyValueText = "0";
     this.calcNPSVsTargetMonth.GrandTotalCellFormat.FormatString = "p";
     this.calcNPSVsTargetMonth.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcNPSVsTargetMonth.Name = "calcNPSVsTargetMonth";
     this.calcNPSVsTargetMonth.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Average;
     this.calcNPSVsTargetMonth.UnboundExpression = "([NPS] * 1.0) / [TargetNPS]";
     this.calcNPSVsTargetMonth.UnboundFieldName = "calcNPSVsTargetMonth";
     this.calcNPSVsTargetMonth.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     //
     // calcDSVsTargetDay
     //
     this.calcDSVsTargetDay.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.calcDSVsTargetDay.AreaIndex = 20;
     this.calcDSVsTargetDay.Caption = "DS Vs Target LD";
     this.calcDSVsTargetDay.EmptyCellText = "0";
     this.calcDSVsTargetDay.EmptyValueText = "0";
     this.calcDSVsTargetDay.GrandTotalCellFormat.FormatString = "p";
     this.calcDSVsTargetDay.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcDSVsTargetDay.Name = "calcDSVsTargetDay";
     this.calcDSVsTargetDay.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Average;
     this.calcDSVsTargetDay.UnboundExpression = "([DSLD] * 1.0) / [TargetDSDay]";
     this.calcDSVsTargetDay.UnboundFieldName = "calcDSVsTargetDay";
     this.calcDSVsTargetDay.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     //
     // calcDSVsTargetMonth
     //
     this.calcDSVsTargetMonth.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.calcDSVsTargetMonth.AreaIndex = 23;
     this.calcDSVsTargetMonth.Caption = "DS Vs Target MTD";
     this.calcDSVsTargetMonth.EmptyCellText = "0";
     this.calcDSVsTargetMonth.EmptyValueText = "0";
     this.calcDSVsTargetMonth.GrandTotalCellFormat.FormatString = "p";
     this.calcDSVsTargetMonth.GrandTotalCellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.calcDSVsTargetMonth.Name = "calcDSVsTargetMonth";
     this.calcDSVsTargetMonth.SummaryType = DevExpress.Data.PivotGrid.PivotSummaryType.Average;
     this.calcDSVsTargetMonth.UnboundExpression = "([DS] * 1.0) / [TargetDS]";
     this.calcDSVsTargetMonth.UnboundFieldName = "calcDSVsTargetMonth";
     this.calcDSVsTargetMonth.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     //
     // repositoryItemTextEditPers
     //
     this.repositoryItemTextEditPers.AutoHeight = false;
     this.repositoryItemTextEditPers.EditFormat.FormatString = "P1";
     this.repositoryItemTextEditPers.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditPers.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.DisplayText;
     this.repositoryItemTextEditPers.Mask.EditMask = "P1";
     this.repositoryItemTextEditPers.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditPers.Mask.UseMaskAsDisplayFormat = true;
     this.repositoryItemTextEditPers.Name = "repositoryItemTextEditPers";
     //
     // repositoryItemTextEditf2
     //
     this.repositoryItemTextEditf2.AutoHeight = false;
     this.repositoryItemTextEditf2.DisplayFormat.FormatString = "f2";
     this.repositoryItemTextEditf2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditf2.Mask.EditMask = "f2";
     this.repositoryItemTextEditf2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditf2.Name = "repositoryItemTextEditf2";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // popupMenuMain
     //
     this.popupMenuMain.Manager = this.barManagerMain;
     this.popupMenuMain.Name = "popupMenuMain";
     //
     // barManagerMain
     //
     this.barManagerMain.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManagerMain.DockControls.Add(this.barDockControlTop);
     this.barManagerMain.DockControls.Add(this.barDockControlBottom);
     this.barManagerMain.DockControls.Add(this.barDockControlLeft);
     this.barManagerMain.DockControls.Add(this.barDockControlRight);
     this.barManagerMain.Form = this;
     this.barManagerMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.bbiExport,
     this.bbiStartDate,
     this.barHeaderItem1,
     this.bbiGetData,
     this.barHeaderItem2,
     this.bbiEndDate});
     this.barManagerMain.MaxItemId = 12;
     this.barManagerMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemDateEdit1,
     this.repositoryItemDateEdit2,
     this.repositoryItemDateEdit3});
     //
     // bar1
     //
     this.bar1.BarName = "Main";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barHeaderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiStartDate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barHeaderItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiEndDate),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.bbiGetData, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.bbiExport)});
     this.bar1.Text = "Custom 2";
     //
     // barHeaderItem1
     //
     this.barHeaderItem1.Caption = "Start Date";
     this.barHeaderItem1.Id = 3;
     this.barHeaderItem1.Name = "barHeaderItem1";
     //
     // bbiStartDate
     //
     this.bbiStartDate.Caption = "Start Date";
     this.bbiStartDate.Edit = this.repositoryItemDateEdit1;
     this.bbiStartDate.Id = 2;
     this.bbiStartDate.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D1));
     this.bbiStartDate.Name = "bbiStartDate";
     this.bbiStartDate.Width = 120;
     //
     // 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.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
     //
     // barHeaderItem2
     //
     this.barHeaderItem2.Caption = "EndDate";
     this.barHeaderItem2.Id = 10;
     this.barHeaderItem2.Name = "barHeaderItem2";
     //
     // bbiEndDate
     //
     this.bbiEndDate.Caption = "End Date";
     this.bbiEndDate.Edit = this.repositoryItemDateEdit3;
     this.bbiEndDate.Id = 11;
     this.bbiEndDate.Name = "bbiEndDate";
     this.bbiEndDate.Width = 120;
     //
     // repositoryItemDateEdit3
     //
     this.repositoryItemDateEdit3.AutoHeight = false;
     this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
     //
     // bbiGetData
     //
     this.bbiGetData.Caption = "Get Data";
     this.bbiGetData.CaptionAlignment = DevExpress.XtraBars.BarItemCaptionAlignment.Right;
     this.bbiGetData.Glyph = global::NestleICSales.Properties.Resources.apply_16x16;
     this.bbiGetData.Id = 9;
     this.bbiGetData.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.G));
     this.bbiGetData.Name = "bbiGetData";
     this.bbiGetData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiGetData_ItemClick);
     //
     // bbiExport
     //
     this.bbiExport.Caption = "Export";
     this.bbiExport.Glyph = global::NestleICSales.Properties.Resources.Export;
     this.bbiExport.Id = 1;
     this.bbiExport.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E));
     this.bbiExport.Name = "bbiExport";
     this.bbiExport.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiExport_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(1132, 31);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 311);
     this.barDockControlBottom.Size = new System.Drawing.Size(1132, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 31);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 280);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1132, 31);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 280);
     //
     // 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.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit2.Name = "repositoryItemDateEdit2";
     //
     // pivotGridControlMain
     //
     this.pivotGridControlMain.DataSource = this.pro0001BindingSource;
     this.pivotGridControlMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pivotGridControlMain.Fields.AddRange(new DevExpress.XtraPivotGrid.PivotGridField[] {
     this.fieldRouteNumber1,
     this.fieldRouteName1,
     this.fieldSupervisor1,
     this.fieldRouteBrand1,
     this.fieldPlantSalesDistrict1,
     this.fieldPlantName1,
     this.fieldPlantBaseName1,
     this.fieldDistributionChannel1,
     this.fieldAPOSLD,
     this.fieldTargetAPOSDay,
     this.fieldAPOS,
     this.fieldTargetAPOS,
     this.fieldINVLD,
     this.fieldTargetINVDay,
     this.fieldINV,
     this.fieldTargetINV,
     this.fieldNPSLD,
     this.fieldTargetNPSDay,
     this.fieldNPS,
     this.fieldTargetNPS,
     this.fieldDSLD1,
     this.fieldTargetDSDay,
     this.fieldDS,
     this.fieldTargetDS,
     this.calcAPOSVsTargetDay,
     this.calcAPOSVsTargetMonth,
     this.calcINVVsTargetDay,
     this.calcINVVsTargetMonth,
     this.calcNPSVsTargetDay,
     this.calcNPSVsTargetMonth,
     this.calcDSVsTargetDay,
     this.calcDSVsTargetMonth});
     pivotGridStyleFormatCondition1.Appearance.BackColor = System.Drawing.Color.Red;
     pivotGridStyleFormatCondition1.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition1.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Less;
     pivotGridStyleFormatCondition1.Field = this.calcAPOSVsTargetDay;
     pivotGridStyleFormatCondition1.FieldName = "calcAPOSVsTargetDay";
     pivotGridStyleFormatCondition1.Value1 = "1";
     pivotGridStyleFormatCondition2.Appearance.BackColor = System.Drawing.Color.Green;
     pivotGridStyleFormatCondition2.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition2.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.GreaterOrEqual;
     pivotGridStyleFormatCondition2.Field = this.calcAPOSVsTargetDay;
     pivotGridStyleFormatCondition2.FieldName = "calcAPOSVsTargetDay";
     pivotGridStyleFormatCondition2.Value1 = "1";
     pivotGridStyleFormatCondition3.Appearance.BackColor = System.Drawing.Color.Red;
     pivotGridStyleFormatCondition3.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition3.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition3.Condition = DevExpress.XtraGrid.FormatConditionEnum.Less;
     pivotGridStyleFormatCondition3.Field = this.calcAPOSVsTargetMonth;
     pivotGridStyleFormatCondition3.FieldName = "calcAPOSVsTargetMonth";
     pivotGridStyleFormatCondition3.Value1 = "1";
     pivotGridStyleFormatCondition4.Appearance.BackColor = System.Drawing.Color.Green;
     pivotGridStyleFormatCondition4.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition4.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition4.Condition = DevExpress.XtraGrid.FormatConditionEnum.GreaterOrEqual;
     pivotGridStyleFormatCondition4.Field = this.calcAPOSVsTargetMonth;
     pivotGridStyleFormatCondition4.FieldName = "calcAPOSVsTargetMonth";
     pivotGridStyleFormatCondition4.Value1 = "1";
     pivotGridStyleFormatCondition5.Appearance.BackColor = System.Drawing.Color.Red;
     pivotGridStyleFormatCondition5.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition5.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition5.Condition = DevExpress.XtraGrid.FormatConditionEnum.Less;
     pivotGridStyleFormatCondition5.Field = this.calcINVVsTargetDay;
     pivotGridStyleFormatCondition5.FieldName = "calcINVVsTargetDay";
     pivotGridStyleFormatCondition5.Value1 = "1";
     pivotGridStyleFormatCondition6.Appearance.BackColor = System.Drawing.Color.Green;
     pivotGridStyleFormatCondition6.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition6.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition6.Condition = DevExpress.XtraGrid.FormatConditionEnum.GreaterOrEqual;
     pivotGridStyleFormatCondition6.Field = this.calcINVVsTargetDay;
     pivotGridStyleFormatCondition6.FieldName = "calcINVVsTargetDay";
     pivotGridStyleFormatCondition6.Value1 = "1";
     pivotGridStyleFormatCondition7.Appearance.BackColor = System.Drawing.Color.Red;
     pivotGridStyleFormatCondition7.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition7.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition7.Condition = DevExpress.XtraGrid.FormatConditionEnum.Less;
     pivotGridStyleFormatCondition7.Field = this.calcINVVsTargetMonth;
     pivotGridStyleFormatCondition7.FieldName = "calcINVVsTargetMonth";
     pivotGridStyleFormatCondition7.Value1 = "1";
     pivotGridStyleFormatCondition8.Appearance.BackColor = System.Drawing.Color.Green;
     pivotGridStyleFormatCondition8.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition8.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition8.Condition = DevExpress.XtraGrid.FormatConditionEnum.GreaterOrEqual;
     pivotGridStyleFormatCondition8.Field = this.calcINVVsTargetMonth;
     pivotGridStyleFormatCondition8.FieldName = "calcINVVsTargetMonth";
     pivotGridStyleFormatCondition8.Value1 = "1";
     pivotGridStyleFormatCondition9.Appearance.BackColor = System.Drawing.Color.Red;
     pivotGridStyleFormatCondition9.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition9.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition9.Condition = DevExpress.XtraGrid.FormatConditionEnum.Less;
     pivotGridStyleFormatCondition9.Field = this.calcNPSVsTargetDay;
     pivotGridStyleFormatCondition9.FieldName = "calcNPSVsTargetDay";
     pivotGridStyleFormatCondition9.Value1 = "1";
     pivotGridStyleFormatCondition10.Appearance.BackColor = System.Drawing.Color.Green;
     pivotGridStyleFormatCondition10.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition10.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition10.Condition = DevExpress.XtraGrid.FormatConditionEnum.GreaterOrEqual;
     pivotGridStyleFormatCondition10.Field = this.calcNPSVsTargetDay;
     pivotGridStyleFormatCondition10.FieldName = "calcNPSVsTargetDay";
     pivotGridStyleFormatCondition10.Value1 = "1";
     pivotGridStyleFormatCondition11.Appearance.BackColor = System.Drawing.Color.Red;
     pivotGridStyleFormatCondition11.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition11.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition11.Condition = DevExpress.XtraGrid.FormatConditionEnum.Less;
     pivotGridStyleFormatCondition11.Field = this.calcNPSVsTargetMonth;
     pivotGridStyleFormatCondition11.FieldName = "calcNPSVsTargetMonth";
     pivotGridStyleFormatCondition11.Value1 = "1";
     pivotGridStyleFormatCondition12.Appearance.BackColor = System.Drawing.Color.Green;
     pivotGridStyleFormatCondition12.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition12.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition12.Condition = DevExpress.XtraGrid.FormatConditionEnum.GreaterOrEqual;
     pivotGridStyleFormatCondition12.Field = this.calcNPSVsTargetMonth;
     pivotGridStyleFormatCondition12.FieldName = "calcNPSVsTargetMonth";
     pivotGridStyleFormatCondition12.Value1 = "1";
     pivotGridStyleFormatCondition13.Appearance.BackColor = System.Drawing.Color.Red;
     pivotGridStyleFormatCondition13.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition13.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition13.Condition = DevExpress.XtraGrid.FormatConditionEnum.Less;
     pivotGridStyleFormatCondition13.Field = this.calcDSVsTargetDay;
     pivotGridStyleFormatCondition13.FieldName = "calcDSVsTargetDay";
     pivotGridStyleFormatCondition13.Value1 = "1";
     pivotGridStyleFormatCondition14.Appearance.BackColor = System.Drawing.Color.Green;
     pivotGridStyleFormatCondition14.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition14.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition14.Condition = DevExpress.XtraGrid.FormatConditionEnum.GreaterOrEqual;
     pivotGridStyleFormatCondition14.Field = this.calcDSVsTargetDay;
     pivotGridStyleFormatCondition14.FieldName = "calcDSVsTargetDay";
     pivotGridStyleFormatCondition14.Value1 = "1";
     pivotGridStyleFormatCondition15.Appearance.BackColor = System.Drawing.Color.Red;
     pivotGridStyleFormatCondition15.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition15.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition15.Condition = DevExpress.XtraGrid.FormatConditionEnum.Less;
     pivotGridStyleFormatCondition15.Field = this.calcDSVsTargetMonth;
     pivotGridStyleFormatCondition15.FieldName = "calcDSVsTargetMonth";
     pivotGridStyleFormatCondition15.Value1 = "1";
     pivotGridStyleFormatCondition16.Appearance.BackColor = System.Drawing.Color.Green;
     pivotGridStyleFormatCondition16.Appearance.BackColor2 = System.Drawing.Color.White;
     pivotGridStyleFormatCondition16.Appearance.Options.UseBackColor = true;
     pivotGridStyleFormatCondition16.Condition = DevExpress.XtraGrid.FormatConditionEnum.GreaterOrEqual;
     pivotGridStyleFormatCondition16.Field = this.calcDSVsTargetMonth;
     pivotGridStyleFormatCondition16.FieldName = "calcDSVsTargetMonth";
     pivotGridStyleFormatCondition16.Value1 = "1";
     this.pivotGridControlMain.FormatConditions.AddRange(new DevExpress.XtraPivotGrid.PivotGridStyleFormatCondition[] {
     pivotGridStyleFormatCondition1,
     pivotGridStyleFormatCondition2,
     pivotGridStyleFormatCondition3,
     pivotGridStyleFormatCondition4,
     pivotGridStyleFormatCondition5,
     pivotGridStyleFormatCondition6,
     pivotGridStyleFormatCondition7,
     pivotGridStyleFormatCondition8,
     pivotGridStyleFormatCondition9,
     pivotGridStyleFormatCondition10,
     pivotGridStyleFormatCondition11,
     pivotGridStyleFormatCondition12,
     pivotGridStyleFormatCondition13,
     pivotGridStyleFormatCondition14,
     pivotGridStyleFormatCondition15,
     pivotGridStyleFormatCondition16});
     this.pivotGridControlMain.Location = new System.Drawing.Point(0, 31);
     this.pivotGridControlMain.Name = "pivotGridControlMain";
     this.pivotGridControlMain.OptionsPrint.PrintColumnHeaders = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridControlMain.OptionsPrint.PrintDataHeaders = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridControlMain.OptionsPrint.PrintFilterHeaders = DevExpress.Utils.DefaultBoolean.False;
     this.pivotGridControlMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEditPers});
     this.pivotGridControlMain.Size = new System.Drawing.Size(1132, 280);
     this.pivotGridControlMain.TabIndex = 9;
     //
     // pro0001BindingSource
     //
     this.pro0001BindingSource.DataMember = "Pro_0001";
     this.pro0001BindingSource.DataSource = this.dsNMQry;
     //
     // dsNMQry
     //
     this.dsNMQry.DataSetName = "dsNMQry";
     this.dsNMQry.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // fieldRouteNumber1
     //
     this.fieldRouteNumber1.AreaIndex = 0;
     this.fieldRouteNumber1.Caption = "Route Number";
     this.fieldRouteNumber1.FieldName = "RouteNumber";
     this.fieldRouteNumber1.Name = "fieldRouteNumber1";
     //
     // fieldRouteName1
     //
     this.fieldRouteName1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.fieldRouteName1.AreaIndex = 1;
     this.fieldRouteName1.Caption = "Route Name";
     this.fieldRouteName1.FieldName = "RouteName";
     this.fieldRouteName1.Name = "fieldRouteName1";
     //
     // fieldSupervisor1
     //
     this.fieldSupervisor1.Area = DevExpress.XtraPivotGrid.PivotArea.RowArea;
     this.fieldSupervisor1.AreaIndex = 0;
     this.fieldSupervisor1.Caption = "Supervisor";
     this.fieldSupervisor1.FieldName = "Supervisor";
     this.fieldSupervisor1.Name = "fieldSupervisor1";
     //
     // fieldRouteBrand1
     //
     this.fieldRouteBrand1.AreaIndex = 1;
     this.fieldRouteBrand1.Caption = "Route Brand";
     this.fieldRouteBrand1.FieldName = "RouteBrand";
     this.fieldRouteBrand1.Name = "fieldRouteBrand1";
     //
     // fieldPlantSalesDistrict1
     //
     this.fieldPlantSalesDistrict1.AreaIndex = 2;
     this.fieldPlantSalesDistrict1.Caption = "Plant Sales District";
     this.fieldPlantSalesDistrict1.FieldName = "PlantSalesDistrict";
     this.fieldPlantSalesDistrict1.Name = "fieldPlantSalesDistrict1";
     //
     // fieldPlantName1
     //
     this.fieldPlantName1.AreaIndex = 3;
     this.fieldPlantName1.Caption = "Plant Name";
     this.fieldPlantName1.FieldName = "PlantName";
     this.fieldPlantName1.Name = "fieldPlantName1";
     //
     // fieldPlantBaseName1
     //
     this.fieldPlantBaseName1.AreaIndex = 4;
     this.fieldPlantBaseName1.Caption = "Plant Base Name";
     this.fieldPlantBaseName1.FieldName = "PlantBaseName";
     this.fieldPlantBaseName1.Name = "fieldPlantBaseName1";
     //
     // fieldDistributionChannel1
     //
     this.fieldDistributionChannel1.AreaIndex = 5;
     this.fieldDistributionChannel1.Caption = "Distribution Channel";
     this.fieldDistributionChannel1.FieldName = "DistributionChannel";
     this.fieldDistributionChannel1.Name = "fieldDistributionChannel1";
     //
     // fieldAPOSLD
     //
     this.fieldAPOSLD.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldAPOSLD.AreaIndex = 0;
     this.fieldAPOSLD.Caption = "APOS LD";
     this.fieldAPOSLD.CellFormat.FormatString = "f2";
     this.fieldAPOSLD.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldAPOSLD.EmptyCellText = "0";
     this.fieldAPOSLD.EmptyValueText = "0";
     this.fieldAPOSLD.FieldName = "APOSLD";
     this.fieldAPOSLD.Name = "fieldAPOSLD";
     //
     // fieldTargetAPOSDay
     //
     this.fieldTargetAPOSDay.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldTargetAPOSDay.AreaIndex = 1;
     this.fieldTargetAPOSDay.Caption = "APOS Target LD";
     this.fieldTargetAPOSDay.CellFormat.FormatString = "f2";
     this.fieldTargetAPOSDay.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldTargetAPOSDay.EmptyCellText = "0";
     this.fieldTargetAPOSDay.EmptyValueText = "0";
     this.fieldTargetAPOSDay.FieldName = "TargetAPOSDay";
     this.fieldTargetAPOSDay.Name = "fieldTargetAPOSDay";
     //
     // fieldAPOS
     //
     this.fieldAPOS.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldAPOS.AreaIndex = 3;
     this.fieldAPOS.Caption = "APOS MTD";
     this.fieldAPOS.CellFormat.FormatString = "f2";
     this.fieldAPOS.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldAPOS.EmptyCellText = "0";
     this.fieldAPOS.EmptyValueText = "0";
     this.fieldAPOS.FieldName = "APOS";
     this.fieldAPOS.Name = "fieldAPOS";
     //
     // fieldTargetAPOS
     //
     this.fieldTargetAPOS.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldTargetAPOS.AreaIndex = 4;
     this.fieldTargetAPOS.Caption = "APOS Target MTD";
     this.fieldTargetAPOS.CellFormat.FormatString = "f2";
     this.fieldTargetAPOS.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldTargetAPOS.EmptyCellText = "0";
     this.fieldTargetAPOS.EmptyValueText = "0";
     this.fieldTargetAPOS.FieldName = "TargetAPOS";
     this.fieldTargetAPOS.Name = "fieldTargetAPOS";
     //
     // fieldINVLD
     //
     this.fieldINVLD.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldINVLD.AreaIndex = 6;
     this.fieldINVLD.Caption = "INV LD";
     this.fieldINVLD.CellFormat.FormatString = "f2";
     this.fieldINVLD.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldINVLD.EmptyCellText = "0";
     this.fieldINVLD.EmptyValueText = "0";
     this.fieldINVLD.FieldName = "INVLD";
     this.fieldINVLD.Name = "fieldINVLD";
     //
     // fieldTargetINVDay
     //
     this.fieldTargetINVDay.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldTargetINVDay.AreaIndex = 7;
     this.fieldTargetINVDay.Caption = "INV Target LD";
     this.fieldTargetINVDay.CellFormat.FormatString = "f2";
     this.fieldTargetINVDay.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldTargetINVDay.EmptyCellText = "0";
     this.fieldTargetINVDay.EmptyValueText = "0";
     this.fieldTargetINVDay.FieldName = "TargetINVDay";
     this.fieldTargetINVDay.Name = "fieldTargetINVDay";
     //
     // fieldINV
     //
     this.fieldINV.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldINV.AreaIndex = 9;
     this.fieldINV.Caption = "INV MTD";
     this.fieldINV.CellFormat.FormatString = "f2";
     this.fieldINV.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldINV.EmptyCellText = "0";
     this.fieldINV.EmptyValueText = "0";
     this.fieldINV.FieldName = "INV";
     this.fieldINV.Name = "fieldINV";
     //
     // fieldTargetINV
     //
     this.fieldTargetINV.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldTargetINV.AreaIndex = 10;
     this.fieldTargetINV.Caption = "INV Target MTD";
     this.fieldTargetINV.CellFormat.FormatString = "f2";
     this.fieldTargetINV.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldTargetINV.EmptyCellText = "0";
     this.fieldTargetINV.EmptyValueText = "0";
     this.fieldTargetINV.FieldName = "TargetINV";
     this.fieldTargetINV.Name = "fieldTargetINV";
     //
     // fieldNPSLD
     //
     this.fieldNPSLD.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldNPSLD.AreaIndex = 12;
     this.fieldNPSLD.Caption = "NPS LD";
     this.fieldNPSLD.CellFormat.FormatString = "f2";
     this.fieldNPSLD.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldNPSLD.EmptyCellText = "0";
     this.fieldNPSLD.EmptyValueText = "0";
     this.fieldNPSLD.FieldName = "NPSLD";
     this.fieldNPSLD.Name = "fieldNPSLD";
     //
     // fieldTargetNPSDay
     //
     this.fieldTargetNPSDay.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldTargetNPSDay.AreaIndex = 13;
     this.fieldTargetNPSDay.Caption = "NPS Target LD";
     this.fieldTargetNPSDay.CellFormat.FormatString = "f2";
     this.fieldTargetNPSDay.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldTargetNPSDay.EmptyCellText = "0";
     this.fieldTargetNPSDay.EmptyValueText = "0";
     this.fieldTargetNPSDay.FieldName = "TargetNPSDay";
     this.fieldTargetNPSDay.Name = "fieldTargetNPSDay";
     //
     // fieldNPS
     //
     this.fieldNPS.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldNPS.AreaIndex = 15;
     this.fieldNPS.Caption = "NPS MTD";
     this.fieldNPS.CellFormat.FormatString = "f2";
     this.fieldNPS.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldNPS.EmptyCellText = "0";
     this.fieldNPS.EmptyValueText = "0";
     this.fieldNPS.FieldName = "NPS";
     this.fieldNPS.Name = "fieldNPS";
     //
     // fieldTargetNPS
     //
     this.fieldTargetNPS.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldTargetNPS.AreaIndex = 16;
     this.fieldTargetNPS.Caption = "NPS Target MTD";
     this.fieldTargetNPS.CellFormat.FormatString = "f2";
     this.fieldTargetNPS.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldTargetNPS.EmptyCellText = "0";
     this.fieldTargetNPS.EmptyValueText = "0";
     this.fieldTargetNPS.FieldName = "TargetNPS";
     this.fieldTargetNPS.Name = "fieldTargetNPS";
     //
     // fieldDSLD1
     //
     this.fieldDSLD1.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldDSLD1.AreaIndex = 18;
     this.fieldDSLD1.Caption = "DS LD";
     this.fieldDSLD1.CellFormat.FormatString = "f2";
     this.fieldDSLD1.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldDSLD1.EmptyCellText = "0";
     this.fieldDSLD1.EmptyValueText = "0";
     this.fieldDSLD1.FieldName = "DSLD";
     this.fieldDSLD1.Name = "fieldDSLD1";
     //
     // fieldTargetDSDay
     //
     this.fieldTargetDSDay.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldTargetDSDay.AreaIndex = 19;
     this.fieldTargetDSDay.Caption = "DS Target LD";
     this.fieldTargetDSDay.CellFormat.FormatString = "f2";
     this.fieldTargetDSDay.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldTargetDSDay.EmptyCellText = "0";
     this.fieldTargetDSDay.EmptyValueText = "0";
     this.fieldTargetDSDay.FieldName = "TargetDSDay";
     this.fieldTargetDSDay.Name = "fieldTargetDSDay";
     //
     // fieldDS
     //
     this.fieldDS.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldDS.AreaIndex = 21;
     this.fieldDS.Caption = "DS MTD";
     this.fieldDS.CellFormat.FormatString = "f2";
     this.fieldDS.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldDS.EmptyCellText = "0";
     this.fieldDS.EmptyValueText = "0";
     this.fieldDS.FieldName = "DS";
     this.fieldDS.Name = "fieldDS";
     //
     // fieldTargetDS
     //
     this.fieldTargetDS.Area = DevExpress.XtraPivotGrid.PivotArea.DataArea;
     this.fieldTargetDS.AreaIndex = 22;
     this.fieldTargetDS.Caption = "DS Target MTD";
     this.fieldTargetDS.CellFormat.FormatString = "f2";
     this.fieldTargetDS.CellFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.fieldTargetDS.EmptyCellText = "0";
     this.fieldTargetDS.EmptyValueText = "0";
     this.fieldTargetDS.FieldName = "TargetDS";
     this.fieldTargetDS.Name = "fieldTargetDS";
     //
     // pro_0001TableAdapter
     //
     this.pro_0001TableAdapter.ClearBeforeFill = true;
     //
     // QryPro_0001BFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1132, 311);
     this.Controls.Add(this.pivotGridControlMain);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon = global::NestleICSales.Properties.Resources.Qry16;
     this.Name = "QryPro_0001BFrm";
     this.Text = "Actual KPI Vs Target";
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditPers)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditf2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManagerMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pivotGridControlMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pro0001BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsNMQry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProviderMain)).EndInit();
     this.ResumeLayout(false);
 }
Example #28
0
        public void loadctmvt(string active, string role, DevExpress.XtraGrid.GridControl gridControl1, GridView gridView1, TextEdit txtsct, ComboBoxEdit cbldt, LookUpEdit ledv, DateEdit denct, DateEdit denht,
                              DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit tkno, DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit tkco, DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit mahang,
                              DevExpress.XtraEditors.Repository.RepositoryItemTextEdit soluong, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit dongia, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit thanhtien, Frm_phieuthuvt F, LookUpEdit ledt, TextEdit txtnn, TextEdit txtldn, TextEdit txtctg,
                              ToolStripButton tsbtsua, ToolStripButton tsbtxoa, ToolStripButton tsbtcat, ToolStripButton tsbtboghi, ToolStripButton tsbtghiso, ToolStripButton tsbtnap, ToolStripButton tsbtin, string ngaychungtu, string tsbt, ComboBoxEdit cbthue, TextEdit txtshd, TextEdit txtkhhd, TextEdit txtnhd, TextEdit txtcth, ToolStripSplitButton tsbttruoc, ToolStripSplitButton tsbtsau, DataTable khach, DataTable hang)
        {
            DataTable    dt     = new DataTable();
            phieuthutmvt pttmvt = new phieuthutmvt();

            pttmvt.loadstart(gridControl1, gridView1, cbldt, ledv, denct, denht, tkno, tkco, mahang, soluong, dongia, thanhtien, ledt, tsbtsua, tsbtxoa, tsbtcat, tsbtboghi, tsbtghiso, tsbtnap, tsbtin, ngaychungtu, dt, tsbt, cbthue, khach, hang);
            if (active == "1")
            {
                DataTable da = new DataTable();
                da = gen.GetTable("select  DebitAccount,CreditAccount,Amount,InventoryItemCode,a.SalePrice,Quantity from SUCAPaymentDetail a,InventoryItem b where a.InventoryItemID=b.InventoryItemID and RefID='" + role + "' order by SortOrder");
                for (int i = 0; i < da.Rows.Count; i++)
                {
                    DataRow dr = dt.NewRow();
                    dr[0] = da.Rows[i][0].ToString();
                    dr[1] = da.Rows[i][1].ToString();
                    dr[2] = da.Rows[i][3].ToString();
                    dr[3] = da.Rows[i][5].ToString();
                    dr[4] = da.Rows[i][4].ToString();
                    dr[5] = da.Rows[i][2].ToString();
                    dt.Rows.Add(dr);
                }
                gridControl1.DataSource = dt;
                tsbtcat.Enabled         = false;

                F.Text = "Xem phiếu chi tiềm mặt mua vật tư";
                da     = gen.GetTable("select AccountingObjectCode,a.Contactname,JournalMemo,DocumentIncluded,RefDate,PostedDate,RefNo,StockCode,Posted,AccountingObjectType,Cancel,Tax,InvDate,InvSeries,InvNo  from SUCAPayment a, AccountingObject b,Stock c where a.AccountingObjectID=b.AccountingObjectID and a.StockID=c.StockID and RefID='" + role + "'");
                try
                {
                    cbldt.SelectedIndex = Int32.Parse(da.Rows[0][9].ToString());
                }
                catch { }
                ledv.EditValue  = da.Rows[0][7].ToString();
                ledt.EditValue  = da.Rows[0][0].ToString();
                txtnn.Text      = da.Rows[0][1].ToString();
                txtldn.Text     = da.Rows[0][2].ToString();
                txtctg.Text     = da.Rows[0][3].ToString();
                denct.EditValue = DateTime.Parse(da.Rows[0][4].ToString());
                denht.EditValue = DateTime.Parse(da.Rows[0][5].ToString());
                txtsct.Text     = da.Rows[0][6].ToString();
                txtshd.Text     = da.Rows[0][14].ToString();
                try
                {
                    txtnhd.EditValue = DateTime.Parse(da.Rows[0][12].ToString());
                }
                catch { txtnhd.Text = ""; }
                txtkhhd.Text = da.Rows[0][13].ToString();
                try
                {
                    cbthue.Text = da.Rows[0][11].ToString();
                }
                catch { }
                if (da.Rows[0][8].ToString() == "True")
                {
                    tsbtghiso.Visible = false;
                    tsbtboghi.Visible = true;
                    tsbtsua.Enabled   = false;
                }
                else
                {
                    tsbtboghi.Visible = false;
                    tsbtghiso.Visible = true;
                }
                if (da.Rows[0][10].ToString() == "True")
                {
                    tsbtboghi.Enabled = false;
                    tsbtghiso.Enabled = false;
                }
                txtcth.Text = gridView1.Columns["Thành tiền"].SummaryText;
                checktruocsau(tsbttruoc, tsbtsau, ledv.EditValue.ToString(), txtsct.Text, ngaychungtu);
            }
            else
            {
                try
                {
                    F.Text = "Thêm phiếu chi tiền mặt mua vật tư";
                    if (role == null)
                    {
                        ledv.ItemIndex = 0;
                    }
                    else
                    {
                        ledv.EditValue = role;
                    }
                    denct.EditValue = DateTime.Parse(ngaychungtu);
                    denht.EditValue = DateTime.Parse(ngaychungtu);
                    txtcth.Text     = gridView1.Columns["Thành tiền"].SummaryText;
                }
                catch
                {
                    XtraMessageBox.Show("Vui lòng kiểm tra lại < Ngày chứng từ >.", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    F.Close();
                }
            }
        }
Example #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.lkpEdtPromotionCode = new DevExpress.XtraEditors.LookUpEdit();
     this.label1                   = new System.Windows.Forms.Label();
     this.panelControl1            = new DevExpress.XtraEditors.PanelControl();
     this.panelControl2            = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK           = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl3            = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl1          = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1             = new DevExpress.XtraTab.XtraTabPage();
     this.gridControl1             = new DevExpress.XtraGrid.GridControl();
     this.gridView1                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn1              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit2  = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.xtraTabPage2             = new DevExpress.XtraTab.XtraTabPage();
     this.gridControl2             = new DevExpress.XtraGrid.GridControl();
     this.gridView2                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn3              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1  = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPromotionCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // lkpEdtPromotionCode
     //
     this.lkpEdtPromotionCode.EditValue = "";
     this.lkpEdtPromotionCode.Location  = new System.Drawing.Point(136, 10);
     this.lkpEdtPromotionCode.Name      = "lkpEdtPromotionCode";
     this.lkpEdtPromotionCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtPromotionCode.Size              = new System.Drawing.Size(191, 20);
     this.lkpEdtPromotionCode.TabIndex          = 0;
     this.lkpEdtPromotionCode.EditValueChanged += new System.EventHandler(this.lkpEdtPromotionCode_EditValueChanged);
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(10, 10);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(106, 23);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Promotion Code";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Controls.Add(this.lkpEdtPromotionCode);
     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(442, 46);
     this.panelControl1.TabIndex = 3;
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.simpleButtonCancel);
     this.panelControl2.Controls.Add(this.simpleButtonOK);
     this.panelControl2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl2.Location = new System.Drawing.Point(0, 256);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(442, 42);
     this.panelControl2.TabIndex = 4;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(283, 10);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.Size         = new System.Drawing.Size(75, 23);
     this.simpleButtonCancel.TabIndex     = 12;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(202, 10);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.Size         = new System.Drawing.Size(75, 23);
     this.simpleButtonOK.TabIndex     = 11;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.xtraTabControl1);
     this.panelControl3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 46);
     this.panelControl3.Name     = "panelControl3";
     this.panelControl3.Size     = new System.Drawing.Size(442, 210);
     this.panelControl3.TabIndex = 5;
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xtraTabControl1.Location        = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name            = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size            = new System.Drawing.Size(442, 210);
     this.xtraTabControl1.TabIndex        = 3;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.xtraTabPage1,
         this.xtraTabPage2
     });
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.gridControl1);
     this.xtraTabPage1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(433, 179);
     this.xtraTabPage1.Text = "Freebie-Package";
     //
     // gridControl1
     //
     this.gridControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit2,
         this.repositoryItemTextEdit2
     });
     this.gridControl1.Size     = new System.Drawing.Size(433, 179);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn6,
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn8
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.LostFocus  += new System.EventHandler(this.gridView1_LostFocus);
     //
     // gridColumn6
     //
     this.gridColumn6.ColumnEdit   = this.repositoryItemCheckEdit2;
     this.gridColumn6.FieldName    = "Checked";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width        = 36;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name       = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption   = "Package Code";
     this.gridColumn1.FieldName = "strPackageCode";
     this.gridColumn1.Name      = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width        = 126;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption   = "Package Description";
     this.gridColumn2.FieldName = "strDescription";
     this.gridColumn2.Name      = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 2;
     this.gridColumn2.Width        = 260;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption    = "Quantity";
     this.gridColumn8.ColumnEdit = this.repositoryItemTextEdit2;
     this.gridColumn8.FieldName  = "nQuantity";
     this.gridColumn8.Name       = "gridColumn8";
     this.gridColumn8.OptionsFilter.AllowFilter = false;
     this.gridColumn8.Visible      = true;
     this.gridColumn8.VisibleIndex = 3;
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name       = "repositoryItemTextEdit2";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.gridControl2);
     this.xtraTabPage2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(433, 179);
     this.xtraTabPage2.Text = "Freebie-Product";
     //
     // gridControl2
     //
     this.gridControl2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gridControl2.Location = new System.Drawing.Point(0, 0);
     this.gridControl2.MainView = this.gridView2;
     this.gridControl2.Name     = "gridControl2";
     this.gridControl2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit1,
         this.repositoryItemTextEdit1
     });
     this.gridControl2.Size     = new System.Drawing.Size(433, 179);
     this.gridControl2.TabIndex = 0;
     this.gridControl2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView2
     });
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn5,
         this.gridColumn3,
         this.gridColumn4,
         this.gridColumn7
     });
     this.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name        = "gridView2";
     this.gridView2.LostFocus  += new System.EventHandler(this.gridView2_LostFocus);
     //
     // gridColumn5
     //
     this.gridColumn5.ColumnEdit   = this.repositoryItemCheckEdit1;
     this.gridColumn5.FieldName    = "Checked";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 0;
     this.gridColumn5.Width        = 36;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption   = "Product Code";
     this.gridColumn3.FieldName = "strProductCode";
     this.gridColumn3.Name      = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width        = 115;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption   = "Product Description";
     this.gridColumn4.FieldName = "strDescription";
     this.gridColumn4.Name      = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width        = 271;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption    = "Quantity";
     this.gridColumn7.ColumnEdit = this.repositoryItemTextEdit1;
     this.gridColumn7.FieldName  = "nQuantity";
     this.gridColumn7.Name       = "gridColumn7";
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 3;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name       = "repositoryItemTextEdit1";
     //
     // FormAddBillFreebie
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(442, 298);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormAddBillFreebie";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Add Bill Freebies";
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtPromotionCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tabPage = new DevExpress.XtraTab.XtraTabPage();
     this.vGridControl = new DevExpress.XtraVerticalGrid.VGridControl();
     this.ItemTextEditUID = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditSName = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditSType = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditDQ = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditcol1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.rowUID = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowSName = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowSType = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowDQ = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowcol1 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.btnOK = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.repositoryItemComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tabPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.vGridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditUID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditSName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditSType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditDQ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditcol1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl
     //
     this.panelControl.Controls.Add(this.xtraTabControl1);
     this.panelControl.Location = new System.Drawing.Point(0, 0);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(395, 175);
     this.panelControl.TabIndex = 0;
     this.panelControl.Text = "panelControl1";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.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.xtraTabControl1.Location = new System.Drawing.Point(7, 7);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tabPage;
     this.xtraTabControl1.Size = new System.Drawing.Size(382, 161);
     this.xtraTabControl1.TabIndex = 1;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabPage});
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // tabPage
     //
     this.tabPage.Controls.Add(this.vGridControl);
     this.tabPage.Name = "tabPage";
     this.tabPage.Size = new System.Drawing.Size(378, 145);
     //
     // vGridControl
     //
     this.vGridControl.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.vGridControl.Location = new System.Drawing.Point(3, 3);
     this.vGridControl.Name = "vGridControl";
     this.vGridControl.RecordWidth = 234;
     this.vGridControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.ItemTextEditUID,
     this.ItemTextEditSName,
     this.ItemTextEditSType,
     this.ItemTextEditDQ,
     this.ItemTextEditcol1,
     this.repositoryItemComboBox1,
     this.repositoryItemComboBox2,
     this.repositoryItemComboBox3});
     this.vGridControl.RowHeaderWidth = 129;
     this.vGridControl.Rows.AddRange(new DevExpress.XtraVerticalGrid.Rows.BaseRow[] {
     this.rowUID,
     this.rowSName,
     this.rowSType,
     this.rowDQ,
     this.rowcol1});
     this.vGridControl.Size = new System.Drawing.Size(369, 138);
     this.vGridControl.TabIndex = 0;
     //
     // ItemTextEditUID
     //
     this.ItemTextEditUID.AutoHeight = false;
     this.ItemTextEditUID.MaxLength = 50;
     this.ItemTextEditUID.Name = "ItemTextEditUID";
     //
     // ItemTextEditSName
     //
     this.ItemTextEditSName.AutoHeight = false;
     this.ItemTextEditSName.MaxLength = 500;
     this.ItemTextEditSName.Name = "ItemTextEditSName";
     //
     // ItemTextEditSType
     //
     this.ItemTextEditSType.AutoHeight = false;
     this.ItemTextEditSType.MaxLength = 50;
     this.ItemTextEditSType.Name = "ItemTextEditSType";
     //
     // ItemTextEditDQ
     //
     this.ItemTextEditDQ.AutoHeight = false;
     this.ItemTextEditDQ.MaxLength = 50;
     this.ItemTextEditDQ.Name = "ItemTextEditDQ";
     //
     // ItemTextEditcol1
     //
     this.ItemTextEditcol1.AutoHeight = false;
     this.ItemTextEditcol1.MaxLength = 50;
     this.ItemTextEditcol1.Name = "ItemTextEditcol1";
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.Items.AddRange(new object[] {
     "��Ͻ������",
     "�ؼ�ֱ��ֱ��",
     "�ؼ��ع�",
     "�ؼ��ι�",
     "�ؼ�����"});
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
     //
     // rowUID
     //
     this.rowUID.Height = 25;
     this.rowUID.Name = "rowUID";
     this.rowUID.Properties.FieldName = "UID";
     this.rowUID.Properties.ImageIndex = 25;
     this.rowUID.Properties.RowEdit = this.ItemTextEditUID;
     this.rowUID.Visible = false;
     //
     // rowSName
     //
     this.rowSName.Height = 25;
     this.rowSName.Name = "rowSName";
     this.rowSName.Properties.Caption = "����";
     this.rowSName.Properties.FieldName = "SName";
     this.rowSName.Properties.ImageIndex = 25;
     this.rowSName.Properties.RowEdit = this.ItemTextEditSName;
     //
     // rowSType
     //
     this.rowSType.Height = 25;
     this.rowSType.Name = "rowSType";
     this.rowSType.Properties.Caption = "����";
     this.rowSType.Properties.FieldName = "SType";
     this.rowSType.Properties.ImageIndex = 25;
     this.rowSType.Properties.RowEdit = this.repositoryItemComboBox1;
     //
     // rowDQ
     //
     this.rowDQ.Height = 25;
     this.rowDQ.Name = "rowDQ";
     this.rowDQ.Properties.Caption = "����";
     this.rowDQ.Properties.FieldName = "DQ";
     this.rowDQ.Properties.ImageIndex = 25;
     this.rowDQ.Properties.RowEdit = this.repositoryItemComboBox2;
     //
     // rowcol1
     //
     this.rowcol1.Height = 25;
     this.rowcol1.Name = "rowcol1";
     this.rowcol1.Properties.Caption = "Ͷ�����";
     this.rowcol1.Properties.FieldName = "col1";
     this.rowcol1.Properties.ImageIndex = 25;
     this.rowcol1.Properties.RowEdit = this.repositoryItemComboBox3;
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(203, 181);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex = 0;
     this.btnOK.Text = "ȷ��";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(307, 181);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 0;
     this.btnCancel.Text = "ȡ��";
     //
     // repositoryItemComboBox3
     //
     this.repositoryItemComboBox3.AutoHeight = false;
     this.repositoryItemComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox3.Name = "repositoryItemComboBox3";
     //
     // FrmPs_Table_EnterpriseDialog
     //
     this.AcceptButton = this.btnOK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(395, 206);
     this.Controls.Add(this.panelControl);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.btnCancel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmPs_Table_EnterpriseDialog";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "��ҵ��ϸ";
     this.Load += new System.EventHandler(this.FrmPs_Table_EnterpriseDialog_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tabPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.vGridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditUID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditSName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditSType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditDQ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditcol1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).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(PLDocFolder));
     this.repositoryItemButtonDownload = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridFTPControl = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonUp = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDescript = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.colDownload = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.btnUpload = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonDownload)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFTPControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonUp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonDelete)).BeginInit();
     this.SuspendLayout();
     //
     // repositoryItemButtonDownload
     //
     this.repositoryItemButtonDownload.AutoHeight = false;
     this.repositoryItemButtonDownload.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, ((System.Drawing.Image)(resources.GetObject("repositoryItemButtonDownload.Buttons"))), null)});
     this.repositoryItemButtonDownload.Name = "repositoryItemButtonDownload";
     this.repositoryItemButtonDownload.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonDownload.Click += new System.EventHandler(this.repositoryItemButtonDownload_Click);
     //
     // gridFTPControl
     //
     this.gridFTPControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridFTPControl.EmbeddedNavigator.Name = "";
     this.gridFTPControl.FormsUseDefaultLookAndFeel = false;
     this.gridFTPControl.Location = new System.Drawing.Point(0, 0);
     this.gridFTPControl.MainView = this.gridView1;
     this.gridFTPControl.Name = "gridFTPControl";
     this.gridFTPControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonDelete,
     this.repositoryItemButtonDownload,
     this.repositoryItemButtonUp,
     this.repositoryItemTextEdit2});
     this.gridFTPControl.Size = new System.Drawing.Size(327, 103);
     this.gridFTPControl.TabIndex = 10;
     this.gridFTPControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2,
     this.gridColumnDescript,
     this.colDownload,
     this.colDelete});
     this.gridView1.GridControl = this.gridFTPControl;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowGroup = false;
     this.gridView1.OptionsMenu.EnableColumnMenu = false;
     this.gridView1.OptionsMenu.EnableFooterMenu = false;
     this.gridView1.OptionsMenu.EnableGroupPanelMenu = false;
     this.gridView1.OptionsNavigation.AutoMoveRowFocus = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.OptionsView.ShowIndicator = false;
     this.gridView1.ScrollStyle = DevExpress.XtraGrid.Views.Grid.ScrollStyleFlags.None;
     this.gridView1.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.Default;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceHeader.Image = ((System.Drawing.Image)(resources.GetObject("gridColumn2.AppearanceHeader.Image")));
     this.gridColumn2.AppearanceHeader.Options.UseImage = true;
     this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn2.Caption = "Tên tập tin";
     this.gridColumn2.ColumnEdit = this.repositoryItemButtonUp;
     this.gridColumn2.FieldName = "FILE_NAME";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 231;
     //
     // repositoryItemButtonUp
     //
     this.repositoryItemButtonUp.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, ((System.Drawing.Image)(resources.GetObject("repositoryItemButtonUp.Buttons"))), new DevExpress.Utils.KeyShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.U)))});
     this.repositoryItemButtonUp.Name = "repositoryItemButtonUp";
     //
     // gridColumnDescript
     //
     this.gridColumnDescript.Caption = "Mô tả";
     this.gridColumnDescript.ColumnEdit = this.repositoryItemTextEdit2;
     this.gridColumnDescript.FieldName = "FILE_DESCRIPT";
     this.gridColumnDescript.Name = "gridColumnDescript";
     this.gridColumnDescript.Width = 106;
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     //
     // colDownload
     //
     this.colDownload.AppearanceCell.Options.UseTextOptions = true;
     this.colDownload.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDownload.AppearanceHeader.Options.UseTextOptions = true;
     this.colDownload.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDownload.Caption = "Mở";
     this.colDownload.ColumnEdit = this.repositoryItemButtonDownload;
     this.colDownload.MinWidth = 15;
     this.colDownload.Name = "colDownload";
     this.colDownload.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colDownload.OptionsColumn.AllowMove = false;
     this.colDownload.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colDownload.OptionsColumn.FixedWidth = true;
     this.colDownload.Visible = true;
     this.colDownload.VisibleIndex = 1;
     this.colDownload.Width = 32;
     //
     // colDelete
     //
     this.colDelete.AppearanceCell.Options.UseTextOptions = true;
     this.colDelete.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDelete.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.colDelete.AppearanceHeader.Options.UseTextOptions = true;
     this.colDelete.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDelete.Caption = "Xóa";
     this.colDelete.ColumnEdit = this.repositoryItemButtonDelete;
     this.colDelete.MinWidth = 15;
     this.colDelete.Name = "colDelete";
     this.colDelete.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colDelete.OptionsColumn.AllowMove = false;
     this.colDelete.OptionsColumn.AllowSize = false;
     this.colDelete.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colDelete.OptionsColumn.FixedWidth = true;
     this.colDelete.Visible = true;
     this.colDelete.VisibleIndex = 2;
     this.colDelete.Width = 31;
     //
     // repositoryItemButtonDelete
     //
     this.repositoryItemButtonDelete.AutoHeight = false;
     this.repositoryItemButtonDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, ((System.Drawing.Image)(resources.GetObject("repositoryItemButtonDelete.Buttons"))), null)});
     this.repositoryItemButtonDelete.Name = "repositoryItemButtonDelete";
     this.repositoryItemButtonDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonDelete.Click += new System.EventHandler(this.repositoryItemButtonDelete_Click);
     //
     // btnUpload
     //
     this.btnUpload.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.btnUpload.Appearance.BackColor2 = System.Drawing.Color.Transparent;
     this.btnUpload.Appearance.BorderColor = System.Drawing.Color.Transparent;
     this.btnUpload.Appearance.ForeColor = System.Drawing.Color.Transparent;
     this.btnUpload.Appearance.Options.UseBackColor = true;
     this.btnUpload.Appearance.Options.UseBorderColor = true;
     this.btnUpload.Appearance.Options.UseForeColor = true;
     this.btnUpload.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnUpload.Image = ((System.Drawing.Image)(resources.GetObject("btnUpload.Image")));
     this.btnUpload.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleCenter;
     this.btnUpload.Location = new System.Drawing.Point(4, 4);
     this.btnUpload.Name = "btnUpload";
     this.btnUpload.Size = new System.Drawing.Size(16, 15);
     this.btnUpload.TabIndex = 11;
     this.btnUpload.ToolTip = "Thêm tập tin";
     this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
     //
     // PLDocFolder
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.Controls.Add(this.btnUpload);
     this.Controls.Add(this.gridFTPControl);
     this.Name = "PLDocFolder";
     this.Size = new System.Drawing.Size(327, 103);
     this.Load += new System.EventHandler(this.FTPControl_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonDownload)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridFTPControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonUp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonDelete)).EndInit();
     this.ResumeLayout(false);
 }
Example #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.components = new System.ComponentModel.Container();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPromotion));
     this.grpMDPromotionTop = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_Promotion = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Promotion = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPM1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPM2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_DiscountCategory = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmPromotionType = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmbItemDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtStartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.dtEndDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cmbApprovedStatus = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Searchpanel = new System.Windows.Forms.Panel();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     this.btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_Del = new DevExpress.XtraEditors.SimpleButton();
     this.grpMDPromotionBelow = new DevExpress.XtraEditors.GroupControl();
     this.grpMDPromotionBelow2 = new DevExpress.XtraEditors.GroupControl();
     this.TabControlPromotion = new DevExpress.XtraTab.XtraTabControl();
     this.tabPromo_Brnch = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btnBranch_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnBranch_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnBranch_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnBranch_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label4 = new System.Windows.Forms.Label();
     this.gridBranch = new DevExpress.XtraGrid.GridControl();
     this.gvBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.tabPromo_Freebies = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnFreebies_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnFreebies_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnFreebies_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnFreebies_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gdFreebies2 = new DevExpress.XtraGrid.GridControl();
     this.gvFreebies2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gdFreebies = new DevExpress.XtraGrid.GridControl();
     this.gvFreebies = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnReset = new DevExpress.XtraEditors.SimpleButton();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.txtItemStyle = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.txtItemCode = new DevExpress.XtraEditors.TextEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.txtItemDesc = new DevExpress.XtraEditors.TextEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.tabPromo_Package = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.btnPackage_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackage_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackage_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPackage_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gdPackage2 = new DevExpress.XtraGrid.GridControl();
     this.gvPackage2 = 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.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gdPackage = new DevExpress.XtraGrid.GridControl();
     this.gvPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnPcReset = new DevExpress.XtraEditors.SimpleButton();
     this.btnPcSearch = new DevExpress.XtraEditors.SimpleButton();
     this.txtPcItemCode = new DevExpress.XtraEditors.TextEdit();
     this.label5 = new System.Windows.Forms.Label();
     this.txtPcItemDesc = new DevExpress.XtraEditors.TextEdit();
     this.label6 = new System.Windows.Forms.Label();
     this.tabPromo_ReceiptSalesCategory = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.btnSales_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnSales_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnSales_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnSales_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridSales2 = new DevExpress.XtraGrid.GridControl();
     this.gvSales2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridSales = new DevExpress.XtraGrid.GridControl();
     this.gvSales = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionTop)).BeginInit();
     this.grpMDPromotionTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Promotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Promotion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_DiscountCategory)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmPromotionType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbItemDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbApprovedStatus)).BeginInit();
     this.Searchpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow)).BeginInit();
     this.grpMDPromotionBelow.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).BeginInit();
     this.grpMDPromotionBelow2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TabControlPromotion)).BeginInit();
     this.TabControlPromotion.SuspendLayout();
     this.tabPromo_Brnch.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch)).BeginInit();
     this.tabPromo_Freebies.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gdFreebies2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFreebies2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdFreebies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFreebies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemStyle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).BeginInit();
     this.tabPromo_Package.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gdPackage2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackage2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPcItemCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPcItemDesc.Properties)).BeginInit();
     this.tabPromo_ReceiptSalesCategory.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridSales2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSales)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDPromotionTop
     //
     this.grpMDPromotionTop.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDPromotionTop.Appearance.Options.UseBackColor = true;
     this.grpMDPromotionTop.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpMDPromotionTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDPromotionTop.Controls.Add(this.gridControlMd_Promotion);
     this.grpMDPromotionTop.Controls.Add(this.Searchpanel);
     this.grpMDPromotionTop.Controls.Add(this.btn_Add);
     this.grpMDPromotionTop.Controls.Add(this.btn_Del);
     this.grpMDPromotionTop.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDPromotionTop.Location = new System.Drawing.Point(10, 0);
     this.grpMDPromotionTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDPromotionTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionTop.Name = "grpMDPromotionTop";
     this.grpMDPromotionTop.Size = new System.Drawing.Size(980, 258);
     this.grpMDPromotionTop.TabIndex = 92;
     this.grpMDPromotionTop.Text = "Promotion";
     //
     // gridControlMd_Promotion
     //
     this.gridControlMd_Promotion.Dock = System.Windows.Forms.DockStyle.Bottom;
     gridLevelNode1.RelationName = "Level1";
     this.gridControlMd_Promotion.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.gridControlMd_Promotion.Location = new System.Drawing.Point(2, 53);
     this.gridControlMd_Promotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Promotion.MainView = this.gridViewMd_Promotion;
     this.gridControlMd_Promotion.Name = "gridControlMd_Promotion";
     this.gridControlMd_Promotion.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_DiscountCategory,
     this.cmPromotionType,
     this.dtStartDate,
     this.dtEndDate,
     this.cmbApprovedStatus,
     this.cmbItemDiscount});
     this.gridControlMd_Promotion.Size = new System.Drawing.Size(976, 203);
     this.gridControlMd_Promotion.TabIndex = 20;
     this.gridControlMd_Promotion.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Promotion});
     //
     // gridViewMd_Promotion
     //
     this.gridViewMd_Promotion.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPM1,
     this.gridColumnPM2,
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9});
     this.gridViewMd_Promotion.CustomizationFormBounds = new System.Drawing.Rectangle(465, 203, 208, 156);
     this.gridViewMd_Promotion.GridControl = this.gridControlMd_Promotion;
     this.gridViewMd_Promotion.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_Promotion.Name = "gridViewMd_Promotion";
     this.gridViewMd_Promotion.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Promotion.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Promotion.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_Promotion.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Promotion.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_Promotion_FocusedRowChanged);
     this.gridViewMd_Promotion.LostFocus += new System.EventHandler(this.gridViewMd_Promotion_LostFocus);
     //
     // gridColumnPM1
     //
     this.gridColumnPM1.Caption = "Promotion Code";
     this.gridColumnPM1.FieldName = "strPromotionCode";
     this.gridColumnPM1.MinWidth = 10;
     this.gridColumnPM1.Name = "gridColumnPM1";
     this.gridColumnPM1.Visible = true;
     this.gridColumnPM1.VisibleIndex = 0;
     this.gridColumnPM1.Width = 90;
     //
     // gridColumnPM2
     //
     this.gridColumnPM2.Caption = "Description";
     this.gridColumnPM2.FieldName = "strDescription";
     this.gridColumnPM2.Name = "gridColumnPM2";
     this.gridColumnPM2.Visible = true;
     this.gridColumnPM2.VisibleIndex = 1;
     this.gridColumnPM2.Width = 173;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Discount Category";
     this.gridColumn1.ColumnEdit = this.lk_DiscountCategory;
     this.gridColumn1.FieldName = "nDiscountCategoryID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     this.gridColumn1.Width = 155;
     //
     // lk_DiscountCategory
     //
     this.lk_DiscountCategory.AutoHeight = false;
     this.lk_DiscountCategory.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_DiscountCategory.Name = "lk_DiscountCategory";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Promotion Type";
     this.gridColumn2.ColumnEdit = this.cmPromotionType;
     this.gridColumn2.FieldName = "nPromotionTypeID";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 3;
     this.gridColumn2.Width = 116;
     //
     // cmPromotionType
     //
     this.cmPromotionType.AutoHeight = false;
     this.cmPromotionType.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmPromotionType.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Discount Promotion", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Free Product", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Free Package", 2, -1)});
     this.cmPromotionType.Name = "cmPromotionType";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Item Discount?";
     this.gridColumn3.ColumnEdit = this.cmbItemDiscount;
     this.gridColumn3.FieldName = "fItemDiscount";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 4;
     this.gridColumn3.Width = 101;
     //
     // cmbItemDiscount
     //
     this.cmbItemDiscount.AutoHeight = false;
     this.cmbItemDiscount.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbItemDiscount.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Item Discount", true, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Bill Discount", false, -1)});
     this.cmbItemDiscount.Name = "cmbItemDiscount";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Minimum Amount";
     this.gridColumn4.DisplayFormat.FormatString = "#.##";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn4.FieldName = "mMinimumAmount";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 5;
     this.gridColumn4.Width = 101;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Start Date";
     this.gridColumn5.ColumnEdit = this.dtStartDate;
     this.gridColumn5.DisplayFormat.FormatString = "d";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn5.FieldName = "dtValidStart";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 6;
     this.gridColumn5.Width = 95;
     //
     // dtStartDate
     //
     this.dtStartDate.AutoHeight = false;
     this.dtStartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtStartDate.Name = "dtStartDate";
     this.dtStartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "End Date";
     this.gridColumn6.ColumnEdit = this.dtEndDate;
     this.gridColumn6.DisplayFormat.FormatString = "d";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn6.FieldName = "dtValidEnd";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 7;
     this.gridColumn6.Width = 90;
     //
     // dtEndDate
     //
     this.dtEndDate.AutoHeight = false;
     this.dtEndDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dtEndDate.Name = "dtEndDate";
     this.dtEndDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Approved Status";
     this.gridColumn7.ColumnEdit = this.cmbApprovedStatus;
     this.gridColumn7.FieldName = "nApprovedStatusID";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 8;
     this.gridColumn7.Width = 89;
     //
     // cmbApprovedStatus
     //
     this.cmbApprovedStatus.AutoHeight = false;
     this.cmbApprovedStatus.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbApprovedStatus.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending Approval", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Approved", 1, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 2, -1)});
     this.cmbApprovedStatus.Name = "cmbApprovedStatus";
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Discount %";
     this.gridColumn8.DisplayFormat.FormatString = "P";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "dDiscountPercent";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 9;
     this.gridColumn8.Width = 71;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Discount Value";
     this.gridColumn9.DisplayFormat.FormatString = "#.##";
     this.gridColumn9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn9.FieldName = "dDiscountValue";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 10;
     this.gridColumn9.Width = 111;
     //
     // Searchpanel
     //
     this.Searchpanel.BackColor = System.Drawing.Color.Transparent;
     this.Searchpanel.Controls.Add(this.btn_Search);
     this.Searchpanel.Controls.Add(this.txtSearch);
     this.Searchpanel.Location = new System.Drawing.Point(551, 12);
     this.Searchpanel.Name = "Searchpanel";
     this.Searchpanel.Size = new System.Drawing.Size(410, 37);
     this.Searchpanel.TabIndex = 149;
     //
     // btn_Search
     //
     this.btn_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_Search.Appearance.Options.UseFont = true;
     this.btn_Search.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Search.Location = new System.Drawing.Point(330, 9);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(67, 23);
     this.btn_Search.TabIndex = 137;
     this.btn_Search.Text = "Search";
     this.btn_Search.Click += new System.EventHandler(this.btn_Search_Click);
     //
     // txtSearch
     //
     this.txtSearch.EditValue = "";
     this.txtSearch.Location = new System.Drawing.Point(120, 9);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSearch.Properties.Appearance.Options.UseFont = true;
     this.txtSearch.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtSearch.Size = new System.Drawing.Size(202, 23);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // btn_Add
     //
     this.btn_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Add.Appearance.Options.UseFont = true;
     this.btn_Add.Appearance.Options.UseTextOptions = true;
     this.btn_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Add.ImageIndex = 0;
     this.btn_Add.ImageList = this.imageList1;
     this.btn_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_Add.Location = new System.Drawing.Point(10, 28);
     this.btn_Add.Name = "btn_Add";
     this.btn_Add.Size = new System.Drawing.Size(45, 18);
     this.btn_Add.TabIndex = 134;
     this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     //
     // btn_Del
     //
     this.btn_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_Del.Appearance.Options.UseFont = true;
     this.btn_Del.Appearance.Options.UseTextOptions = true;
     this.btn_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_Del.ImageIndex = 1;
     this.btn_Del.ImageList = this.imageList1;
     this.btn_Del.Location = new System.Drawing.Point(58, 28);
     this.btn_Del.Name = "btn_Del";
     this.btn_Del.Size = new System.Drawing.Size(45, 18);
     this.btn_Del.TabIndex = 133;
     this.btn_Del.Click += new System.EventHandler(this.btn_Del_Click);
     //
     // grpMDPromotionBelow
     //
     this.grpMDPromotionBelow.Controls.Add(this.grpMDPromotionBelow2);
     this.grpMDPromotionBelow.Location = new System.Drawing.Point(10, 277);
     this.grpMDPromotionBelow.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDPromotionBelow.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionBelow.Name = "grpMDPromotionBelow";
     this.grpMDPromotionBelow.Size = new System.Drawing.Size(980, 332);
     this.grpMDPromotionBelow.TabIndex = 93;
     this.grpMDPromotionBelow.Text = "Branch Promotion ";
     //
     // grpMDPromotionBelow2
     //
     this.grpMDPromotionBelow2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.grpMDPromotionBelow2.Controls.Add(this.TabControlPromotion);
     this.grpMDPromotionBelow2.Location = new System.Drawing.Point(10, 28);
     this.grpMDPromotionBelow2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPromotionBelow2.Name = "grpMDPromotionBelow2";
     this.grpMDPromotionBelow2.ShowCaption = false;
     this.grpMDPromotionBelow2.Size = new System.Drawing.Size(970, 304);
     this.grpMDPromotionBelow2.TabIndex = 6;
     this.grpMDPromotionBelow2.Text = "groupControl1";
     //
     // TabControlPromotion
     //
     this.TabControlPromotion.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TabControlPromotion.AppearancePage.Header.Options.UseFont = true;
     this.TabControlPromotion.Location = new System.Drawing.Point(10, 9);
     this.TabControlPromotion.LookAndFeel.UseDefaultLookAndFeel = false;
     this.TabControlPromotion.Name = "TabControlPromotion";
     this.TabControlPromotion.SelectedTabPage = this.tabPromo_Brnch;
     this.TabControlPromotion.Size = new System.Drawing.Size(960, 286);
     this.TabControlPromotion.TabIndex = 132;
     this.TabControlPromotion.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabPromo_Brnch,
     this.tabPromo_Freebies,
     this.tabPromo_Package,
     this.tabPromo_ReceiptSalesCategory});
     //
     // tabPromo_Brnch
     //
     this.tabPromo_Brnch.Controls.Add(this.groupControl1);
     this.tabPromo_Brnch.Name = "tabPromo_Brnch";
     this.tabPromo_Brnch.Size = new System.Drawing.Size(951, 250);
     this.tabPromo_Brnch.Text = "Branch";
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.btnBranch_Del);
     this.groupControl1.Controls.Add(this.btnBranch_DelAll);
     this.groupControl1.Controls.Add(this.btnBranch_AddAll);
     this.groupControl1.Controls.Add(this.btnBranch_Add);
     this.groupControl1.Controls.Add(this.gridBranch2);
     this.groupControl1.Controls.Add(this.label4);
     this.groupControl1.Controls.Add(this.gridBranch);
     this.groupControl1.Location = new System.Drawing.Point(0, 9);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(1094, 277);
     this.groupControl1.TabIndex = 88;
     this.groupControl1.Text = "groupControl1";
     //
     // btnBranch_Del
     //
     this.btnBranch_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_Del.Location = new System.Drawing.Point(528, 138);
     this.btnBranch_Del.Name = "btnBranch_Del";
     this.btnBranch_Del.Size = new System.Drawing.Size(36, 24);
     this.btnBranch_Del.TabIndex = 28;
     this.btnBranch_Del.Text = "<";
     this.btnBranch_Del.Click += new System.EventHandler(this.btnBranch_Del_Click);
     //
     // btnBranch_DelAll
     //
     this.btnBranch_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_DelAll.Location = new System.Drawing.Point(528, 83);
     this.btnBranch_DelAll.Name = "btnBranch_DelAll";
     this.btnBranch_DelAll.Size = new System.Drawing.Size(36, 23);
     this.btnBranch_DelAll.TabIndex = 27;
     this.btnBranch_DelAll.Text = "<<";
     this.btnBranch_DelAll.Click += new System.EventHandler(this.btnBranch_DelAll_Click);
     //
     // btnBranch_AddAll
     //
     this.btnBranch_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_AddAll.Location = new System.Drawing.Point(528, 111);
     this.btnBranch_AddAll.Name = "btnBranch_AddAll";
     this.btnBranch_AddAll.Size = new System.Drawing.Size(36, 23);
     this.btnBranch_AddAll.TabIndex = 26;
     this.btnBranch_AddAll.Text = ">>";
     this.btnBranch_AddAll.Click += new System.EventHandler(this.btnBranch_AddAll_Click);
     //
     // btnBranch_Add
     //
     this.btnBranch_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnBranch_Add.Location = new System.Drawing.Point(528, 55);
     this.btnBranch_Add.Name = "btnBranch_Add";
     this.btnBranch_Add.Size = new System.Drawing.Size(36, 23);
     this.btnBranch_Add.TabIndex = 25;
     this.btnBranch_Add.Text = ">";
     this.btnBranch_Add.Click += new System.EventHandler(this.btnBranch_Add_Click);
     //
     // gridBranch2
     //
     this.gridBranch2.Location = new System.Drawing.Point(576, 9);
     this.gridBranch2.MainView = this.gvBranch2;
     this.gridBranch2.Name = "gridBranch2";
     this.gridBranch2.Size = new System.Drawing.Size(370, 222);
     this.gridBranch2.TabIndex = 29;
     this.gridBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvBranch2});
     //
     // gvBranch2
     //
     this.gvBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn33,
     this.gridColumn34});
     this.gvBranch2.GridControl = this.gridBranch2;
     this.gvBranch2.Name = "gvBranch2";
     this.gvBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranch2.OptionsBehavior.Editable = false;
     this.gvBranch2.OptionsCustomization.AllowFilter = false;
     this.gvBranch2.OptionsSelection.MultiSelect = true;
     this.gvBranch2.OptionsView.ShowGroupPanel = false;
     this.gvBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn33, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "Branch";
     this.gridColumn33.FieldName = "strBranchCode";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 0;
     this.gridColumn33.Width = 104;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "Branch Name";
     this.gridColumn34.FieldName = "strBranchName";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 1;
     this.gridColumn34.Width = 282;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(-139, -28);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(110, 40);
     this.label4.TabIndex = 30;
     this.label4.Text = "Package Branch";
     //
     // gridBranch
     //
     this.gridBranch.Location = new System.Drawing.Point(10, 9);
     this.gridBranch.MainView = this.gvBranch;
     this.gridBranch.Name = "gridBranch";
     this.gridBranch.Size = new System.Drawing.Size(508, 231);
     this.gridBranch.TabIndex = 24;
     this.gridBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvBranch});
     //
     // gvBranch
     //
     this.gvBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn35,
     this.gridColumn36});
     this.gvBranch.GridControl = this.gridBranch;
     this.gvBranch.Name = "gvBranch";
     this.gvBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvBranch.OptionsBehavior.Editable = false;
     this.gvBranch.OptionsCustomization.AllowFilter = false;
     this.gvBranch.OptionsSelection.MultiSelect = true;
     this.gvBranch.OptionsView.ShowGroupPanel = false;
     this.gvBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn35, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "Branch";
     this.gridColumn35.FieldName = "strBranchCode";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Visible = true;
     this.gridColumn35.VisibleIndex = 0;
     this.gridColumn35.Width = 107;
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "Branch Name";
     this.gridColumn36.FieldName = "strBranchName";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 1;
     this.gridColumn36.Width = 279;
     //
     // tabPromo_Freebies
     //
     this.tabPromo_Freebies.Controls.Add(this.groupControl2);
     this.tabPromo_Freebies.Controls.Add(this.btnReset);
     this.tabPromo_Freebies.Controls.Add(this.btnSearch);
     this.tabPromo_Freebies.Controls.Add(this.txtItemStyle);
     this.tabPromo_Freebies.Controls.Add(this.label3);
     this.tabPromo_Freebies.Controls.Add(this.txtItemCode);
     this.tabPromo_Freebies.Controls.Add(this.label2);
     this.tabPromo_Freebies.Controls.Add(this.txtItemDesc);
     this.tabPromo_Freebies.Controls.Add(this.label1);
     this.tabPromo_Freebies.Name = "tabPromo_Freebies";
     this.tabPromo_Freebies.Size = new System.Drawing.Size(951, 250);
     this.tabPromo_Freebies.Text = "Freebies";
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl2.Controls.Add(this.btnFreebies_Del);
     this.groupControl2.Controls.Add(this.btnFreebies_DelAll);
     this.groupControl2.Controls.Add(this.btnFreebies_AddAll);
     this.groupControl2.Controls.Add(this.btnFreebies_Add);
     this.groupControl2.Controls.Add(this.gdFreebies2);
     this.groupControl2.Controls.Add(this.gdFreebies);
     this.groupControl2.Location = new System.Drawing.Point(0, 37);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(1094, 212);
     this.groupControl2.TabIndex = 115;
     this.groupControl2.Text = "groupControl2";
     //
     // btnFreebies_Del
     //
     this.btnFreebies_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnFreebies_Del.Location = new System.Drawing.Point(528, 102);
     this.btnFreebies_Del.Name = "btnFreebies_Del";
     this.btnFreebies_Del.Size = new System.Drawing.Size(36, 23);
     this.btnFreebies_Del.TabIndex = 94;
     this.btnFreebies_Del.Text = "<";
     this.btnFreebies_Del.Click += new System.EventHandler(this.btnFreebies_Del_Click);
     //
     // btnFreebies_DelAll
     //
     this.btnFreebies_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnFreebies_DelAll.Location = new System.Drawing.Point(528, 74);
     this.btnFreebies_DelAll.Name = "btnFreebies_DelAll";
     this.btnFreebies_DelAll.Size = new System.Drawing.Size(36, 23);
     this.btnFreebies_DelAll.TabIndex = 93;
     this.btnFreebies_DelAll.Text = "<<";
     this.btnFreebies_DelAll.Click += new System.EventHandler(this.btnFreebies_DelAll_Click);
     //
     // btnFreebies_AddAll
     //
     this.btnFreebies_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnFreebies_AddAll.Location = new System.Drawing.Point(528, 46);
     this.btnFreebies_AddAll.Name = "btnFreebies_AddAll";
     this.btnFreebies_AddAll.Size = new System.Drawing.Size(36, 23);
     this.btnFreebies_AddAll.TabIndex = 92;
     this.btnFreebies_AddAll.Text = ">>";
     this.btnFreebies_AddAll.Click += new System.EventHandler(this.btnFreebies_AddAll_Click);
     //
     // btnFreebies_Add
     //
     this.btnFreebies_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnFreebies_Add.Location = new System.Drawing.Point(528, 18);
     this.btnFreebies_Add.Name = "btnFreebies_Add";
     this.btnFreebies_Add.Size = new System.Drawing.Size(36, 24);
     this.btnFreebies_Add.TabIndex = 91;
     this.btnFreebies_Add.Text = ">";
     this.btnFreebies_Add.Click += new System.EventHandler(this.btnFreebies_Add_Click);
     //
     // gdFreebies2
     //
     this.gdFreebies2.Location = new System.Drawing.Point(581, 14);
     this.gdFreebies2.MainView = this.gvFreebies2;
     this.gdFreebies2.Name = "gdFreebies2";
     this.gdFreebies2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.gdFreebies2.Size = new System.Drawing.Size(509, 184);
     this.gdFreebies2.TabIndex = 95;
     this.gdFreebies2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvFreebies2});
     //
     // gvFreebies2
     //
     this.gvFreebies2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn14,
     this.gridColumn25});
     this.gvFreebies2.GridControl = this.gdFreebies2;
     this.gvFreebies2.Name = "gvFreebies2";
     this.gvFreebies2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvFreebies2.OptionsCustomization.AllowFilter = false;
     this.gvFreebies2.OptionsSelection.MultiSelect = true;
     this.gvFreebies2.OptionsView.ShowGroupPanel = false;
     this.gvFreebies2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn10, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gvFreebies2.LostFocus += new System.EventHandler(this.gvFreebies2_LostFocus);
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Product Code";
     this.gridColumn10.FieldName = "strItemCode";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 0;
     this.gridColumn10.Width = 104;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Description";
     this.gridColumn11.FieldName = "strDescription";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowEdit = false;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 1;
     this.gridColumn11.Width = 282;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Promotion Code";
     this.gridColumn14.FieldName = "strPromotionCode";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit = false;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "Max Quantity";
     this.gridColumn25.ColumnEdit = this.repositoryItemTextEdit1;
     this.gridColumn25.FieldName = "nMaxQty";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.OptionsFilter.AllowFilter = false;
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 2;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // gdFreebies
     //
     this.gdFreebies.Location = new System.Drawing.Point(5, 14);
     this.gdFreebies.MainView = this.gvFreebies;
     this.gdFreebies.Name = "gdFreebies";
     this.gdFreebies.Size = new System.Drawing.Size(509, 189);
     this.gdFreebies.TabIndex = 90;
     this.gdFreebies.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvFreebies});
     //
     // gvFreebies
     //
     this.gvFreebies.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn12,
     this.gridColumn13});
     this.gvFreebies.GridControl = this.gdFreebies;
     this.gvFreebies.Name = "gvFreebies";
     this.gvFreebies.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvFreebies.OptionsBehavior.Editable = false;
     this.gvFreebies.OptionsCustomization.AllowFilter = false;
     this.gvFreebies.OptionsSelection.MultiSelect = true;
     this.gvFreebies.OptionsView.ShowGroupPanel = false;
     this.gvFreebies.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn12, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Product Code";
     this.gridColumn12.FieldName = "strProductCode";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 0;
     this.gridColumn12.Width = 107;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Description";
     this.gridColumn13.FieldName = "strDescription";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 1;
     this.gridColumn13.Width = 279;
     //
     // btnReset
     //
     this.btnReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnReset.Appearance.Options.UseFont = true;
     this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReset.Location = new System.Drawing.Point(826, 9);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(86, 23);
     this.btnReset.TabIndex = 114;
     this.btnReset.Text = "Reset";
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // btnSearch
     //
     this.btnSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnSearch.Appearance.Options.UseFont = true;
     this.btnSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSearch.Location = new System.Drawing.Point(720, 9);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(86, 23);
     this.btnSearch.TabIndex = 113;
     this.btnSearch.Text = "Search";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // txtItemStyle
     //
     this.txtItemStyle.EditValue = "";
     this.txtItemStyle.Location = new System.Drawing.Point(566, 9);
     this.txtItemStyle.Name = "txtItemStyle";
     this.txtItemStyle.Size = new System.Drawing.Size(120, 22);
     this.txtItemStyle.TabIndex = 112;
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(470, 9);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(120, 19);
     this.label3.TabIndex = 111;
     this.label3.Text = "Item Style :";
     //
     // txtItemCode
     //
     this.txtItemCode.EditValue = "";
     this.txtItemCode.Location = new System.Drawing.Point(336, 9);
     this.txtItemCode.Name = "txtItemCode";
     this.txtItemCode.Size = new System.Drawing.Size(120, 22);
     this.txtItemCode.TabIndex = 110;
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(230, 9);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(120, 19);
     this.label2.TabIndex = 109;
     this.label2.Text = "Item Code :";
     //
     // txtItemDesc
     //
     this.txtItemDesc.EditValue = "";
     this.txtItemDesc.Location = new System.Drawing.Point(96, 9);
     this.txtItemDesc.Name = "txtItemDesc";
     this.txtItemDesc.Size = new System.Drawing.Size(120, 22);
     this.txtItemDesc.TabIndex = 108;
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(10, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(120, 19);
     this.label1.TabIndex = 107;
     this.label1.Text = "Item Desc :";
     //
     // tabPromo_Package
     //
     this.tabPromo_Package.Controls.Add(this.groupControl3);
     this.tabPromo_Package.Controls.Add(this.btnPcReset);
     this.tabPromo_Package.Controls.Add(this.btnPcSearch);
     this.tabPromo_Package.Controls.Add(this.txtPcItemCode);
     this.tabPromo_Package.Controls.Add(this.label5);
     this.tabPromo_Package.Controls.Add(this.txtPcItemDesc);
     this.tabPromo_Package.Controls.Add(this.label6);
     this.tabPromo_Package.Name = "tabPromo_Package";
     this.tabPromo_Package.Size = new System.Drawing.Size(951, 250);
     this.tabPromo_Package.Text = "Package";
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl3.Controls.Add(this.btnPackage_Del);
     this.groupControl3.Controls.Add(this.btnPackage_DelAll);
     this.groupControl3.Controls.Add(this.btnPackage_AddAll);
     this.groupControl3.Controls.Add(this.btnPackage_Add);
     this.groupControl3.Controls.Add(this.gdPackage2);
     this.groupControl3.Controls.Add(this.gdPackage);
     this.groupControl3.Location = new System.Drawing.Point(0, 37);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(1094, 212);
     this.groupControl3.TabIndex = 123;
     this.groupControl3.Text = "groupControl3";
     //
     // btnPackage_Del
     //
     this.btnPackage_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackage_Del.Location = new System.Drawing.Point(528, 102);
     this.btnPackage_Del.Name = "btnPackage_Del";
     this.btnPackage_Del.Size = new System.Drawing.Size(36, 23);
     this.btnPackage_Del.TabIndex = 94;
     this.btnPackage_Del.Text = "<";
     this.btnPackage_Del.Click += new System.EventHandler(this.btnPackage_Del_Click);
     //
     // btnPackage_DelAll
     //
     this.btnPackage_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackage_DelAll.Location = new System.Drawing.Point(528, 74);
     this.btnPackage_DelAll.Name = "btnPackage_DelAll";
     this.btnPackage_DelAll.Size = new System.Drawing.Size(36, 23);
     this.btnPackage_DelAll.TabIndex = 93;
     this.btnPackage_DelAll.Text = "<<";
     this.btnPackage_DelAll.Click += new System.EventHandler(this.btnPackage_DelAll_Click);
     //
     // btnPackage_AddAll
     //
     this.btnPackage_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackage_AddAll.Location = new System.Drawing.Point(528, 46);
     this.btnPackage_AddAll.Name = "btnPackage_AddAll";
     this.btnPackage_AddAll.Size = new System.Drawing.Size(36, 23);
     this.btnPackage_AddAll.TabIndex = 92;
     this.btnPackage_AddAll.Text = ">>";
     this.btnPackage_AddAll.Click += new System.EventHandler(this.btnPackage_AddAll_Click);
     //
     // btnPackage_Add
     //
     this.btnPackage_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPackage_Add.Location = new System.Drawing.Point(528, 18);
     this.btnPackage_Add.Name = "btnPackage_Add";
     this.btnPackage_Add.Size = new System.Drawing.Size(36, 24);
     this.btnPackage_Add.TabIndex = 91;
     this.btnPackage_Add.Text = ">";
     this.btnPackage_Add.Click += new System.EventHandler(this.btnPackage_Add_Click);
     //
     // gdPackage2
     //
     this.gdPackage2.Location = new System.Drawing.Point(581, 14);
     this.gdPackage2.MainView = this.gvPackage2;
     this.gdPackage2.Name = "gdPackage2";
     this.gdPackage2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit2});
     this.gdPackage2.Size = new System.Drawing.Size(509, 184);
     this.gdPackage2.TabIndex = 95;
     this.gdPackage2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackage2});
     //
     // gvPackage2
     //
     this.gvPackage2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn26});
     this.gvPackage2.GridControl = this.gdPackage2;
     this.gvPackage2.Name = "gvPackage2";
     this.gvPackage2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackage2.OptionsCustomization.AllowFilter = false;
     this.gvPackage2.OptionsSelection.MultiSelect = true;
     this.gvPackage2.OptionsView.ShowGroupPanel = false;
     this.gvPackage2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn15, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gvPackage2.LostFocus += new System.EventHandler(this.gvPackage2_LostFocus);
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Product Code";
     this.gridColumn15.FieldName = "strPackageCode";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 104;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Description";
     this.gridColumn16.FieldName = "strDescription";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.OptionsColumn.AllowEdit = false;
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 1;
     this.gridColumn16.Width = 282;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Promotion Code";
     this.gridColumn17.FieldName = "strPromotionCode";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.OptionsColumn.AllowEdit = false;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "Max Quantity";
     this.gridColumn26.ColumnEdit = this.repositoryItemTextEdit2;
     this.gridColumn26.FieldName = "nMaxQty";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.OptionsFilter.AllowFilter = false;
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 2;
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     //
     // gdPackage
     //
     this.gdPackage.Location = new System.Drawing.Point(5, 14);
     this.gdPackage.MainView = this.gvPackage;
     this.gdPackage.Name = "gdPackage";
     this.gdPackage.Size = new System.Drawing.Size(509, 189);
     this.gdPackage.TabIndex = 90;
     this.gdPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackage});
     //
     // gvPackage
     //
     this.gvPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn18,
     this.gridColumn19});
     this.gvPackage.GridControl = this.gdPackage;
     this.gvPackage.Name = "gvPackage";
     this.gvPackage.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackage.OptionsBehavior.Editable = false;
     this.gvPackage.OptionsCustomization.AllowFilter = false;
     this.gvPackage.OptionsSelection.MultiSelect = true;
     this.gvPackage.OptionsView.ShowGroupPanel = false;
     this.gvPackage.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn18, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Product Code";
     this.gridColumn18.FieldName = "strPackageCode";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 107;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Description";
     this.gridColumn19.FieldName = "strDescription";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 279;
     //
     // btnPcReset
     //
     this.btnPcReset.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPcReset.Appearance.Options.UseFont = true;
     this.btnPcReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPcReset.Location = new System.Drawing.Point(557, 9);
     this.btnPcReset.Name = "btnPcReset";
     this.btnPcReset.Size = new System.Drawing.Size(86, 23);
     this.btnPcReset.TabIndex = 122;
     this.btnPcReset.Text = "Reset";
     this.btnPcReset.Click += new System.EventHandler(this.btnPcReset_Click);
     //
     // btnPcSearch
     //
     this.btnPcSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btnPcSearch.Appearance.Options.UseFont = true;
     this.btnPcSearch.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPcSearch.Location = new System.Drawing.Point(451, 9);
     this.btnPcSearch.Name = "btnPcSearch";
     this.btnPcSearch.Size = new System.Drawing.Size(87, 23);
     this.btnPcSearch.TabIndex = 121;
     this.btnPcSearch.Text = "Search";
     this.btnPcSearch.Click += new System.EventHandler(this.btnPcSearch_Click);
     //
     // txtPcItemCode
     //
     this.txtPcItemCode.EditValue = "";
     this.txtPcItemCode.Location = new System.Drawing.Point(96, 9);
     this.txtPcItemCode.Name = "txtPcItemCode";
     this.txtPcItemCode.Size = new System.Drawing.Size(115, 22);
     this.txtPcItemCode.TabIndex = 118;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(230, 9);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(77, 19);
     this.label5.TabIndex = 117;
     this.label5.Text = "Item Desc :";
     //
     // txtPcItemDesc
     //
     this.txtPcItemDesc.EditValue = "";
     this.txtPcItemDesc.Location = new System.Drawing.Point(317, 9);
     this.txtPcItemDesc.Name = "txtPcItemDesc";
     this.txtPcItemDesc.Size = new System.Drawing.Size(115, 22);
     this.txtPcItemDesc.TabIndex = 116;
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(10, 9);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(115, 19);
     this.label6.TabIndex = 115;
     this.label6.Text = "Item Code :";
     //
     // tabPromo_ReceiptSalesCategory
     //
     this.tabPromo_ReceiptSalesCategory.Controls.Add(this.groupControl4);
     this.tabPromo_ReceiptSalesCategory.Name = "tabPromo_ReceiptSalesCategory";
     this.tabPromo_ReceiptSalesCategory.Size = new System.Drawing.Size(951, 250);
     this.tabPromo_ReceiptSalesCategory.Text = "Receipt Sales Category";
     //
     // groupControl4
     //
     this.groupControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl4.Controls.Add(this.btnSales_Del);
     this.groupControl4.Controls.Add(this.btnSales_DelAll);
     this.groupControl4.Controls.Add(this.btnSales_AddAll);
     this.groupControl4.Controls.Add(this.btnSales_Add);
     this.groupControl4.Controls.Add(this.gridSales2);
     this.groupControl4.Controls.Add(this.gridSales);
     this.groupControl4.Location = new System.Drawing.Point(4, 18);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(1094, 213);
     this.groupControl4.TabIndex = 124;
     this.groupControl4.Text = "groupControl4";
     //
     // btnSales_Del
     //
     this.btnSales_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSales_Del.Location = new System.Drawing.Point(528, 102);
     this.btnSales_Del.Name = "btnSales_Del";
     this.btnSales_Del.Size = new System.Drawing.Size(36, 23);
     this.btnSales_Del.TabIndex = 94;
     this.btnSales_Del.Text = "<";
     this.btnSales_Del.Click += new System.EventHandler(this.btnSales_Del_Click);
     //
     // btnSales_DelAll
     //
     this.btnSales_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSales_DelAll.Location = new System.Drawing.Point(528, 74);
     this.btnSales_DelAll.Name = "btnSales_DelAll";
     this.btnSales_DelAll.Size = new System.Drawing.Size(36, 23);
     this.btnSales_DelAll.TabIndex = 93;
     this.btnSales_DelAll.Text = "<<";
     this.btnSales_DelAll.Click += new System.EventHandler(this.btnSales_DelAll_Click);
     //
     // btnSales_AddAll
     //
     this.btnSales_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSales_AddAll.Location = new System.Drawing.Point(528, 46);
     this.btnSales_AddAll.Name = "btnSales_AddAll";
     this.btnSales_AddAll.Size = new System.Drawing.Size(36, 23);
     this.btnSales_AddAll.TabIndex = 92;
     this.btnSales_AddAll.Text = ">>";
     this.btnSales_AddAll.Click += new System.EventHandler(this.btnSales_AddAll_Click);
     //
     // btnSales_Add
     //
     this.btnSales_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnSales_Add.Location = new System.Drawing.Point(528, 18);
     this.btnSales_Add.Name = "btnSales_Add";
     this.btnSales_Add.Size = new System.Drawing.Size(36, 24);
     this.btnSales_Add.TabIndex = 91;
     this.btnSales_Add.Text = ">";
     this.btnSales_Add.Click += new System.EventHandler(this.btnSales_Add_Click);
     //
     // gridSales2
     //
     this.gridSales2.Location = new System.Drawing.Point(581, 14);
     this.gridSales2.MainView = this.gvSales2;
     this.gridSales2.Name = "gridSales2";
     this.gridSales2.Size = new System.Drawing.Size(509, 184);
     this.gridSales2.TabIndex = 95;
     this.gridSales2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvSales2});
     //
     // gvSales2
     //
     this.gvSales2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn20,
     this.gridColumn21,
     this.gridColumn22});
     this.gvSales2.GridControl = this.gridSales2;
     this.gvSales2.Name = "gvSales2";
     this.gvSales2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvSales2.OptionsBehavior.Editable = false;
     this.gvSales2.OptionsCustomization.AllowFilter = false;
     this.gvSales2.OptionsSelection.MultiSelect = true;
     this.gvSales2.OptionsView.ShowGroupPanel = false;
     this.gvSales2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn20, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Sales Category Id";
     this.gridColumn20.FieldName = "nSalesCategoryID";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 0;
     this.gridColumn20.Width = 104;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "Description";
     this.gridColumn21.FieldName = "strDescription";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 1;
     this.gridColumn21.Width = 282;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "Promotion Code";
     this.gridColumn22.FieldName = "strPromotionCode";
     this.gridColumn22.Name = "gridColumn22";
     //
     // gridSales
     //
     this.gridSales.Location = new System.Drawing.Point(5, 14);
     this.gridSales.MainView = this.gvSales;
     this.gridSales.Name = "gridSales";
     this.gridSales.Size = new System.Drawing.Size(509, 189);
     this.gridSales.TabIndex = 90;
     this.gridSales.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvSales});
     //
     // gvSales
     //
     this.gvSales.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn23,
     this.gridColumn24});
     this.gvSales.GridControl = this.gridSales;
     this.gvSales.Name = "gvSales";
     this.gvSales.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvSales.OptionsBehavior.Editable = false;
     this.gvSales.OptionsCustomization.AllowFilter = false;
     this.gvSales.OptionsSelection.MultiSelect = true;
     this.gvSales.OptionsView.ShowGroupPanel = false;
     this.gvSales.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn23, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "Sales Category Id";
     this.gridColumn23.FieldName = "nSalesCategoryID";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 0;
     this.gridColumn23.Width = 107;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Description";
     this.gridColumn24.FieldName = "strDescription";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     this.gridColumn24.Width = 279;
     //
     // frmPromotion
     //
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(1000, 533);
     this.Controls.Add(this.grpMDPromotionBelow);
     this.Controls.Add(this.grpMDPromotionTop);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmPromotion";
     this.Text = "frmPromotion";
     this.Load += new System.EventHandler(this.frmPromotion_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionTop)).EndInit();
     this.grpMDPromotionTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Promotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Promotion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_DiscountCategory)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmPromotionType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbItemDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtStartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbApprovedStatus)).EndInit();
     this.Searchpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow)).EndInit();
     this.grpMDPromotionBelow.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPromotionBelow2)).EndInit();
     this.grpMDPromotionBelow2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TabControlPromotion)).EndInit();
     this.TabControlPromotion.ResumeLayout(false);
     this.tabPromo_Brnch.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvBranch)).EndInit();
     this.tabPromo_Freebies.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gdFreebies2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFreebies2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdFreebies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvFreebies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemStyle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtItemDesc.Properties)).EndInit();
     this.tabPromo_Package.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gdPackage2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackage2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gdPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPcItemCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPcItemDesc.Properties)).EndInit();
     this.tabPromo_ReceiptSalesCategory.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridSales2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridSales)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvSales)).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.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colAutoId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatmony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatrem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colestktaa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmostahek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsefa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colaccReview = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldateReview = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamantvisa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfcheek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colcheekno = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coltasleemdate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmostlemsheek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatincheek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfA = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarf = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coluserin_RealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colaccuser_RealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colusercheek_RealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditn2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.vQry98BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.vQry98TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry98TableAdapter();
     this.colActivate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colvisa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.vQry98BindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.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.gridControlData.DataSource = this.vQry98BindingSource;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(0, 53);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEditn2});
     this.gridControlData.Size = new System.Drawing.Size(734, 404);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colAutoId,
     this.colPersonId,
     this.colpersonName,
     this.colMMashatId,
     this.colamanatmony,
     this.colamanatrem,
     this.coldatein,
     this.colestktaa,
     this.colmostahek,
     this.colsefa,
     this.colaccReview,
     this.coldateReview,
     this.colamantvisa,
     this.colsarfcheek,
     this.colcheekno,
     this.coltasleemdate,
     this.colmostlemsheek,
     this.coldatincheek,
     this.colDofatSarfA,
     this.colDofatSarf,
     this.colMMashatName,
     this.colsarfnumber,
     this.colSyndicate,
     this.colSubCommitte,
     this.coluserin_RealName,
     this.colaccuser_RealName,
     this.colusercheek_RealName,
     this.colActivate,
     this.colvisa});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // colAutoId
     //
     this.colAutoId.AppearanceCell.Options.UseTextOptions = true;
     this.colAutoId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAutoId.AppearanceHeader.Options.UseTextOptions = true;
     this.colAutoId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAutoId.Caption = "تلقائي";
     this.colAutoId.FieldName = "AutoId";
     this.colAutoId.Name = "colAutoId";
     this.colAutoId.Visible = true;
     this.colAutoId.VisibleIndex = 0;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "كود الاب";
     this.colMMashatId.FieldName = "MMashatId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 3;
     //
     // colamanatmony
     //
     this.colamanatmony.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatmony.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatmony.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatmony.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatmony.Caption = "المبلغ";
     this.colamanatmony.FieldName = "amanatmony";
     this.colamanatmony.Name = "colamanatmony";
     this.colamanatmony.Visible = true;
     this.colamanatmony.VisibleIndex = 4;
     //
     // colamanatrem
     //
     this.colamanatrem.AppearanceCell.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanatrem.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanatrem.Caption = "ملاحظات";
     this.colamanatrem.FieldName = "amanatrem";
     this.colamanatrem.Name = "colamanatrem";
     this.colamanatrem.Visible = true;
     this.colamanatrem.VisibleIndex = 5;
     //
     // coldatein
     //
     this.coldatein.AppearanceCell.Options.UseTextOptions = true;
     this.coldatein.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatein.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatein.Caption = "تاريخ الادخال";
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 6;
     //
     // colestktaa
     //
     this.colestktaa.AppearanceCell.Options.UseTextOptions = true;
     this.colestktaa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.AppearanceHeader.Options.UseTextOptions = true;
     this.colestktaa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colestktaa.Caption = "استقطاع";
     this.colestktaa.FieldName = "estktaa";
     this.colestktaa.Name = "colestktaa";
     this.colestktaa.Visible = true;
     this.colestktaa.VisibleIndex = 7;
     //
     // colmostahek
     //
     this.colmostahek.AppearanceCell.Options.UseTextOptions = true;
     this.colmostahek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahek.AppearanceHeader.Options.UseTextOptions = true;
     this.colmostahek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostahek.Caption = "مستحق";
     this.colmostahek.FieldName = "mostahek";
     this.colmostahek.Name = "colmostahek";
     this.colmostahek.Visible = true;
     this.colmostahek.VisibleIndex = 8;
     //
     // colsefa
     //
     this.colsefa.AppearanceCell.Options.UseTextOptions = true;
     this.colsefa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsefa.AppearanceHeader.Options.UseTextOptions = true;
     this.colsefa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsefa.Caption = "صفه";
     this.colsefa.FieldName = "sefa";
     this.colsefa.Name = "colsefa";
     this.colsefa.Visible = true;
     this.colsefa.VisibleIndex = 9;
     //
     // colaccReview
     //
     this.colaccReview.AppearanceCell.Options.UseTextOptions = true;
     this.colaccReview.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccReview.AppearanceHeader.Options.UseTextOptions = true;
     this.colaccReview.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccReview.Caption = "مرجعه حسابات";
     this.colaccReview.FieldName = "accReview";
     this.colaccReview.Name = "colaccReview";
     this.colaccReview.Visible = true;
     this.colaccReview.VisibleIndex = 10;
     this.colaccReview.Width = 89;
     //
     // coldateReview
     //
     this.coldateReview.AppearanceCell.Options.UseTextOptions = true;
     this.coldateReview.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateReview.AppearanceHeader.Options.UseTextOptions = true;
     this.coldateReview.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldateReview.Caption = "تاريخ المراجعه";
     this.coldateReview.FieldName = "dateReview";
     this.coldateReview.Name = "coldateReview";
     this.coldateReview.Visible = true;
     this.coldateReview.VisibleIndex = 11;
     this.coldateReview.Width = 83;
     //
     // colamantvisa
     //
     this.colamantvisa.AppearanceCell.Options.UseTextOptions = true;
     this.colamantvisa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamantvisa.AppearanceHeader.Options.UseTextOptions = true;
     this.colamantvisa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamantvisa.Caption = "امانات فيزا";
     this.colamantvisa.FieldName = "amantvisa";
     this.colamantvisa.Name = "colamantvisa";
     this.colamantvisa.Visible = true;
     this.colamantvisa.VisibleIndex = 12;
     //
     // colsarfcheek
     //
     this.colsarfcheek.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfcheek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfcheek.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfcheek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfcheek.Caption = "صرف شيك";
     this.colsarfcheek.FieldName = "sarfcheek";
     this.colsarfcheek.Name = "colsarfcheek";
     this.colsarfcheek.Visible = true;
     this.colsarfcheek.VisibleIndex = 13;
     //
     // colcheekno
     //
     this.colcheekno.AppearanceCell.Options.UseTextOptions = true;
     this.colcheekno.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colcheekno.AppearanceHeader.Options.UseTextOptions = true;
     this.colcheekno.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colcheekno.Caption = "رقم الشيك";
     this.colcheekno.FieldName = "cheekno";
     this.colcheekno.Name = "colcheekno";
     this.colcheekno.Visible = true;
     this.colcheekno.VisibleIndex = 14;
     //
     // coltasleemdate
     //
     this.coltasleemdate.AppearanceCell.Options.UseTextOptions = true;
     this.coltasleemdate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coltasleemdate.AppearanceHeader.Options.UseTextOptions = true;
     this.coltasleemdate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coltasleemdate.Caption = "تاريخ الستليم";
     this.coltasleemdate.FieldName = "tasleemdate";
     this.coltasleemdate.Name = "coltasleemdate";
     this.coltasleemdate.Visible = true;
     this.coltasleemdate.VisibleIndex = 15;
     this.coltasleemdate.Width = 81;
     //
     // colmostlemsheek
     //
     this.colmostlemsheek.AppearanceCell.Options.UseTextOptions = true;
     this.colmostlemsheek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostlemsheek.AppearanceHeader.Options.UseTextOptions = true;
     this.colmostlemsheek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colmostlemsheek.Caption = "مستلم الشيك";
     this.colmostlemsheek.FieldName = "mostlemsheek";
     this.colmostlemsheek.Name = "colmostlemsheek";
     this.colmostlemsheek.Visible = true;
     this.colmostlemsheek.VisibleIndex = 16;
     this.colmostlemsheek.Width = 87;
     //
     // coldatincheek
     //
     this.coldatincheek.AppearanceCell.Options.UseTextOptions = true;
     this.coldatincheek.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatincheek.AppearanceHeader.Options.UseTextOptions = true;
     this.coldatincheek.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coldatincheek.Caption = "تاريخ ادخال الشيك";
     this.coldatincheek.FieldName = "datincheek";
     this.coldatincheek.Name = "coldatincheek";
     this.coldatincheek.Visible = true;
     this.coldatincheek.VisibleIndex = 17;
     this.coldatincheek.Width = 102;
     //
     // colDofatSarfA
     //
     this.colDofatSarfA.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfA.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfA.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfA.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfA.Caption = "دفعة الامانات";
     this.colDofatSarfA.FieldName = "DofatSarfA";
     this.colDofatSarfA.Name = "colDofatSarfA";
     this.colDofatSarfA.Visible = true;
     this.colDofatSarfA.VisibleIndex = 18;
     this.colDofatSarfA.Width = 78;
     //
     // colDofatSarf
     //
     this.colDofatSarf.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarf.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarf.Caption = "دفعة الصرف";
     this.colDofatSarf.FieldName = "DofatSarf";
     this.colDofatSarf.Name = "colDofatSarf";
     this.colDofatSarf.Visible = true;
     this.colDofatSarf.VisibleIndex = 19;
     //
     // colMMashatName
     //
     this.colMMashatName.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatName.Caption = "اسم الاب";
     this.colMMashatName.FieldName = "MMashatName";
     this.colMMashatName.Name = "colMMashatName";
     this.colMMashatName.Visible = true;
     this.colMMashatName.VisibleIndex = 20;
     //
     // colsarfnumber
     //
     this.colsarfnumber.AppearanceCell.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colsarfnumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colsarfnumber.Caption = "رقم الصرف";
     this.colsarfnumber.FieldName = "sarfnumber";
     this.colsarfnumber.Name = "colsarfnumber";
     this.colsarfnumber.Visible = true;
     this.colsarfnumber.VisibleIndex = 21;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 22;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "اللجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 23;
     //
     // coluserin_RealName
     //
     this.coluserin_RealName.AppearanceCell.Options.UseTextOptions = true;
     this.coluserin_RealName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin_RealName.AppearanceHeader.Options.UseTextOptions = true;
     this.coluserin_RealName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin_RealName.Caption = "مسئول الادخال";
     this.coluserin_RealName.FieldName = "userin_RealName";
     this.coluserin_RealName.Name = "coluserin_RealName";
     this.coluserin_RealName.Visible = true;
     this.coluserin_RealName.VisibleIndex = 24;
     this.coluserin_RealName.Width = 88;
     //
     // colaccuser_RealName
     //
     this.colaccuser_RealName.AppearanceCell.Options.UseTextOptions = true;
     this.colaccuser_RealName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccuser_RealName.AppearanceHeader.Options.UseTextOptions = true;
     this.colaccuser_RealName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colaccuser_RealName.Caption = "مسئول الحسابات";
     this.colaccuser_RealName.FieldName = "useracc_RealName";
     this.colaccuser_RealName.Name = "colaccuser_RealName";
     this.colaccuser_RealName.Visible = true;
     this.colaccuser_RealName.VisibleIndex = 25;
     this.colaccuser_RealName.Width = 99;
     //
     // colusercheek_RealName
     //
     this.colusercheek_RealName.AppearanceCell.Options.UseTextOptions = true;
     this.colusercheek_RealName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colusercheek_RealName.AppearanceHeader.Options.UseTextOptions = true;
     this.colusercheek_RealName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colusercheek_RealName.Caption = "مسئول الشيك";
     this.colusercheek_RealName.FieldName = "usercheek_RealName";
     this.colusercheek_RealName.Name = "colusercheek_RealName";
     this.colusercheek_RealName.Visible = true;
     this.colusercheek_RealName.VisibleIndex = 26;
     this.colusercheek_RealName.Width = 87;
     //
     // repositoryItemTextEditn2
     //
     this.repositoryItemTextEditn2.AutoHeight = false;
     this.repositoryItemTextEditn2.DisplayFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.EditFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.Mask.EditMask = "n2";
     this.repositoryItemTextEditn2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditn2.Name = "repositoryItemTextEditn2";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.btnPrintExport);
     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(734, 47);
     this.panelControl1.TabIndex = 4;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Location = new System.Drawing.Point(12, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // vQry98BindingSource
     //
     this.vQry98BindingSource.DataMember = "vQry98";
     this.vQry98BindingSource.DataSource = this.dsQueries;
     //
     // vQry98TableAdapter
     //
     this.vQry98TableAdapter.ClearBeforeFill = true;
     //
     // colActivate
     //
     this.colActivate.AppearanceCell.Options.UseTextOptions = true;
     this.colActivate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colActivate.AppearanceHeader.Options.UseTextOptions = true;
     this.colActivate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colActivate.Caption = "متاح (Activate)";
     this.colActivate.FieldName = "Activate";
     this.colActivate.Name = "colActivate";
     this.colActivate.Visible = true;
     this.colActivate.VisibleIndex = 27;
     this.colActivate.Width = 90;
     //
     // colvisa
     //
     this.colvisa.AppearanceCell.Options.UseTextOptions = true;
     this.colvisa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisa.AppearanceHeader.Options.UseTextOptions = true;
     this.colvisa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colvisa.Caption = "فيزا";
     this.colvisa.FieldName = "visa";
     this.colvisa.Name = "colvisa";
     this.colvisa.Visible = true;
     this.colvisa.VisibleIndex = 28;
     //
     // colPersonId
     //
     this.colPersonId.AppearanceCell.Options.UseTextOptions = true;
     this.colPersonId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId.AppearanceHeader.Options.UseTextOptions = true;
     this.colPersonId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId.Caption = "كود الوريث";
     this.colPersonId.FieldName = "PersonId";
     this.colPersonId.Name = "colPersonId";
     this.colPersonId.Visible = true;
     this.colPersonId.VisibleIndex = 1;
     //
     // colpersonName
     //
     this.colpersonName.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.Caption = "اسم الوريث";
     this.colpersonName.FieldName = "personName";
     this.colpersonName.Name = "colpersonName";
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 2;
     //
     // Qry98Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(734, 462);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.gridControlData);
     this.Name = "Qry98Frm";
     this.Text = "امانات لم ترحل - ورثة";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.vQry98BindingSource)).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(InvoiceForm));
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.boxSizedList = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.layoutControl3 = new DevExpress.XtraLayout.LayoutControl();
     this.lblPicklistPrintedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblPicklistConfirmedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblAppDate = new DevExpress.XtraEditors.LabelControl();
     this.lblIssueStatus = new DevExpress.XtraEditors.LabelControl();
     this.lblIssueTypes = new DevExpress.XtraEditors.LabelControl();
     this.lblissuedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblPaymentType = new DevExpress.XtraEditors.LabelControl();
     this.lblApprovedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblIssuedBy = new DevExpress.XtraEditors.LabelControl();
     this.lblRefNo = new DevExpress.XtraEditors.LabelControl();
     this.lblApprovedDate = new DevExpress.XtraEditors.LabelControl();
     this.lblInstitutionType = new DevExpress.XtraEditors.LabelControl();
     this.lblRegion = new DevExpress.XtraEditors.LabelControl();
     this.lblZone = new DevExpress.XtraEditors.LabelControl();
     this.lblWoreda = new DevExpress.XtraEditors.LabelControl();
     this.lblOwnership = new DevExpress.XtraEditors.LabelControl();
     this.lblMode = new DevExpress.XtraEditors.LabelControl();
     this.chkIncludeInsurance = new DevExpress.XtraEditors.CheckEdit();
     this.btnReturnToApprovalStep = new DevExpress.XtraEditors.SimpleButton();
     this.txtFacilityNameFilter = new DevExpress.XtraEditors.TextEdit();
     this.gridOutstandingPickLists = new DevExpress.XtraGrid.GridControl();
     this.gridOutstandingPickListView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnConfirmIssue1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancelIssue = new DevExpress.XtraEditors.SimpleButton();
     this.txtConfirmOrderNumber = new DevExpress.XtraEditors.TextEdit();
     this.txtConfirmApprovedBy = new DevExpress.XtraEditors.TextEdit();
     this.txtConfirmFromStore = new DevExpress.XtraEditors.TextEdit();
     this.txtConfirmRequestedBy = new DevExpress.XtraEditors.TextEdit();
     this.dtIssuedDate = new CalendarLib.DateTimePickerEx();
     this.txtRemarks = new DevExpress.XtraEditors.MemoEdit();
     this.txtIssueRefNo = new DevExpress.XtraEditors.TextEdit();
     this.gridOutstandingPicklistDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewConfirmation = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn76 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSKUPicked = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.colBUPicked = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCost = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn60 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn62 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.txtIssuedBy = new DevExpress.XtraEditors.TextEdit();
     this.lkMode = new DevExpress.XtraEditors.LookUpEdit();
     this.lkPaymentType = new DevExpress.XtraEditors.LookUpEdit();
     this.layoutControlItem18 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tabbedControlGroup1 = new DevExpress.XtraLayout.TabbedControlGroup();
     this.layoutControlGroup11 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem26 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem25 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem20 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem17 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem21 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem27 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem22 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup7 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup12 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.HeaderSection = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem23 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem24 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem30 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem31 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem32 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem28 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem29 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup13 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem19 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem42 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem43 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutSupplimentaryOrder = new DevExpress.XtraLayout.LayoutControlItem();
     this.lcOutstandingPicklists = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem50 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup5 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu();
     this.dxValidationProvider1 = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider();
     this.emptySpaceItem15 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup8 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup9 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup10 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem10 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem22 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem23 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem();
     this.printableComponentLink1 = new DevExpress.XtraPrinting.PrintableComponentLink();
     this.printOrder = new DevExpress.XtraPrinting.PrintableComponentLink();
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl3)).BeginInit();
     this.layoutControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkIncludeInsurance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityNameFilter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPickLists)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPickListView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmOrderNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmApprovedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmFromStore.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmRequestedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssueRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPicklistDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewConfirmation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssuedBy.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkMode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderSection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutSupplimentaryOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcOutstandingPicklists)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     this.SuspendLayout();
     //
     // boxSizedList
     //
     this.boxSizedList.AutoHeight = false;
     this.boxSizedList.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.boxSizedList.DisplayMember = "Name";
     this.boxSizedList.Name = "boxSizedList";
     this.boxSizedList.ValueMember = "ID";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // repositoryItemDateEdit3
     //
     this.repositoryItemDateEdit3.AutoHeight = false;
     this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEdit3.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemDateEdit3.EditFormat.FormatString = "mm-DD-YYYY";
     this.repositoryItemDateEdit3.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEdit3.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.DisplayText;
     this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
     //
     // repositoryItemButtonEdit4
     //
     this.repositoryItemButtonEdit4.AutoHeight = false;
     this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Plus)});
     this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
     this.repositoryItemButtonEdit4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // layoutControl3
     //
     this.layoutControl3.AllowCustomizationMenu = false;
     this.layoutControl3.Controls.Add(this.lblPicklistPrintedDate);
     this.layoutControl3.Controls.Add(this.lblPicklistConfirmedBy);
     this.layoutControl3.Controls.Add(this.lblAppDate);
     this.layoutControl3.Controls.Add(this.lblIssueStatus);
     this.layoutControl3.Controls.Add(this.lblIssueTypes);
     this.layoutControl3.Controls.Add(this.lblissuedDate);
     this.layoutControl3.Controls.Add(this.lblPaymentType);
     this.layoutControl3.Controls.Add(this.lblApprovedBy);
     this.layoutControl3.Controls.Add(this.lblIssuedBy);
     this.layoutControl3.Controls.Add(this.lblRefNo);
     this.layoutControl3.Controls.Add(this.lblApprovedDate);
     this.layoutControl3.Controls.Add(this.lblInstitutionType);
     this.layoutControl3.Controls.Add(this.lblRegion);
     this.layoutControl3.Controls.Add(this.lblZone);
     this.layoutControl3.Controls.Add(this.lblWoreda);
     this.layoutControl3.Controls.Add(this.lblOwnership);
     this.layoutControl3.Controls.Add(this.lblMode);
     this.layoutControl3.Controls.Add(this.chkIncludeInsurance);
     this.layoutControl3.Controls.Add(this.btnReturnToApprovalStep);
     this.layoutControl3.Controls.Add(this.txtFacilityNameFilter);
     this.layoutControl3.Controls.Add(this.gridOutstandingPickLists);
     this.layoutControl3.Controls.Add(this.simpleButton1);
     this.layoutControl3.Controls.Add(this.btnConfirmIssue1);
     this.layoutControl3.Controls.Add(this.btnCancelIssue);
     this.layoutControl3.Controls.Add(this.txtConfirmOrderNumber);
     this.layoutControl3.Controls.Add(this.txtConfirmApprovedBy);
     this.layoutControl3.Controls.Add(this.txtConfirmFromStore);
     this.layoutControl3.Controls.Add(this.txtConfirmRequestedBy);
     this.layoutControl3.Controls.Add(this.dtIssuedDate);
     this.layoutControl3.Controls.Add(this.txtRemarks);
     this.layoutControl3.Controls.Add(this.txtIssueRefNo);
     this.layoutControl3.Controls.Add(this.gridOutstandingPicklistDetail);
     this.layoutControl3.Controls.Add(this.txtIssuedBy);
     this.layoutControl3.Controls.Add(this.lkMode);
     this.layoutControl3.Controls.Add(this.lkPaymentType);
     this.layoutControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl3.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem18,
     this.tabbedControlGroup1,
     this.layoutControlItem26,
     this.layoutControlItem25,
     this.layoutControlItem20,
     this.layoutControlItem17,
     this.layoutControlItem21,
     this.layoutControlItem27,
     this.layoutControlItem22,
     this.layoutControlItem1,
     this.layoutControlItem12,
     this.layoutControlItem15});
     this.layoutControl3.Location = new System.Drawing.Point(0, 0);
     this.layoutControl3.Margin = new System.Windows.Forms.Padding(0);
     this.layoutControl3.Name = "layoutControl3";
     this.layoutControl3.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(330, 260, 250, 350);
     this.layoutControl3.Root = this.layoutControlGroup7;
     this.layoutControl3.Size = new System.Drawing.Size(1123, 575);
     this.layoutControl3.TabIndex = 37;
     this.layoutControl3.Text = "layoutControl3";
     //
     // lblPicklistPrintedDate
     //
     this.lblPicklistPrintedDate.Location = new System.Drawing.Point(823, 104);
     this.lblPicklistPrintedDate.Name = "lblPicklistPrintedDate";
     this.lblPicklistPrintedDate.Size = new System.Drawing.Size(91, 16);
     this.lblPicklistPrintedDate.StyleController = this.layoutControl3;
     this.lblPicklistPrintedDate.TabIndex = 63;
     //
     // lblPicklistConfirmedBy
     //
     this.lblPicklistConfirmedBy.Location = new System.Drawing.Point(823, 124);
     this.lblPicklistConfirmedBy.Name = "lblPicklistConfirmedBy";
     this.lblPicklistConfirmedBy.Size = new System.Drawing.Size(91, 16);
     this.lblPicklistConfirmedBy.StyleController = this.layoutControl3;
     this.lblPicklistConfirmedBy.TabIndex = 62;
     //
     // lblAppDate
     //
     this.lblAppDate.Location = new System.Drawing.Point(622, 104);
     this.lblAppDate.Name = "lblAppDate";
     this.lblAppDate.Size = new System.Drawing.Size(91, 16);
     this.lblAppDate.StyleController = this.layoutControl3;
     this.lblAppDate.TabIndex = 61;
     //
     // lblIssueStatus
     //
     this.lblIssueStatus.Location = new System.Drawing.Point(977, 104);
     this.lblIssueStatus.Name = "lblIssueStatus";
     this.lblIssueStatus.Size = new System.Drawing.Size(135, 16);
     this.lblIssueStatus.StyleController = this.layoutControl3;
     this.lblIssueStatus.TabIndex = 60;
     //
     // lblIssueTypes
     //
     this.lblIssueTypes.Location = new System.Drawing.Point(977, 124);
     this.lblIssueTypes.Name = "lblIssueTypes";
     this.lblIssueTypes.Size = new System.Drawing.Size(135, 16);
     this.lblIssueTypes.StyleController = this.layoutControl3;
     this.lblIssueTypes.TabIndex = 59;
     //
     // lblissuedDate
     //
     this.lblissuedDate.Location = new System.Drawing.Point(424, 104);
     this.lblissuedDate.Name = "lblissuedDate";
     this.lblissuedDate.Size = new System.Drawing.Size(87, 16);
     this.lblissuedDate.StyleController = this.layoutControl3;
     this.lblissuedDate.TabIndex = 58;
     //
     // lblPaymentType
     //
     this.lblPaymentType.Location = new System.Drawing.Point(384, 50);
     this.lblPaymentType.Name = "lblPaymentType";
     this.lblPaymentType.Size = new System.Drawing.Size(139, 16);
     this.lblPaymentType.StyleController = this.layoutControl3;
     this.lblPaymentType.TabIndex = 57;
     //
     // lblApprovedBy
     //
     this.lblApprovedBy.Location = new System.Drawing.Point(622, 124);
     this.lblApprovedBy.Name = "lblApprovedBy";
     this.lblApprovedBy.Size = new System.Drawing.Size(91, 16);
     this.lblApprovedBy.StyleController = this.layoutControl3;
     this.lblApprovedBy.TabIndex = 56;
     //
     // lblIssuedBy
     //
     this.lblIssuedBy.Location = new System.Drawing.Point(424, 124);
     this.lblIssuedBy.Name = "lblIssuedBy";
     this.lblIssuedBy.Size = new System.Drawing.Size(87, 16);
     this.lblIssuedBy.StyleController = this.layoutControl3;
     this.lblIssuedBy.TabIndex = 55;
     //
     // lblRefNo
     //
     this.lblRefNo.Location = new System.Drawing.Point(594, 50);
     this.lblRefNo.Name = "lblRefNo";
     this.lblRefNo.Size = new System.Drawing.Size(132, 16);
     this.lblRefNo.StyleController = this.layoutControl3;
     this.lblRefNo.TabIndex = 54;
     //
     // lblApprovedDate
     //
     this.lblApprovedDate.Location = new System.Drawing.Point(854, 104);
     this.lblApprovedDate.Name = "lblApprovedDate";
     this.lblApprovedDate.Size = new System.Drawing.Size(58, 16);
     this.lblApprovedDate.StyleController = this.layoutControl3;
     this.lblApprovedDate.TabIndex = 53;
     //
     // lblInstitutionType
     //
     this.lblInstitutionType.Location = new System.Drawing.Point(795, 50);
     this.lblInstitutionType.Name = "lblInstitutionType";
     this.lblInstitutionType.Size = new System.Drawing.Size(317, 16);
     this.lblInstitutionType.StyleController = this.layoutControl3;
     this.lblInstitutionType.TabIndex = 52;
     //
     // lblRegion
     //
     this.lblRegion.Location = new System.Drawing.Point(795, 70);
     this.lblRegion.Name = "lblRegion";
     this.lblRegion.Size = new System.Drawing.Size(317, 16);
     this.lblRegion.StyleController = this.layoutControl3;
     this.lblRegion.TabIndex = 51;
     //
     // lblZone
     //
     this.lblZone.Location = new System.Drawing.Point(594, 70);
     this.lblZone.Name = "lblZone";
     this.lblZone.Size = new System.Drawing.Size(132, 16);
     this.lblZone.StyleController = this.layoutControl3;
     this.lblZone.TabIndex = 50;
     //
     // lblWoreda
     //
     this.lblWoreda.Location = new System.Drawing.Point(384, 70);
     this.lblWoreda.Name = "lblWoreda";
     this.lblWoreda.Size = new System.Drawing.Size(139, 16);
     this.lblWoreda.StyleController = this.layoutControl3;
     this.lblWoreda.TabIndex = 49;
     //
     // lblOwnership
     //
     this.lblOwnership.Location = new System.Drawing.Point(594, 30);
     this.lblOwnership.Name = "lblOwnership";
     this.lblOwnership.Size = new System.Drawing.Size(518, 16);
     this.lblOwnership.StyleController = this.layoutControl3;
     this.lblOwnership.TabIndex = 48;
     //
     // lblMode
     //
     this.lblMode.Location = new System.Drawing.Point(384, 30);
     this.lblMode.Name = "lblMode";
     this.lblMode.Size = new System.Drawing.Size(139, 16);
     this.lblMode.StyleController = this.layoutControl3;
     this.lblMode.TabIndex = 47;
     //
     // chkIncludeInsurance
     //
     this.chkIncludeInsurance.Location = new System.Drawing.Point(318, 151);
     this.chkIncludeInsurance.Name = "chkIncludeInsurance";
     this.chkIncludeInsurance.Properties.Caption = "Include Insurance";
     this.chkIncludeInsurance.Size = new System.Drawing.Size(801, 19);
     this.chkIncludeInsurance.StyleController = this.layoutControl3;
     this.chkIncludeInsurance.TabIndex = 45;
     //
     // btnReturnToApprovalStep
     //
     this.btnReturnToApprovalStep.Image = global::HCMIS.Desktop.Properties.Resources.Undo;
     this.btnReturnToApprovalStep.Location = new System.Drawing.Point(685, 549);
     this.btnReturnToApprovalStep.Name = "btnReturnToApprovalStep";
     this.btnReturnToApprovalStep.Size = new System.Drawing.Size(142, 22);
     this.btnReturnToApprovalStep.StyleController = this.layoutControl3;
     this.btnReturnToApprovalStep.TabIndex = 39;
     this.btnReturnToApprovalStep.Text = "Return to SDO";
     this.btnReturnToApprovalStep.Click += new System.EventHandler(this.btnReturnToApprovalStep_Click);
     //
     // txtFacilityNameFilter
     //
     this.txtFacilityNameFilter.Location = new System.Drawing.Point(50, 62);
     this.txtFacilityNameFilter.Name = "txtFacilityNameFilter";
     this.txtFacilityNameFilter.Size = new System.Drawing.Size(243, 20);
     this.txtFacilityNameFilter.StyleController = this.layoutControl3;
     this.txtFacilityNameFilter.TabIndex = 44;
     this.txtFacilityNameFilter.EditValueChanged += new System.EventHandler(this.txtFacilityNameFilter_EditValueChanged);
     //
     // gridOutstandingPickLists
     //
     this.gridOutstandingPickLists.Location = new System.Drawing.Point(5, 98);
     this.gridOutstandingPickLists.MainView = this.gridOutstandingPickListView;
     this.gridOutstandingPickLists.Name = "gridOutstandingPickLists";
     this.gridOutstandingPickLists.Size = new System.Drawing.Size(300, 448);
     this.gridOutstandingPickLists.TabIndex = 0;
     this.gridOutstandingPickLists.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridOutstandingPickListView});
     //
     // gridOutstandingPickListView
     //
     this.gridOutstandingPickListView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn48,
     this.gridColumn49,
     this.gridColumn46});
     this.gridOutstandingPickListView.GridControl = this.gridOutstandingPickLists;
     this.gridOutstandingPickListView.GroupCount = 1;
     this.gridOutstandingPickListView.Name = "gridOutstandingPickListView";
     this.gridOutstandingPickListView.OptionsBehavior.Editable = false;
     this.gridOutstandingPickListView.OptionsCustomization.AllowColumnMoving = false;
     this.gridOutstandingPickListView.OptionsCustomization.AllowColumnResizing = false;
     this.gridOutstandingPickListView.OptionsCustomization.AllowSort = false;
     this.gridOutstandingPickListView.OptionsMenu.EnableColumnMenu = false;
     this.gridOutstandingPickListView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridOutstandingPickListView.OptionsSelection.UseIndicatorForSelection = false;
     this.gridOutstandingPickListView.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridOutstandingPickListView.OptionsView.ShowGroupPanel = false;
     this.gridOutstandingPickListView.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn46, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridOutstandingPickListView.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.OnOutstandingPicklistSelected);
     //
     // gridColumn48
     //
     this.gridColumn48.Caption = "Referance Number";
     this.gridColumn48.FieldName = "RefNo";
     this.gridColumn48.Name = "gridColumn48";
     this.gridColumn48.OptionsColumn.AllowEdit = false;
     this.gridColumn48.OptionsColumn.AllowFocus = false;
     this.gridColumn48.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn48.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsColumn.AllowMove = false;
     this.gridColumn48.OptionsColumn.AllowShowHide = false;
     this.gridColumn48.OptionsColumn.AllowSize = false;
     this.gridColumn48.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn48.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn48.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn48.OptionsFilter.AllowFilter = false;
     this.gridColumn48.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn48.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn48.Visible = true;
     this.gridColumn48.VisibleIndex = 0;
     //
     // gridColumn49
     //
     this.gridColumn49.Caption = "Requested By";
     this.gridColumn49.FieldName = "RequestedBy";
     this.gridColumn49.Name = "gridColumn49";
     this.gridColumn49.OptionsColumn.AllowEdit = false;
     this.gridColumn49.OptionsColumn.AllowFocus = false;
     this.gridColumn49.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn49.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsColumn.AllowMove = false;
     this.gridColumn49.OptionsColumn.AllowShowHide = false;
     this.gridColumn49.OptionsColumn.AllowSize = false;
     this.gridColumn49.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn49.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn49.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn49.OptionsFilter.AllowFilter = false;
     this.gridColumn49.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn49.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn49.Visible = true;
     this.gridColumn49.VisibleIndex = 1;
     this.gridColumn49.Width = 159;
     //
     // gridColumn46
     //
     this.gridColumn46.Caption = "Route";
     this.gridColumn46.FieldName = "RouteName";
     this.gridColumn46.Name = "gridColumn46";
     this.gridColumn46.OptionsColumn.AllowEdit = false;
     this.gridColumn46.OptionsColumn.AllowFocus = false;
     this.gridColumn46.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn46.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsColumn.AllowMove = false;
     this.gridColumn46.OptionsColumn.AllowShowHide = false;
     this.gridColumn46.OptionsColumn.AllowSize = false;
     this.gridColumn46.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsColumn.ShowInCustomizationForm = false;
     this.gridColumn46.OptionsColumn.ShowInExpressionEditor = false;
     this.gridColumn46.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn46.OptionsFilter.AllowFilter = false;
     this.gridColumn46.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn46.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.OptionsFilter.ImmediateUpdatePopupDateFilterOnDateChange = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn46.Visible = true;
     this.gridColumn46.VisibleIndex = 2;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(539, 549);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(142, 22);
     this.simpleButton1.StyleController = this.layoutControl3;
     this.simpleButton1.TabIndex = 43;
     this.simpleButton1.Text = "Supplimentary PickList";
     //
     // btnConfirmIssue1
     //
     this.btnConfirmIssue1.Image = ((System.Drawing.Image)(resources.GetObject("btnConfirmIssue1.Image")));
     this.btnConfirmIssue1.Location = new System.Drawing.Point(831, 549);
     this.btnConfirmIssue1.Name = "btnConfirmIssue1";
     this.btnConfirmIssue1.Size = new System.Drawing.Size(142, 22);
     this.btnConfirmIssue1.StyleController = this.layoutControl3;
     this.btnConfirmIssue1.TabIndex = 42;
     this.btnConfirmIssue1.Text = "Confirm Issue";
     this.btnConfirmIssue1.Click += new System.EventHandler(this.btnConfirmIssue_Click);
     //
     // btnCancelIssue
     //
     this.btnCancelIssue.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelIssue.Image")));
     this.btnCancelIssue.Location = new System.Drawing.Point(977, 549);
     this.btnCancelIssue.Name = "btnCancelIssue";
     this.btnCancelIssue.Size = new System.Drawing.Size(142, 22);
     this.btnCancelIssue.StyleController = this.layoutControl3;
     this.btnCancelIssue.TabIndex = 41;
     this.btnCancelIssue.Text = "Cancel";
     this.btnCancelIssue.Click += new System.EventHandler(this.btnCancelIssue_Click);
     //
     // txtConfirmOrderNumber
     //
     this.txtConfirmOrderNumber.Enabled = false;
     this.txtConfirmOrderNumber.Location = new System.Drawing.Point(378, 119);
     this.txtConfirmOrderNumber.Name = "txtConfirmOrderNumber";
     this.txtConfirmOrderNumber.Size = new System.Drawing.Size(217, 20);
     this.txtConfirmOrderNumber.StyleController = this.layoutControl3;
     this.txtConfirmOrderNumber.TabIndex = 40;
     //
     // txtConfirmApprovedBy
     //
     this.txtConfirmApprovedBy.Enabled = false;
     this.txtConfirmApprovedBy.Location = new System.Drawing.Point(938, 100);
     this.txtConfirmApprovedBy.Name = "txtConfirmApprovedBy";
     this.txtConfirmApprovedBy.Size = new System.Drawing.Size(50, 20);
     this.txtConfirmApprovedBy.StyleController = this.layoutControl3;
     this.txtConfirmApprovedBy.TabIndex = 39;
     //
     // txtConfirmFromStore
     //
     this.txtConfirmFromStore.Enabled = false;
     this.txtConfirmFromStore.Location = new System.Drawing.Point(527, 54);
     this.txtConfirmFromStore.Name = "txtConfirmFromStore";
     this.txtConfirmFromStore.Size = new System.Drawing.Size(201, 20);
     this.txtConfirmFromStore.StyleController = this.layoutControl3;
     this.txtConfirmFromStore.TabIndex = 38;
     //
     // txtConfirmRequestedBy
     //
     this.txtConfirmRequestedBy.Enabled = false;
     this.txtConfirmRequestedBy.Location = new System.Drawing.Point(378, 167);
     this.txtConfirmRequestedBy.Name = "txtConfirmRequestedBy";
     this.txtConfirmRequestedBy.Size = new System.Drawing.Size(217, 20);
     this.txtConfirmRequestedBy.StyleController = this.layoutControl3;
     this.txtConfirmRequestedBy.TabIndex = 37;
     //
     // dtIssuedDate
     //
     this.dtIssuedDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtIssuedDate.CalendarFont = new System.Drawing.Font("Nyala", 13F);
     this.dtIssuedDate.CalendarForeColor = System.Drawing.Color.Black;
     this.dtIssuedDate.DayOfWeekCharacters = 1;
     this.dtIssuedDate.Enabled = false;
     this.dtIssuedDate.ForeColor = System.Drawing.Color.Black;
     this.dtIssuedDate.Location = new System.Drawing.Point(590, 104);
     this.dtIssuedDate.MinDateTime = new System.DateTime(2002, 1, 12, 0, 0, 0, 0);
     this.dtIssuedDate.Name = "dtIssuedDate";
     this.dtIssuedDate.PopUpFontSize = 10F;
     this.dtIssuedDate.Size = new System.Drawing.Size(120, 36);
     this.dtIssuedDate.TabIndex = 28;
     this.dtIssuedDate.Value = new System.DateTime(2012, 1, 12, 0, 0, 0, 0);
     //
     // txtRemarks
     //
     this.txtRemarks.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.txtRemarks.Location = new System.Drawing.Point(343, 447);
     this.txtRemarks.Name = "txtRemarks";
     this.txtRemarks.Size = new System.Drawing.Size(235, 124);
     this.txtRemarks.StyleController = this.layoutControl3;
     this.txtRemarks.TabIndex = 32;
     //
     // txtIssueRefNo
     //
     this.txtIssueRefNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.txtIssueRefNo.Enabled = false;
     this.txtIssueRefNo.Location = new System.Drawing.Point(378, 100);
     this.txtIssueRefNo.Name = "txtIssueRefNo";
     this.txtIssueRefNo.Size = new System.Drawing.Size(50, 20);
     this.txtIssueRefNo.StyleController = this.layoutControl3;
     this.txtIssueRefNo.TabIndex = 34;
     //
     // gridOutstandingPicklistDetail
     //
     this.gridOutstandingPicklistDetail.Location = new System.Drawing.Point(318, 174);
     this.gridOutstandingPicklistDetail.MainView = this.gridViewConfirmation;
     this.gridOutstandingPicklistDetail.Margin = new System.Windows.Forms.Padding(0);
     this.gridOutstandingPicklistDetail.Name = "gridOutstandingPicklistDetail";
     this.gridOutstandingPicklistDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemMemoEdit3,
     this.repositoryItemTextEdit2});
     this.gridOutstandingPicklistDetail.Size = new System.Drawing.Size(801, 371);
     this.gridOutstandingPicklistDetail.TabIndex = 13;
     this.gridOutstandingPicklistDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewConfirmation});
     this.gridOutstandingPicklistDetail.DoubleClick += new System.EventHandler(this.gridOutstandingPicklistDetail_DoubleClick);
     //
     // gridViewConfirmation
     //
     this.gridViewConfirmation.Appearance.GroupFooter.BackColor = System.Drawing.Color.White;
     this.gridViewConfirmation.Appearance.GroupFooter.BackColor2 = System.Drawing.Color.White;
     this.gridViewConfirmation.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.gridViewConfirmation.Appearance.GroupFooter.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.gridViewConfirmation.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewConfirmation.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewConfirmation.Appearance.GroupFooter.Options.UseTextOptions = true;
     this.gridViewConfirmation.Appearance.GroupFooter.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewConfirmation.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.gridViewConfirmation.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gridViewConfirmation.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gridViewConfirmation.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewConfirmation.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewConfirmation.Appearance.GroupRow.Options.UseForeColor = true;
     this.gridViewConfirmation.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn76,
     this.gridColumn22,
     this.gridColumn23,
     this.gridColumn35,
     this.gridColumn36,
     this.gridColumn37,
     this.gridColumn38,
     this.gridColumn39,
     this.gridColumn40,
     this.colSKUPicked,
     this.colBUPicked,
     this.gridColumn47,
     this.colCost,
     this.gridColumn60,
     this.gridColumn62,
     this.gridColumn50});
     this.gridViewConfirmation.GridControl = this.gridOutstandingPicklistDetail;
     this.gridViewConfirmation.GroupCount = 1;
     this.gridViewConfirmation.Name = "gridViewConfirmation";
     this.gridViewConfirmation.OptionsBehavior.AutoExpandAllGroups = true;
     this.gridViewConfirmation.OptionsCustomization.AllowColumnMoving = false;
     this.gridViewConfirmation.OptionsCustomization.AllowColumnResizing = false;
     this.gridViewConfirmation.OptionsDetail.AllowExpandEmptyDetails = true;
     this.gridViewConfirmation.OptionsMenu.EnableColumnMenu = false;
     this.gridViewConfirmation.OptionsView.AllowCellMerge = true;
     this.gridViewConfirmation.OptionsView.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.Hidden;
     this.gridViewConfirmation.OptionsView.RowAutoHeight = true;
     this.gridViewConfirmation.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gridViewConfirmation.OptionsView.ShowFooter = true;
     this.gridViewConfirmation.OptionsView.ShowGroupPanel = false;
     this.gridViewConfirmation.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn22, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewConfirmation.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView2_CellValueChanged);
     //
     // gridColumn76
     //
     this.gridColumn76.Caption = "Unit";
     this.gridColumn76.FieldName = "Unit";
     this.gridColumn76.Name = "gridColumn76";
     this.gridColumn76.OptionsColumn.AllowEdit = false;
     this.gridColumn76.OptionsColumn.AllowFocus = false;
     this.gridColumn76.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn76.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsColumn.AllowMove = false;
     this.gridColumn76.OptionsColumn.AllowShowHide = false;
     this.gridColumn76.OptionsColumn.AllowSize = false;
     this.gridColumn76.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn76.OptionsFilter.AllowFilter = false;
     this.gridColumn76.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn76.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn76.Visible = true;
     this.gridColumn76.VisibleIndex = 4;
     //
     // gridColumn22
     //
     this.gridColumn22.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn22.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn22.Caption = "Item";
     this.gridColumn22.ColumnEdit = this.repositoryItemMemoEdit3;
     this.gridColumn22.FieldName = "FullItemName";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.OptionsColumn.AllowEdit = false;
     this.gridColumn22.OptionsColumn.AllowFocus = false;
     this.gridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsColumn.AllowMove = false;
     this.gridColumn22.OptionsColumn.AllowShowHide = false;
     this.gridColumn22.OptionsColumn.AllowSize = false;
     this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn22.OptionsFilter.AllowFilter = false;
     this.gridColumn22.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn22.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn22.Width = 84;
     //
     // repositoryItemMemoEdit3
     //
     this.repositoryItemMemoEdit3.Name = "repositoryItemMemoEdit3";
     //
     // gridColumn23
     //
     this.gridColumn23.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn23.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn23.Caption = "Manufacturer";
     this.gridColumn23.FieldName = "ManufacturerName";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.OptionsColumn.AllowEdit = false;
     this.gridColumn23.OptionsColumn.AllowFocus = false;
     this.gridColumn23.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn23.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsColumn.AllowMove = false;
     this.gridColumn23.OptionsColumn.AllowShowHide = false;
     this.gridColumn23.OptionsColumn.AllowSize = false;
     this.gridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn23.OptionsFilter.AllowFilter = false;
     this.gridColumn23.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn23.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 0;
     this.gridColumn23.Width = 103;
     //
     // gridColumn35
     //
     this.gridColumn35.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn35.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn35.Caption = "Pack Size";
     this.gridColumn35.FieldName = "BoxSizeDisplay";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.OptionsColumn.AllowEdit = false;
     this.gridColumn35.OptionsColumn.AllowFocus = false;
     this.gridColumn35.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn35.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsColumn.AllowMove = false;
     this.gridColumn35.OptionsColumn.AllowShowHide = false;
     this.gridColumn35.OptionsColumn.AllowSize = false;
     this.gridColumn35.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn35.OptionsFilter.AllowFilter = false;
     this.gridColumn35.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn35.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn35.Width = 120;
     //
     // gridColumn36
     //
     this.gridColumn36.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn36.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn36.Caption = "Packs To Pick";
     this.gridColumn36.DisplayFormat.FormatString = "#,###.##";
     this.gridColumn36.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn36.FieldName = "SKUTOPICK";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.OptionsColumn.AllowEdit = false;
     this.gridColumn36.OptionsColumn.AllowFocus = false;
     this.gridColumn36.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn36.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsColumn.AllowMove = false;
     this.gridColumn36.OptionsColumn.AllowShowHide = false;
     this.gridColumn36.OptionsColumn.AllowSize = false;
     this.gridColumn36.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn36.OptionsFilter.AllowFilter = false;
     this.gridColumn36.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn36.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 5;
     this.gridColumn36.Width = 101;
     //
     // gridColumn37
     //
     this.gridColumn37.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn37.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn37.Caption = "Batch";
     this.gridColumn37.FieldName = "BatchNumber";
     this.gridColumn37.Name = "gridColumn37";
     this.gridColumn37.OptionsColumn.AllowEdit = false;
     this.gridColumn37.OptionsColumn.AllowFocus = false;
     this.gridColumn37.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn37.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsColumn.AllowMove = false;
     this.gridColumn37.OptionsColumn.AllowShowHide = false;
     this.gridColumn37.OptionsColumn.AllowSize = false;
     this.gridColumn37.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn37.OptionsFilter.AllowFilter = false;
     this.gridColumn37.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn37.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn37.Visible = true;
     this.gridColumn37.VisibleIndex = 1;
     this.gridColumn37.Width = 67;
     //
     // gridColumn38
     //
     this.gridColumn38.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn38.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn38.Caption = "Expiry Date";
     this.gridColumn38.ColumnEdit = this.repositoryItemDateEdit3;
     this.gridColumn38.DisplayFormat.FormatString = "MMM/d/yyyy";
     this.gridColumn38.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn38.FieldName = "ExpireDate";
     this.gridColumn38.Name = "gridColumn38";
     this.gridColumn38.OptionsColumn.AllowEdit = false;
     this.gridColumn38.OptionsColumn.AllowFocus = false;
     this.gridColumn38.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn38.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsColumn.AllowMove = false;
     this.gridColumn38.OptionsColumn.AllowShowHide = false;
     this.gridColumn38.OptionsColumn.AllowSize = false;
     this.gridColumn38.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn38.OptionsFilter.AllowFilter = false;
     this.gridColumn38.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn38.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn38.Visible = true;
     this.gridColumn38.VisibleIndex = 2;
     this.gridColumn38.Width = 99;
     //
     // gridColumn39
     //
     this.gridColumn39.ColumnEdit = this.repositoryItemButtonEdit4;
     this.gridColumn39.Name = "gridColumn39";
     this.gridColumn39.OptionsColumn.AllowEdit = false;
     this.gridColumn39.OptionsColumn.AllowFocus = false;
     this.gridColumn39.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn39.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsColumn.AllowMove = false;
     this.gridColumn39.OptionsColumn.AllowShowHide = false;
     this.gridColumn39.OptionsColumn.AllowSize = false;
     this.gridColumn39.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn39.OptionsFilter.AllowFilter = false;
     this.gridColumn39.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn39.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn39.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.gridColumn39.Width = 25;
     //
     // gridColumn40
     //
     this.gridColumn40.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn40.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn40.Caption = "Volume";
     this.gridColumn40.FieldName = "Volume";
     this.gridColumn40.Name = "gridColumn40";
     this.gridColumn40.OptionsColumn.AllowEdit = false;
     this.gridColumn40.OptionsColumn.AllowFocus = false;
     this.gridColumn40.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn40.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsColumn.AllowMove = false;
     this.gridColumn40.OptionsColumn.AllowShowHide = false;
     this.gridColumn40.OptionsColumn.AllowSize = false;
     this.gridColumn40.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn40.OptionsFilter.AllowFilter = false;
     this.gridColumn40.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn40.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn40.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     //
     // colSKUPicked
     //
     this.colSKUPicked.Caption = "Packs Picked";
     this.colSKUPicked.ColumnEdit = this.repositoryItemTextEdit2;
     this.colSKUPicked.DisplayFormat.FormatString = "#,###";
     this.colSKUPicked.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colSKUPicked.FieldName = "SKUPICKED";
     this.colSKUPicked.Name = "colSKUPicked";
     this.colSKUPicked.OptionsColumn.AllowEdit = false;
     this.colSKUPicked.OptionsColumn.AllowFocus = false;
     this.colSKUPicked.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsColumn.AllowIncrementalSearch = false;
     this.colSKUPicked.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsColumn.AllowMove = false;
     this.colSKUPicked.OptionsColumn.AllowShowHide = false;
     this.colSKUPicked.OptionsColumn.AllowSize = false;
     this.colSKUPicked.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsFilter.AllowAutoFilter = false;
     this.colSKUPicked.OptionsFilter.AllowFilter = false;
     this.colSKUPicked.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colSKUPicked.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colSKUPicked.Width = 78;
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     //
     // colBUPicked
     //
     this.colBUPicked.Caption = "Qty picked in BU";
     this.colBUPicked.DisplayFormat.FormatString = "#,###";
     this.colBUPicked.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colBUPicked.FieldName = "BUPICKED";
     this.colBUPicked.GroupFormat.FormatString = "#,###";
     this.colBUPicked.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colBUPicked.Name = "colBUPicked";
     this.colBUPicked.OptionsColumn.AllowEdit = false;
     this.colBUPicked.OptionsColumn.AllowFocus = false;
     this.colBUPicked.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsColumn.AllowIncrementalSearch = false;
     this.colBUPicked.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsColumn.AllowMove = false;
     this.colBUPicked.OptionsColumn.AllowShowHide = false;
     this.colBUPicked.OptionsColumn.AllowSize = false;
     this.colBUPicked.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsFilter.AllowAutoFilter = false;
     this.colBUPicked.OptionsFilter.AllowFilter = false;
     this.colBUPicked.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colBUPicked.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colBUPicked.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum)});
     this.colBUPicked.Width = 102;
     //
     // gridColumn47
     //
     this.gridColumn47.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn47.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn47.Caption = "Location";
     this.gridColumn47.FieldName = "PalletLocation";
     this.gridColumn47.Name = "gridColumn47";
     this.gridColumn47.OptionsColumn.AllowEdit = false;
     this.gridColumn47.OptionsColumn.AllowFocus = false;
     this.gridColumn47.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn47.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsColumn.AllowMove = false;
     this.gridColumn47.OptionsColumn.AllowShowHide = false;
     this.gridColumn47.OptionsColumn.AllowSize = false;
     this.gridColumn47.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn47.OptionsFilter.AllowFilter = false;
     this.gridColumn47.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn47.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn47.Visible = true;
     this.gridColumn47.VisibleIndex = 3;
     this.gridColumn47.Width = 100;
     //
     // colCost
     //
     this.colCost.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.colCost.AppearanceCell.Options.UseBackColor = true;
     this.colCost.Caption = "Price";
     this.colCost.DisplayFormat.FormatString = "#,##0.#0";
     this.colCost.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colCost.FieldName = "Cost";
     this.colCost.GroupFormat.FormatString = "#,###.##";
     this.colCost.GroupFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colCost.Name = "colCost";
     this.colCost.OptionsColumn.AllowEdit = false;
     this.colCost.OptionsColumn.AllowFocus = false;
     this.colCost.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsColumn.AllowIncrementalSearch = false;
     this.colCost.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsColumn.AllowMove = false;
     this.colCost.OptionsColumn.AllowShowHide = false;
     this.colCost.OptionsColumn.AllowSize = false;
     this.colCost.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsFilter.AllowAutoFilter = false;
     this.colCost.OptionsFilter.AllowFilter = false;
     this.colCost.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.colCost.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.colCost.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Cost", "{0:#,###.##}")});
     this.colCost.Visible = true;
     this.colCost.VisibleIndex = 7;
     this.colCost.Width = 85;
     //
     // gridColumn60
     //
     this.gridColumn60.Caption = "Units";
     this.gridColumn60.FieldName = "SKUBU";
     this.gridColumn60.Name = "gridColumn60";
     this.gridColumn60.OptionsColumn.AllowEdit = false;
     this.gridColumn60.OptionsColumn.AllowFocus = false;
     this.gridColumn60.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn60.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsColumn.AllowMove = false;
     this.gridColumn60.OptionsColumn.AllowShowHide = false;
     this.gridColumn60.OptionsColumn.AllowSize = false;
     this.gridColumn60.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn60.OptionsFilter.AllowFilter = false;
     this.gridColumn60.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn60.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn60.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     //
     // gridColumn62
     //
     this.gridColumn62.Caption = "Unit Price";
     this.gridColumn62.DisplayFormat.FormatString = "#,##0.#0";
     this.gridColumn62.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn62.FieldName = "UnitPrice";
     this.gridColumn62.Name = "gridColumn62";
     this.gridColumn62.OptionsColumn.AllowEdit = false;
     this.gridColumn62.OptionsColumn.AllowFocus = false;
     this.gridColumn62.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn62.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsColumn.AllowMove = false;
     this.gridColumn62.OptionsColumn.AllowShowHide = false;
     this.gridColumn62.OptionsColumn.AllowSize = false;
     this.gridColumn62.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn62.OptionsFilter.AllowFilter = false;
     this.gridColumn62.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn62.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn62.Visible = true;
     this.gridColumn62.VisibleIndex = 6;
     //
     // gridColumn50
     //
     this.gridColumn50.AppearanceCell.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridColumn50.AppearanceCell.Options.UseBackColor = true;
     this.gridColumn50.Caption = "Packs to Pick";
     this.gridColumn50.FieldName = "Packs";
     this.gridColumn50.Name = "gridColumn50";
     this.gridColumn50.OptionsColumn.AllowEdit = false;
     this.gridColumn50.OptionsColumn.AllowFocus = false;
     this.gridColumn50.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsColumn.AllowIncrementalSearch = false;
     this.gridColumn50.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsColumn.AllowMove = false;
     this.gridColumn50.OptionsColumn.AllowShowHide = false;
     this.gridColumn50.OptionsColumn.AllowSize = false;
     this.gridColumn50.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn50.OptionsFilter.AllowFilter = false;
     this.gridColumn50.OptionsFilter.AllowFilterModeChanging = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsFilter.FilterBySortField = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.OptionsFilter.ImmediateUpdateAutoFilter = false;
     this.gridColumn50.OptionsFilter.ImmediateUpdatePopupDateFilterOnCheck = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn50.Width = 77;
     //
     // txtIssuedBy
     //
     this.txtIssuedBy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.txtIssuedBy.Enabled = false;
     this.txtIssuedBy.Location = new System.Drawing.Point(609, 124);
     this.txtIssuedBy.Name = "txtIssuedBy";
     this.txtIssuedBy.Size = new System.Drawing.Size(53, 20);
     this.txtIssuedBy.StyleController = this.layoutControl3;
     this.txtIssuedBy.TabIndex = 31;
     //
     // lkMode
     //
     this.lkMode.EditValue = "Select Mode";
     this.lkMode.Location = new System.Drawing.Point(50, 36);
     this.lkMode.Name = "lkMode";
     this.lkMode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkMode.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("TypeName", "Name")});
     this.lkMode.Properties.DisplayMember = "TypeName";
     this.lkMode.Properties.PopupSizeable = false;
     this.lkMode.Properties.ShowFooter = false;
     this.lkMode.Properties.ShowHeader = false;
     this.lkMode.Properties.ValueMember = "ID";
     this.lkMode.Size = new System.Drawing.Size(243, 20);
     this.lkMode.StyleController = this.layoutControl3;
     this.lkMode.TabIndex = 46;
     this.lkMode.EditValueChanged += new System.EventHandler(this.lkMode_EditValueChanged);
     //
     // lkPaymentType
     //
     this.lkPaymentType.EditValue = "Select Payment Type";
     this.lkPaymentType.Enabled = false;
     this.lkPaymentType.Location = new System.Drawing.Point(867, 30);
     this.lkPaymentType.Margin = new System.Windows.Forms.Padding(0);
     this.lkPaymentType.Name = "lkPaymentType";
     this.lkPaymentType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkPaymentType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "Name")});
     this.lkPaymentType.Properties.DisplayMember = "Name";
     this.lkPaymentType.Properties.PopupSizeable = false;
     this.lkPaymentType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lkPaymentType.Properties.ValueMember = "ID";
     this.lkPaymentType.Size = new System.Drawing.Size(127, 20);
     this.lkPaymentType.StyleController = this.layoutControl3;
     this.lkPaymentType.TabIndex = 38;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxValidationProvider1.SetValidationRule(this.lkPaymentType, conditionValidationRule1);
     this.lkPaymentType.EditValueChanged += new System.EventHandler(this.lkPaymentType_EditValueChanged);
     this.lkPaymentType.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.cboCashCredit_EditValueChanging);
     //
     // layoutControlItem18
     //
     this.layoutControlItem18.CustomizationFormText = "layoutControlItem18";
     this.layoutControlItem18.Location = new System.Drawing.Point(387, 72);
     this.layoutControlItem18.Name = "layoutControlItem18";
     this.layoutControlItem18.Size = new System.Drawing.Size(330, 24);
     this.layoutControlItem18.Text = "layoutControlItem18";
     this.layoutControlItem18.TextSize = new System.Drawing.Size(100, 0);
     this.layoutControlItem18.TextToControlDistance = 0;
     this.layoutControlItem18.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // tabbedControlGroup1
     //
     this.tabbedControlGroup1.CustomizationFormText = "tabbedControlGroup1";
     this.tabbedControlGroup1.Location = new System.Drawing.Point(421, 241);
     this.tabbedControlGroup1.Name = "tabbedControlGroup1";
     this.tabbedControlGroup1.SelectedTabPage = this.layoutControlGroup11;
     this.tabbedControlGroup1.SelectedTabPageIndex = 0;
     this.tabbedControlGroup1.Size = new System.Drawing.Size(148, 132);
     this.tabbedControlGroup1.TabPages.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup11});
     this.tabbedControlGroup1.Text = "tabbedControlGroup1";
     //
     // layoutControlGroup11
     //
     this.layoutControlGroup11.CustomizationFormText = "layoutControlGroup11";
     this.layoutControlGroup11.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup11.Name = "layoutControlGroup11";
     this.layoutControlGroup11.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup11.Size = new System.Drawing.Size(124, 86);
     this.layoutControlGroup11.Text = "layoutControlGroup11";
     //
     // layoutControlItem26
     //
     this.layoutControlItem26.Control = this.txtConfirmFromStore;
     this.layoutControlItem26.CustomizationFormText = "layoutControlItem26";
     this.layoutControlItem26.Location = new System.Drawing.Point(189, 50);
     this.layoutControlItem26.Name = "layoutControlItem26";
     this.layoutControlItem26.Size = new System.Drawing.Size(310, 24);
     this.layoutControlItem26.Text = "From Store";
     this.layoutControlItem26.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem26.TextToControlDistance = 5;
     //
     // layoutControlItem25
     //
     this.layoutControlItem25.Control = this.txtConfirmRequestedBy;
     this.layoutControlItem25.CustomizationFormText = "layoutControlItem25";
     this.layoutControlItem25.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem25.Name = "layoutControlItem25";
     this.layoutControlItem25.Size = new System.Drawing.Size(326, 24);
     this.layoutControlItem25.Text = "Requested By";
     this.layoutControlItem25.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem25.TextToControlDistance = 5;
     //
     // layoutControlItem20
     //
     this.layoutControlItem20.Control = this.txtConfirmOrderNumber;
     this.layoutControlItem20.CustomizationFormText = "Order Number";
     this.layoutControlItem20.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem20.Name = "layoutControlItem20";
     this.layoutControlItem20.Size = new System.Drawing.Size(326, 24);
     this.layoutControlItem20.Text = "Order Number";
     this.layoutControlItem20.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem20.TextToControlDistance = 5;
     //
     // layoutControlItem17
     //
     this.layoutControlItem17.Control = this.txtIssueRefNo;
     this.layoutControlItem17.CustomizationFormText = "Ref. No";
     this.layoutControlItem17.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem17.Name = "layoutControlItem17";
     this.layoutControlItem17.Size = new System.Drawing.Size(159, 24);
     this.layoutControlItem17.Text = "Ref. No:";
     this.layoutControlItem17.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem17.TextToControlDistance = 5;
     //
     // layoutControlItem21
     //
     this.layoutControlItem21.Control = this.txtIssuedBy;
     this.layoutControlItem21.CustomizationFormText = "Issued By";
     this.layoutControlItem21.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem21.Name = "layoutControlItem21";
     this.layoutControlItem21.Size = new System.Drawing.Size(144, 24);
     this.layoutControlItem21.Text = "Issued By";
     this.layoutControlItem21.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem21.TextToControlDistance = 5;
     //
     // layoutControlItem27
     //
     this.layoutControlItem27.Control = this.txtConfirmApprovedBy;
     this.layoutControlItem27.CustomizationFormText = "Approved By";
     this.layoutControlItem27.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem27.Name = "layoutControlItem27";
     this.layoutControlItem27.Size = new System.Drawing.Size(158, 24);
     this.layoutControlItem27.Text = "Approved By";
     this.layoutControlItem27.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem27.TextToControlDistance = 5;
     //
     // layoutControlItem22
     //
     this.layoutControlItem22.Control = this.txtRemarks;
     this.layoutControlItem22.CustomizationFormText = "Remarks";
     this.layoutControlItem22.Location = new System.Drawing.Point(257, 443);
     this.layoutControlItem22.Name = "layoutControlItem22";
     this.layoutControlItem22.Size = new System.Drawing.Size(321, 128);
     this.layoutControlItem22.Text = "Remarks";
     this.layoutControlItem22.TextSize = new System.Drawing.Size(100, 13);
     this.layoutControlItem22.TextToControlDistance = 5;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.lkPaymentType;
     this.layoutControlItem1.CustomizationFormText = "Payment Type";
     this.layoutControlItem1.Location = new System.Drawing.Point(468, 0);
     this.layoutControlItem1.MinSize = new System.Drawing.Size(128, 24);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(205, 24);
     this.layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem1.Text = "Payment Type";
     this.layoutControlItem1.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(69, 13);
     this.layoutControlItem1.TextToControlDistance = 5;
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem12.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem12.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem12.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem12.Control = this.lblApprovedDate;
     this.layoutControlItem12.CustomizationFormText = "Approved Date:";
     this.layoutControlItem12.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem12.MaxSize = new System.Drawing.Size(188, 20);
     this.layoutControlItem12.MinSize = new System.Drawing.Size(188, 20);
     this.layoutControlItem12.Name = "layoutControlItem12";
     this.layoutControlItem12.Size = new System.Drawing.Size(188, 20);
     this.layoutControlItem12.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem12.Text = "Approved Date:";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(121, 13);
     this.layoutControlItem12.TextToControlDistance = 5;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.Control = this.dtIssuedDate;
     this.layoutControlItem15.CustomizationFormText = "Issued Date";
     this.layoutControlItem15.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem15.MinSize = new System.Drawing.Size(186, 24);
     this.layoutControlItem15.Name = "layoutControlItem15";
     this.layoutControlItem15.Size = new System.Drawing.Size(187, 40);
     this.layoutControlItem15.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem15.Text = "Issued Date";
     this.layoutControlItem15.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem15.TextSize = new System.Drawing.Size(58, 13);
     this.layoutControlItem15.TextToControlDistance = 5;
     //
     // layoutControlGroup7
     //
     this.layoutControlGroup7.CustomizationFormText = "layoutControlGroup7";
     this.layoutControlGroup7.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup7.GroupBordersVisible = false;
     this.layoutControlGroup7.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup12,
     this.layoutControlGroup13,
     this.layoutControlItem42,
     this.layoutControlItem43,
     this.layoutSupplimentaryOrder,
     this.lcOutstandingPicklists,
     this.layoutControlItem3,
     this.emptySpaceItem2,
     this.emptySpaceItem3});
     this.layoutControlGroup7.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup7.Name = "Root";
     this.layoutControlGroup7.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup7.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup7.Size = new System.Drawing.Size(1123, 575);
     this.layoutControlGroup7.Text = "Root";
     this.layoutControlGroup7.TextVisible = false;
     //
     // layoutControlGroup12
     //
     this.layoutControlGroup12.CustomizationFormText = "Order Headers";
     this.layoutControlGroup12.GroupBordersVisible = false;
     this.layoutControlGroup12.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.HeaderSection,
     this.layoutControlGroup2,
     this.layoutControlGroup3,
     this.layoutControlGroup4,
     this.layoutControlGroup1});
     this.layoutControlGroup12.Location = new System.Drawing.Point(314, 0);
     this.layoutControlGroup12.Name = "layoutControlGroup12";
     this.layoutControlGroup12.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup12.Size = new System.Drawing.Size(805, 147);
     this.layoutControlGroup12.Text = "Order Headers";
     //
     // HeaderSection
     //
     this.HeaderSection.AppearanceGroup.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.HeaderSection.AppearanceGroup.Options.UseFont = true;
     this.HeaderSection.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     this.HeaderSection.AppearanceItemCaption.Options.UseFont = true;
     this.HeaderSection.CustomizationFormText = " ";
     this.HeaderSection.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem6,
     this.layoutControlItem7,
     this.layoutControlItem8,
     this.layoutControlItem9,
     this.layoutControlItem10,
     this.layoutControlItem23,
     this.layoutControlItem11,
     this.layoutControlItem13});
     this.HeaderSection.Location = new System.Drawing.Point(0, 0);
     this.HeaderSection.Name = "HeaderSection";
     this.HeaderSection.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.HeaderSection.Size = new System.Drawing.Size(805, 93);
     this.HeaderSection.Text = " ";
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem6.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem6.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem6.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem6.Control = this.lblMode;
     this.layoutControlItem6.CustomizationFormText = "Mode:";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(51, 20);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(202, 20);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.Text = "Mode:";
     this.layoutControlItem6.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(34, 13);
     this.layoutControlItem6.TextToControlDistance = 25;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem7.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem7.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem7.Control = this.lblOwnership;
     this.layoutControlItem7.CustomizationFormText = "Ownership Type:";
     this.layoutControlItem7.Location = new System.Drawing.Point(202, 0);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(64, 17);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(589, 20);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.Text = "Ownership:";
     this.layoutControlItem7.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(62, 13);
     this.layoutControlItem7.TextToControlDistance = 5;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem8.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem8.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem8.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem8.Control = this.lblWoreda;
     this.layoutControlItem8.CustomizationFormText = "Woreda:";
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 40);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(51, 20);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(202, 20);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.Text = "Woreda:";
     this.layoutControlItem8.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem8.TextSize = new System.Drawing.Size(47, 13);
     this.layoutControlItem8.TextToControlDistance = 12;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem9.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem9.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem9.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem9.Control = this.lblZone;
     this.layoutControlItem9.CustomizationFormText = "Zone:";
     this.layoutControlItem9.Location = new System.Drawing.Point(202, 40);
     this.layoutControlItem9.MinSize = new System.Drawing.Size(78, 17);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(203, 20);
     this.layoutControlItem9.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem9.Text = "Zone:";
     this.layoutControlItem9.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem9.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem9.TextToControlDistance = 36;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem10.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem10.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem10.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem10.Control = this.lblRegion;
     this.layoutControlItem10.CustomizationFormText = "Region:";
     this.layoutControlItem10.Location = new System.Drawing.Point(405, 40);
     this.layoutControlItem10.MinSize = new System.Drawing.Size(66, 17);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(386, 20);
     this.layoutControlItem10.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem10.Text = "Region:";
     this.layoutControlItem10.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem10.TextSize = new System.Drawing.Size(42, 13);
     this.layoutControlItem10.TextToControlDistance = 23;
     //
     // layoutControlItem23
     //
     this.layoutControlItem23.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem23.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem23.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem23.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem23.Control = this.lblPaymentType;
     this.layoutControlItem23.CustomizationFormText = "Payment Type:";
     this.layoutControlItem23.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem23.MinSize = new System.Drawing.Size(82, 17);
     this.layoutControlItem23.Name = "layoutControlItem23";
     this.layoutControlItem23.Size = new System.Drawing.Size(202, 20);
     this.layoutControlItem23.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem23.Text = "Payment:";
     this.layoutControlItem23.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem23.TextSize = new System.Drawing.Size(54, 13);
     this.layoutControlItem23.TextToControlDistance = 5;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem11.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem11.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem11.Control = this.lblInstitutionType;
     this.layoutControlItem11.CustomizationFormText = "Type:";
     this.layoutControlItem11.Location = new System.Drawing.Point(405, 20);
     this.layoutControlItem11.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem11.MinSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem11.Name = "layoutControlItem11";
     this.layoutControlItem11.Size = new System.Drawing.Size(386, 20);
     this.layoutControlItem11.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem11.Text = "Inst. Type:";
     this.layoutControlItem11.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem11.TextSize = new System.Drawing.Size(60, 13);
     this.layoutControlItem11.TextToControlDistance = 5;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem13.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem13.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem13.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem13.Control = this.lblRefNo;
     this.layoutControlItem13.CustomizationFormText = "Ref. No:";
     this.layoutControlItem13.Location = new System.Drawing.Point(202, 20);
     this.layoutControlItem13.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem13.MinSize = new System.Drawing.Size(50, 20);
     this.layoutControlItem13.Name = "layoutControlItem13";
     this.layoutControlItem13.Size = new System.Drawing.Size(203, 20);
     this.layoutControlItem13.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem13.Text = "Ref. No:";
     this.layoutControlItem13.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem13.TextSize = new System.Drawing.Size(42, 13);
     this.layoutControlItem13.TextToControlDistance = 25;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem24,
     this.layoutControlItem14});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 93);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup2.Size = new System.Drawing.Size(204, 54);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlItem24
     //
     this.layoutControlItem24.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem24.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem24.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem24.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem24.Control = this.lblissuedDate;
     this.layoutControlItem24.CustomizationFormText = "Issued Date:";
     this.layoutControlItem24.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem24.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem24.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem24.Name = "layoutControlItem24";
     this.layoutControlItem24.Size = new System.Drawing.Size(190, 20);
     this.layoutControlItem24.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem24.Text = "Requested Date:";
     this.layoutControlItem24.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem24.TextSize = new System.Drawing.Size(94, 13);
     this.layoutControlItem24.TextToControlDistance = 5;
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem14.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem14.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem14.Control = this.lblIssuedBy;
     this.layoutControlItem14.CustomizationFormText = "Issued By:";
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem14.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem14.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem14.Name = "layoutControlItem14";
     this.layoutControlItem14.Size = new System.Drawing.Size(190, 20);
     this.layoutControlItem14.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem14.Text = "Requested By:";
     this.layoutControlItem14.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem14.TextSize = new System.Drawing.Size(81, 13);
     this.layoutControlItem14.TextToControlDistance = 18;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem16,
     this.layoutControlItem30});
     this.layoutControlGroup3.Location = new System.Drawing.Point(204, 93);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup3.Size = new System.Drawing.Size(202, 54);
     this.layoutControlGroup3.Text = "layoutControlGroup3";
     this.layoutControlGroup3.TextVisible = false;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem16.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem16.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem16.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem16.Control = this.lblApprovedBy;
     this.layoutControlItem16.CustomizationFormText = "Approved By:";
     this.layoutControlItem16.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem16.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem16.MinSize = new System.Drawing.Size(86, 20);
     this.layoutControlItem16.Name = "layoutControlItem16";
     this.layoutControlItem16.Size = new System.Drawing.Size(188, 20);
     this.layoutControlItem16.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem16.Text = "Approved By:";
     this.layoutControlItem16.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem16.TextSize = new System.Drawing.Size(75, 13);
     this.layoutControlItem16.TextToControlDistance = 18;
     //
     // layoutControlItem30
     //
     this.layoutControlItem30.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem30.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem30.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem30.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem30.Control = this.lblAppDate;
     this.layoutControlItem30.CustomizationFormText = "Approved Date:";
     this.layoutControlItem30.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem30.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem30.Name = "layoutControlItem30";
     this.layoutControlItem30.Size = new System.Drawing.Size(188, 20);
     this.layoutControlItem30.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem30.Text = "Approved Date:";
     this.layoutControlItem30.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem30.TextSize = new System.Drawing.Size(88, 13);
     this.layoutControlItem30.TextToControlDistance = 5;
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem31,
     this.layoutControlItem32});
     this.layoutControlGroup4.Location = new System.Drawing.Point(406, 93);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup4.Size = new System.Drawing.Size(201, 54);
     this.layoutControlGroup4.Text = "layoutControlGroup4";
     this.layoutControlGroup4.TextVisible = false;
     //
     // layoutControlItem31
     //
     this.layoutControlItem31.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem31.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem31.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem31.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem31.Control = this.lblPicklistConfirmedBy;
     this.layoutControlItem31.CustomizationFormText = "Picklist Confirmed By:";
     this.layoutControlItem31.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem31.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem31.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem31.Name = "layoutControlItem31";
     this.layoutControlItem31.Size = new System.Drawing.Size(187, 20);
     this.layoutControlItem31.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem31.Text = "Picklisted By:";
     this.layoutControlItem31.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem31.TextSize = new System.Drawing.Size(74, 13);
     this.layoutControlItem31.TextToControlDistance = 18;
     //
     // layoutControlItem32
     //
     this.layoutControlItem32.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem32.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem32.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem32.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem32.Control = this.lblPicklistPrintedDate;
     this.layoutControlItem32.CustomizationFormText = "Picklisted Date:";
     this.layoutControlItem32.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem32.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem32.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem32.Name = "layoutControlItem32";
     this.layoutControlItem32.Size = new System.Drawing.Size(187, 20);
     this.layoutControlItem32.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem32.Text = "Picklisted Date:";
     this.layoutControlItem32.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem32.TextSize = new System.Drawing.Size(87, 13);
     this.layoutControlItem32.TextToControlDistance = 5;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem28,
     this.layoutControlItem29});
     this.layoutControlGroup1.Location = new System.Drawing.Point(607, 93);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(4, 4, 4, 4);
     this.layoutControlGroup1.Size = new System.Drawing.Size(198, 54);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem28
     //
     this.layoutControlItem28.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem28.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem28.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem28.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem28.Control = this.lblIssueTypes;
     this.layoutControlItem28.CustomizationFormText = "Issue Type:";
     this.layoutControlItem28.Location = new System.Drawing.Point(0, 20);
     this.layoutControlItem28.MaxSize = new System.Drawing.Size(0, 20);
     this.layoutControlItem28.MinSize = new System.Drawing.Size(67, 20);
     this.layoutControlItem28.Name = "layoutControlItem28";
     this.layoutControlItem28.Size = new System.Drawing.Size(184, 20);
     this.layoutControlItem28.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem28.Text = "Type:";
     this.layoutControlItem28.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem28.TextSize = new System.Drawing.Size(31, 13);
     this.layoutControlItem28.TextToControlDistance = 14;
     //
     // layoutControlItem29
     //
     this.layoutControlItem29.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.layoutControlItem29.AppearanceItemCaption.ForeColor = System.Drawing.Color.Gray;
     this.layoutControlItem29.AppearanceItemCaption.Options.UseFont = true;
     this.layoutControlItem29.AppearanceItemCaption.Options.UseForeColor = true;
     this.layoutControlItem29.Control = this.lblIssueStatus;
     this.layoutControlItem29.CustomizationFormText = "Issue Status:";
     this.layoutControlItem29.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem29.MinSize = new System.Drawing.Size(67, 17);
     this.layoutControlItem29.Name = "layoutControlItem29";
     this.layoutControlItem29.Size = new System.Drawing.Size(184, 20);
     this.layoutControlItem29.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem29.Text = "Status:";
     this.layoutControlItem29.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem29.TextSize = new System.Drawing.Size(40, 13);
     this.layoutControlItem29.TextToControlDistance = 5;
     //
     // layoutControlGroup13
     //
     this.layoutControlGroup13.CustomizationFormText = "Pick List Confirmation";
     this.layoutControlGroup13.GroupBordersVisible = false;
     this.layoutControlGroup13.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem19,
     this.layoutControlItem4});
     this.layoutControlGroup13.Location = new System.Drawing.Point(314, 147);
     this.layoutControlGroup13.Name = "layoutControlGroup13";
     this.layoutControlGroup13.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup13.Size = new System.Drawing.Size(805, 398);
     this.layoutControlGroup13.Text = "Pick List Confirmation";
     //
     // layoutControlItem19
     //
     this.layoutControlItem19.Control = this.gridOutstandingPicklistDetail;
     this.layoutControlItem19.CustomizationFormText = "layoutControlItem19";
     this.layoutControlItem19.Location = new System.Drawing.Point(0, 23);
     this.layoutControlItem19.Name = "layoutControlItem19";
     this.layoutControlItem19.Size = new System.Drawing.Size(805, 375);
     this.layoutControlItem19.Text = "layoutControlItem19";
     this.layoutControlItem19.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem19.TextToControlDistance = 0;
     this.layoutControlItem19.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.chkIncludeInsurance;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(805, 23);
     this.layoutControlItem4.Text = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible = false;
     //
     // layoutControlItem42
     //
     this.layoutControlItem42.Control = this.btnCancelIssue;
     this.layoutControlItem42.CustomizationFormText = "layoutControlItem42";
     this.layoutControlItem42.Location = new System.Drawing.Point(973, 545);
     this.layoutControlItem42.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem42.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem42.Name = "layoutControlItem42";
     this.layoutControlItem42.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem42.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem42.Text = "layoutControlItem42";
     this.layoutControlItem42.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem42.TextToControlDistance = 0;
     this.layoutControlItem42.TextVisible = false;
     //
     // layoutControlItem43
     //
     this.layoutControlItem43.Control = this.btnConfirmIssue1;
     this.layoutControlItem43.CustomizationFormText = "layoutControlItem43";
     this.layoutControlItem43.Location = new System.Drawing.Point(827, 545);
     this.layoutControlItem43.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem43.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem43.Name = "layoutControlItem43";
     this.layoutControlItem43.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem43.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem43.Text = "layoutControlItem43";
     this.layoutControlItem43.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem43.TextToControlDistance = 0;
     this.layoutControlItem43.TextVisible = false;
     //
     // layoutSupplimentaryOrder
     //
     this.layoutSupplimentaryOrder.Control = this.simpleButton1;
     this.layoutSupplimentaryOrder.CustomizationFormText = "layoutSupplimentaryOrder";
     this.layoutSupplimentaryOrder.Location = new System.Drawing.Point(535, 545);
     this.layoutSupplimentaryOrder.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutSupplimentaryOrder.MinSize = new System.Drawing.Size(146, 26);
     this.layoutSupplimentaryOrder.Name = "layoutSupplimentaryOrder";
     this.layoutSupplimentaryOrder.Size = new System.Drawing.Size(146, 26);
     this.layoutSupplimentaryOrder.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutSupplimentaryOrder.Text = "layoutSupplimentaryOrder";
     this.layoutSupplimentaryOrder.TextSize = new System.Drawing.Size(0, 0);
     this.layoutSupplimentaryOrder.TextToControlDistance = 0;
     this.layoutSupplimentaryOrder.TextVisible = false;
     this.layoutSupplimentaryOrder.Visibility = DevExpress.XtraLayout.Utils.LayoutVisibility.Never;
     //
     // lcOutstandingPicklists
     //
     this.lcOutstandingPicklists.CustomizationFormText = "Outstanding Pick Lists";
     this.lcOutstandingPicklists.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem50,
     this.layoutControlGroup5,
     this.emptySpaceItem1});
     this.lcOutstandingPicklists.Location = new System.Drawing.Point(0, 0);
     this.lcOutstandingPicklists.Name = "lcOutstandingPicklists";
     this.lcOutstandingPicklists.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.lcOutstandingPicklists.Size = new System.Drawing.Size(306, 571);
     this.lcOutstandingPicklists.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.lcOutstandingPicklists.Text = "Outstanding Pick Lists";
     this.lcOutstandingPicklists.TextLocation = DevExpress.Utils.Locations.Left;
     this.lcOutstandingPicklists.TextVisible = false;
     //
     // layoutControlItem50
     //
     this.layoutControlItem50.Control = this.gridOutstandingPickLists;
     this.layoutControlItem50.CustomizationFormText = "layoutControlItem50";
     this.layoutControlItem50.Location = new System.Drawing.Point(0, 93);
     this.layoutControlItem50.MaxSize = new System.Drawing.Size(304, 0);
     this.layoutControlItem50.MinSize = new System.Drawing.Size(304, 24);
     this.layoutControlItem50.Name = "layoutControlItem50";
     this.layoutControlItem50.Size = new System.Drawing.Size(304, 452);
     this.layoutControlItem50.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem50.Text = "layoutControlItem50";
     this.layoutControlItem50.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem50.TextToControlDistance = 0;
     this.layoutControlItem50.TextVisible = false;
     //
     // layoutControlGroup5
     //
     this.layoutControlGroup5.CustomizationFormText = "Filter";
     this.layoutControlGroup5.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2,
     this.layoutControlItem5});
     this.layoutControlGroup5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup5.Name = "layoutControlGroup5";
     this.layoutControlGroup5.Size = new System.Drawing.Size(304, 93);
     this.layoutControlGroup5.Text = "Filter";
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.txtFacilityNameFilter;
     this.layoutControlItem2.ControlAlignment = System.Drawing.ContentAlignment.BottomLeft;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(300, 24);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(236, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(280, 24);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "Filter:";
     this.layoutControlItem2.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(28, 13);
     this.layoutControlItem2.TextToControlDistance = 5;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.lkMode;
     this.layoutControlItem5.CustomizationFormText = "Mode";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(85, 20);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(280, 26);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.Text = "Mode:";
     this.layoutControlItem5.TextAlignMode = DevExpress.XtraLayout.TextAlignModeItem.AutoSize;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(30, 13);
     this.layoutControlItem5.TextToControlDistance = 3;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 545);
     this.emptySpaceItem1.MaxSize = new System.Drawing.Size(0, 24);
     this.emptySpaceItem1.MinSize = new System.Drawing.Size(104, 24);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(304, 24);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnReturnToApprovalStep;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(681, 545);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(146, 26);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(146, 26);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.Text = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible = false;
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.AllowHotTrack = false;
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(314, 545);
     this.emptySpaceItem2.MaxSize = new System.Drawing.Size(0, 26);
     this.emptySpaceItem2.MinSize = new System.Drawing.Size(10, 26);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(221, 26);
     this.emptySpaceItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.AllowHotTrack = false;
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(306, 0);
     this.emptySpaceItem3.MaxSize = new System.Drawing.Size(8, 0);
     this.emptySpaceItem3.MinSize = new System.Drawing.Size(8, 10);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(8, 571);
     this.emptySpaceItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // popupMenu1
     //
     this.popupMenu1.Name = "popupMenu1";
     //
     // emptySpaceItem15
     //
     this.emptySpaceItem15.AllowHotTrack = false;
     this.emptySpaceItem15.CustomizationFormText = "emptySpaceItem15";
     this.emptySpaceItem15.Location = new System.Drawing.Point(0, 116);
     this.emptySpaceItem15.Name = "emptySpaceItem15";
     this.emptySpaceItem15.Size = new System.Drawing.Size(717, 10);
     this.emptySpaceItem15.Text = "emptySpaceItem15";
     this.emptySpaceItem15.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup8
     //
     this.layoutControlGroup8.CustomizationFormText = "layoutControlGroup8";
     this.layoutControlGroup8.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup8.Name = "layoutControlGroup8";
     this.layoutControlGroup8.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup8.Size = new System.Drawing.Size(717, 116);
     this.layoutControlGroup8.Text = "layoutControlGroup8";
     //
     // layoutControlGroup9
     //
     this.layoutControlGroup9.CustomizationFormText = "layoutControlGroup9";
     this.layoutControlGroup9.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup9.Name = "layoutControlGroup9";
     this.layoutControlGroup9.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup9.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup9.Text = "layoutControlGroup9";
     //
     // layoutControlGroup10
     //
     this.layoutControlGroup10.CustomizationFormText = "layoutControlGroup10";
     this.layoutControlGroup10.Location = new System.Drawing.Point(0, 126);
     this.layoutControlGroup10.Name = "layoutControlGroup10";
     this.layoutControlGroup10.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup10.Size = new System.Drawing.Size(717, 68);
     this.layoutControlGroup10.Text = "layoutControlGroup10";
     //
     // emptySpaceItem10
     //
     this.emptySpaceItem10.AllowHotTrack = false;
     this.emptySpaceItem10.CustomizationFormText = "emptySpaceItem10";
     this.emptySpaceItem10.Location = new System.Drawing.Point(0, 0);
     this.emptySpaceItem10.Name = "emptySpaceItem10";
     this.emptySpaceItem10.Size = new System.Drawing.Size(693, 10);
     this.emptySpaceItem10.Text = "emptySpaceItem10";
     this.emptySpaceItem10.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem22
     //
     this.emptySpaceItem22.AllowHotTrack = false;
     this.emptySpaceItem22.CustomizationFormText = "emptySpaceItem22";
     this.emptySpaceItem22.Location = new System.Drawing.Point(85, 0);
     this.emptySpaceItem22.Name = "emptySpaceItem22";
     this.emptySpaceItem22.Size = new System.Drawing.Size(119, 479);
     this.emptySpaceItem22.Text = "emptySpaceItem22";
     this.emptySpaceItem22.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem23
     //
     this.emptySpaceItem23.AllowHotTrack = false;
     this.emptySpaceItem23.CustomizationFormText = "emptySpaceItem23";
     this.emptySpaceItem23.Location = new System.Drawing.Point(1179, 24);
     this.emptySpaceItem23.Name = "emptySpaceItem23";
     this.emptySpaceItem23.Size = new System.Drawing.Size(10, 455);
     this.emptySpaceItem23.Text = "emptySpaceItem23";
     this.emptySpaceItem23.TextSize = new System.Drawing.Size(0, 0);
     //
     // printingSystem1
     //
     this.printingSystem1.Links.AddRange(new object[] {
     this.printableComponentLink1,
     this.printOrder});
     //
     // printableComponentLink1
     //
     this.printableComponentLink1.Landscape = true;
     this.printableComponentLink1.Margins = new System.Drawing.Printing.Margins(20, 20, 20, 20);
     this.printableComponentLink1.PageHeaderFooter = new DevExpress.XtraPrinting.PageHeaderFooter(null, new DevExpress.XtraPrinting.PageFooterArea(new string[] {
         "[Time Printed]",
         "[Date Printed]",
         "[Page # of Pages #]"}, new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))), DevExpress.XtraPrinting.BrickAlignment.Near));
     this.printableComponentLink1.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printableComponentLink1.PrintingSystemBase = this.printingSystem1;
     this.printableComponentLink1.RtfReportHeader = resources.GetString("printableComponentLink1.RtfReportHeader");
     //
     // printOrder
     //
     this.printOrder.Landscape = true;
     this.printOrder.PaperKind = System.Drawing.Printing.PaperKind.A4;
     this.printOrder.PrintingSystemBase = this.printingSystem1;
     //
     // InvoiceForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1123, 575);
     this.Controls.Add(this.layoutControl3);
     this.Name = "InvoiceForm";
     this.Text = "Order";
     this.Load += new System.EventHandler(this.OrderForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.boxSizedList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl3)).EndInit();
     this.layoutControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chkIncludeInsurance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFacilityNameFilter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPickLists)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPickListView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmOrderNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmApprovedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmFromStore.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtConfirmRequestedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemarks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssueRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridOutstandingPicklistDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewConfirmation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtIssuedBy.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkMode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkPaymentType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem18)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabbedControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem26)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem25)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem20)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem17)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem21)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem27)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderSection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem24)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem30)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem31)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem32)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem28)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem29)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem19)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem42)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem43)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutSupplimentaryOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lcOutstandingPicklists)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem50)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxValidationProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem22)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem23)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     this.ResumeLayout(false);
 }
Example #35
0
        public void loadpnk(string active, string role, DevExpress.XtraGrid.GridControl gridControl1, GridView gridView1, TextEdit txtsct, ComboBoxEdit cbldt, LookUpEdit ledv, DateEdit denct, DateEdit denht,
                            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit mahang, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit soluong, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit dongia, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit thanhtien, Frm_phieunhapvo F, LookUpEdit ledt, TextEdit txtldn, TextEdit txtctg,
                            ToolStripButton tsbtsua, ToolStripButton tsbtxoa, ToolStripButton tsbtcat, ToolStripButton tsbtboghi, ToolStripButton tsbtghiso, ToolStripButton tsbtnap, ToolStripSplitButton tsbtin, string ngaychungtu, string userid, string branchid, TextEdit txtngh, TextEdit txtptvc, DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit taikhoan, ToolStripSplitButton tsbttruoc, ToolStripSplitButton tsbtsau, DataTable khach, DataTable hang, CheckEdit chtc)
        {
            DataTable dt = new DataTable();

            loadstart(gridControl1, gridView1, cbldt, ledv, denct, denht, mahang, soluong, dongia, thanhtien, ledt, tsbtsua, tsbtxoa, tsbtcat, tsbtboghi, tsbtghiso, tsbtnap, tsbtin, ngaychungtu, userid, branchid, active, dt, taikhoan, khach, hang);
            if (active == "1")
            {
                DataTable da = new DataTable();
                da = gen.GetTable("select  InventoryItemCode,Quantity,QuantityConvert,Description,InventoryItemName,a.UnitPrice,a.Amount,CreditAccount,DebitAccount,a.UnitPriceConvertOC,a.AmountOC from INInwardSUDetail a,InventoryItem b where a.InventoryItemID=b.InventoryItemID and RefID='" + role + "' order by SortOrder");
                for (int i = 0; i < da.Rows.Count; i++)
                {
                    DataRow dr = dt.NewRow();
                    dr[0] = da.Rows[i][8].ToString();
                    dr[1] = da.Rows[i][7].ToString();
                    dr[2] = da.Rows[i][0].ToString();
                    dr[3] = da.Rows[i][4].ToString();
                    dr[4] = da.Rows[i][1].ToString();
                    dr[5] = da.Rows[i][5].ToString();
                    dr[6] = da.Rows[i][6].ToString();

                    if (da.Rows[i][8].ToString() == "131" || da.Rows[i][7].ToString() == "331")
                    {
                        dr[7] = "True";
                    }
                    if (da.Rows[i][7].ToString() == "34412" || da.Rows[i][8].ToString() == "24412")
                    {
                        dr[9] = "True";
                    }
                    if (da.Rows[i][7].ToString() == "131")
                    {
                        dr[8] = "True";
                    }

                    if (da.Rows[i][9].ToString() != "")
                    {
                        dr[10] = da.Rows[i][9].ToString();
                    }
                    if (da.Rows[i][10].ToString() != "")
                    {
                        dr[11] = da.Rows[i][10].ToString();
                    }

                    dr[12] = da.Rows[i][3].ToString();
                    dt.Rows.Add(dr);
                }
                gridControl1.DataSource = dt;
                tsbtcat.Enabled         = false;

                F.Text = "Xem phiếu nhập Vỏ";
                da     = gen.GetTable("select AccountingObjectCode,a.Contactname,JournalMemo,DocumentIncluded,RefDate,PostedDate,RefNo,StockCode,Posted,AccountingObjectType,Cancel,ShippingNo,InwardType  from INInwardSU a, AccountingObject b,Stock c where a.AccountingObjectID=b.AccountingObjectID and a.StockID=c.StockID and RefID='" + role + "'");
                try
                {
                    cbldt.SelectedIndex = Int32.Parse(da.Rows[0][9].ToString());
                }
                catch { }
                ledv.EditValue = da.Rows[0][7].ToString();
                ledt.EditValue = da.Rows[0][0].ToString();
                try
                {
                    txtldn.Text = da.Rows[0][2].ToString();
                }
                catch { }
                txtctg.Text     = da.Rows[0][3].ToString();
                denct.EditValue = DateTime.Parse(da.Rows[0][4].ToString());
                denht.EditValue = DateTime.Parse(da.Rows[0][5].ToString());
                txtsct.Text     = da.Rows[0][6].ToString();
                txtngh.Text     = da.Rows[0][1].ToString();
                txtptvc.Text    = da.Rows[0][11].ToString();
                if (da.Rows[0][8].ToString() == "True")
                {
                    tsbtghiso.Visible = false;
                    tsbtboghi.Visible = true;
                    tsbtsua.Enabled   = false;
                }
                else
                {
                    tsbtboghi.Visible = false;
                    tsbtghiso.Visible = true;
                }
                if (da.Rows[0][10].ToString() == "True")
                {
                    tsbtboghi.Enabled = false;
                    tsbtghiso.Enabled = false;
                }
                if (da.Rows[0][12].ToString() == "True")
                {
                    chtc.Checked = true;
                }
                checktruocsau(tsbttruoc, tsbtsau, ledv.EditValue.ToString(), txtsct.Text, ngaychungtu);
            }
            else
            {
                F.Text = "Thêm phiếu nhập Vỏ";
                if (role == null)
                {
                    ledv.ItemIndex = 0;
                }
                else
                {
                    ledv.EditValue = role;
                }
                chtc.Checked    = false;
                denht.EditValue = DateTime.Parse(ngaychungtu);
                denct.EditValue = DateTime.Parse(ngaychungtu);
            }
        }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.tabPage = new DevExpress.XtraTab.XtraTabPage();
     this.vGridControl = new DevExpress.XtraVerticalGrid.VGridControl();
     this.ItemTextEditUID = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditLineName = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditRemark = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditcol1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditcol2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.ItemTextEditcol3 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.rowUID = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowLineName = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowRemark = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowcol1 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowcol2 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.rowcol3 = new DevExpress.XtraVerticalGrid.Rows.EditorRow();
     this.btnOK = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.tabPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.vGridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditUID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditLineName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditRemark)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditcol1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditcol2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditcol3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl
     //
     this.panelControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.panelControl.Controls.Add(this.xtraTabControl1);
     this.panelControl.Controls.Add(this.btnOK);
     this.panelControl.Controls.Add(this.btnCancel);
     this.panelControl.Location = new System.Drawing.Point(3, 3);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(395, 195);
     this.panelControl.TabIndex = 0;
     this.panelControl.Text = "panelControl1";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.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.xtraTabControl1.Location = new System.Drawing.Point(7, 7);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.tabPage;
     this.xtraTabControl1.Size = new System.Drawing.Size(382, 153);
     this.xtraTabControl1.TabIndex = 1;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.tabPage});
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // tabPage
     //
     this.tabPage.Controls.Add(this.vGridControl);
     this.tabPage.Name = "tabPage";
     this.tabPage.Size = new System.Drawing.Size(378, 138);
     //
     // vGridControl
     //
     this.vGridControl.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.vGridControl.Location = new System.Drawing.Point(3, 3);
     this.vGridControl.Name = "vGridControl";
     this.vGridControl.RecordWidth = 234;
     this.vGridControl.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.ItemTextEditUID,
     this.ItemTextEditLineName,
     this.ItemTextEditRemark,
     this.ItemTextEditcol1,
     this.ItemTextEditcol2,
     this.ItemTextEditcol3,
     this.repositoryItemMemoEdit1});
     this.vGridControl.RowHeaderWidth = 129;
     this.vGridControl.Rows.AddRange(new DevExpress.XtraVerticalGrid.Rows.BaseRow[] {
     this.rowUID,
     this.rowLineName,
     this.rowRemark,
     this.rowcol1,
     this.rowcol2,
     this.rowcol3});
     this.vGridControl.Size = new System.Drawing.Size(371, 131);
     this.vGridControl.TabIndex = 0;
     //
     // ItemTextEditUID
     //
     this.ItemTextEditUID.AutoHeight = false;
     this.ItemTextEditUID.MaxLength = 50;
     this.ItemTextEditUID.Name = "ItemTextEditUID";
     //
     // ItemTextEditLineName
     //
     this.ItemTextEditLineName.AutoHeight = false;
     this.ItemTextEditLineName.MaxLength = 50;
     this.ItemTextEditLineName.Name = "ItemTextEditLineName";
     //
     // ItemTextEditRemark
     //
     this.ItemTextEditRemark.AutoHeight = false;
     this.ItemTextEditRemark.MaxLength = 500;
     this.ItemTextEditRemark.Name = "ItemTextEditRemark";
     //
     // ItemTextEditcol1
     //
     this.ItemTextEditcol1.AutoHeight = false;
     this.ItemTextEditcol1.MaxLength = 50;
     this.ItemTextEditcol1.Name = "ItemTextEditcol1";
     //
     // ItemTextEditcol2
     //
     this.ItemTextEditcol2.AutoHeight = false;
     this.ItemTextEditcol2.MaxLength = 50;
     this.ItemTextEditcol2.Name = "ItemTextEditcol2";
     //
     // ItemTextEditcol3
     //
     this.ItemTextEditcol3.AutoHeight = false;
     this.ItemTextEditcol3.MaxLength = 50;
     this.ItemTextEditcol3.Name = "ItemTextEditcol3";
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // rowUID
     //
     this.rowUID.Height = 25;
     this.rowUID.Name = "rowUID";
     this.rowUID.Properties.FieldName = "UID";
     this.rowUID.Properties.ImageIndex = 25;
     this.rowUID.Properties.RowEdit = this.ItemTextEditUID;
     this.rowUID.Visible = false;
     //
     // rowLineName
     //
     this.rowLineName.Height = 25;
     this.rowLineName.Name = "rowLineName";
     this.rowLineName.Properties.Caption = "��·����";
     this.rowLineName.Properties.FieldName = "LineName";
     this.rowLineName.Properties.ImageIndex = 25;
     this.rowLineName.Properties.RowEdit = this.ItemTextEditLineName;
     //
     // rowRemark
     //
     this.rowRemark.Height = 95;
     this.rowRemark.Name = "rowRemark";
     this.rowRemark.Properties.Caption = "����";
     this.rowRemark.Properties.FieldName = "Remark";
     this.rowRemark.Properties.ImageIndex = 25;
     this.rowRemark.Properties.RowEdit = this.repositoryItemMemoEdit1;
     //
     // rowcol1
     //
     this.rowcol1.Height = 25;
     this.rowcol1.Name = "rowcol1";
     this.rowcol1.Properties.FieldName = "col1";
     this.rowcol1.Properties.ImageIndex = 25;
     this.rowcol1.Properties.RowEdit = this.ItemTextEditcol1;
     this.rowcol1.Visible = false;
     //
     // rowcol2
     //
     this.rowcol2.Height = 25;
     this.rowcol2.Name = "rowcol2";
     this.rowcol2.Properties.FieldName = "col2";
     this.rowcol2.Properties.ImageIndex = 25;
     this.rowcol2.Properties.RowEdit = this.ItemTextEditcol2;
     this.rowcol2.Visible = false;
     //
     // rowcol3
     //
     this.rowcol3.Height = 25;
     this.rowcol3.Name = "rowcol3";
     this.rowcol3.Properties.FieldName = "col3";
     this.rowcol3.Properties.ImageIndex = 25;
     this.rowcol3.Properties.RowEdit = this.ItemTextEditcol3;
     this.rowcol3.Visible = false;
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(221, 164);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex = 0;
     this.btnOK.Text = "ȷ��";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(302, 164);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 0;
     this.btnCancel.Text = "ȡ��";
     //
     // FrmPSP_PlanListDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(395, 198);
     this.Controls.Add(this.panelControl);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmPSP_PlanListDialog";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "��·�滮";
     this.Load += new System.EventHandler(this.FrmPSP_PlanListDialog_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.tabPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.vGridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditUID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditLineName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditRemark)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditcol1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditcol2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemTextEditcol3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).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.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.lueSyn = new DevExpress.XtraEditors.LookUpEdit();
     this.LSMSSyn = new DevExpress.Data.Linq.LinqServerModeSource();
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.vQry90BindingSource = new System.Windows.Forms.BindingSource();
     this.vQry90TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.vQry90TableAdapter();
     this.colSubCommitteId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTotal_Mashat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTotal_Warasa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTotal_Mashat_Rasm = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTotal_Warasa_Rasm = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditn2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.lueDof = new DevExpress.XtraEditors.LookUpEdit();
     this.LSMSDof = new DevExpress.Data.Linq.LinqServerModeSource();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueSyn.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSSyn)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vQry90BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDof.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDof)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.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.gridControlData.DataSource = this.vQry90BindingSource;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(0, 53);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEditn2});
     this.gridControlData.Size = new System.Drawing.Size(734, 404);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSubCommitteId,
     this.colSubCommitte,
     this.colTotal_Mashat,
     this.colTotal_Warasa,
     this.colTotal_Mashat_Rasm,
     this.colTotal_Warasa_Rasm});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.lueDof);
     this.panelControl1.Controls.Add(this.lueSyn);
     this.panelControl1.Controls.Add(this.labelControl2);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Controls.Add(this.btnPrintExport);
     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(734, 47);
     this.panelControl1.TabIndex = 4;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Location = new System.Drawing.Point(12, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // labelControl1
     //
     this.labelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl1.Location = new System.Drawing.Point(688, 17);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(34, 13);
     this.labelControl1.TabIndex = 1;
     this.labelControl1.Text = "الفرعية";
     //
     // lueSyn
     //
     this.lueSyn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lueSyn.Location = new System.Drawing.Point(520, 13);
     this.lueSyn.Name = "lueSyn";
     this.lueSyn.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueSyn.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Syndicate", "الاسم", 57, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueSyn.Properties.DataSource = this.LSMSSyn;
     this.lueSyn.Properties.DisplayMember = "Syndicate";
     this.lueSyn.Properties.NullText = "";
     this.lueSyn.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueSyn.Properties.ValueMember = "SyndicateId";
     this.lueSyn.Size = new System.Drawing.Size(162, 20);
     this.lueSyn.TabIndex = 2;
     this.lueSyn.EditValueChanged += new System.EventHandler(this.lueSyn_EditValueChanged);
     //
     // LSMSSyn
     //
     this.LSMSSyn.ElementType = typeof(RetirementCenter.DataSources.Linq.CDSyndicate);
     this.LSMSSyn.KeyExpression = "[SyndicateId]";
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // vQry90BindingSource
     //
     this.vQry90BindingSource.DataMember = "vQry90";
     this.vQry90BindingSource.DataSource = this.dsQueries;
     //
     // vQry90TableAdapter
     //
     this.vQry90TableAdapter.ClearBeforeFill = true;
     //
     // colSubCommitteId
     //
     this.colSubCommitteId.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitteId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteId.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitteId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitteId.Caption = "كود";
     this.colSubCommitteId.FieldName = "SubCommitteId";
     this.colSubCommitteId.Name = "colSubCommitteId";
     this.colSubCommitteId.Visible = true;
     this.colSubCommitteId.VisibleIndex = 0;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "اللجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 1;
     this.colSubCommitte.Width = 117;
     //
     // colTotal_Mashat
     //
     this.colTotal_Mashat.AppearanceCell.Options.UseTextOptions = true;
     this.colTotal_Mashat.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal_Mashat.AppearanceHeader.Options.UseTextOptions = true;
     this.colTotal_Mashat.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal_Mashat.Caption = "عدد الاعضاء المسجل";
     this.colTotal_Mashat.ColumnEdit = this.repositoryItemTextEditn2;
     this.colTotal_Mashat.FieldName = "Total_Mashat";
     this.colTotal_Mashat.Name = "colTotal_Mashat";
     this.colTotal_Mashat.OptionsColumn.ReadOnly = true;
     this.colTotal_Mashat.Visible = true;
     this.colTotal_Mashat.VisibleIndex = 2;
     this.colTotal_Mashat.Width = 116;
     //
     // colTotal_Warasa
     //
     this.colTotal_Warasa.AppearanceCell.Options.UseTextOptions = true;
     this.colTotal_Warasa.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal_Warasa.AppearanceHeader.Options.UseTextOptions = true;
     this.colTotal_Warasa.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal_Warasa.Caption = "عدد الورثة المسجل";
     this.colTotal_Warasa.ColumnEdit = this.repositoryItemTextEditn2;
     this.colTotal_Warasa.FieldName = "Total_Warasa";
     this.colTotal_Warasa.Name = "colTotal_Warasa";
     this.colTotal_Warasa.OptionsColumn.ReadOnly = true;
     this.colTotal_Warasa.Visible = true;
     this.colTotal_Warasa.VisibleIndex = 3;
     this.colTotal_Warasa.Width = 107;
     //
     // colTotal_Mashat_Rasm
     //
     this.colTotal_Mashat_Rasm.AppearanceCell.Options.UseTextOptions = true;
     this.colTotal_Mashat_Rasm.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal_Mashat_Rasm.AppearanceHeader.Options.UseTextOptions = true;
     this.colTotal_Mashat_Rasm.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal_Mashat_Rasm.Caption = "قيمة الاعضاء";
     this.colTotal_Mashat_Rasm.ColumnEdit = this.repositoryItemTextEditn2;
     this.colTotal_Mashat_Rasm.FieldName = "Total_Mashat_Rasm";
     this.colTotal_Mashat_Rasm.Name = "colTotal_Mashat_Rasm";
     this.colTotal_Mashat_Rasm.OptionsColumn.ReadOnly = true;
     this.colTotal_Mashat_Rasm.Visible = true;
     this.colTotal_Mashat_Rasm.VisibleIndex = 4;
     this.colTotal_Mashat_Rasm.Width = 77;
     //
     // colTotal_Warasa_Rasm
     //
     this.colTotal_Warasa_Rasm.AppearanceCell.Options.UseTextOptions = true;
     this.colTotal_Warasa_Rasm.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal_Warasa_Rasm.AppearanceHeader.Options.UseTextOptions = true;
     this.colTotal_Warasa_Rasm.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal_Warasa_Rasm.Caption = "قمية الورثة";
     this.colTotal_Warasa_Rasm.ColumnEdit = this.repositoryItemTextEditn2;
     this.colTotal_Warasa_Rasm.FieldName = "Total_Warasa_Rasm";
     this.colTotal_Warasa_Rasm.Name = "colTotal_Warasa_Rasm";
     this.colTotal_Warasa_Rasm.OptionsColumn.ReadOnly = true;
     this.colTotal_Warasa_Rasm.Visible = true;
     this.colTotal_Warasa_Rasm.VisibleIndex = 5;
     //
     // repositoryItemTextEditn2
     //
     this.repositoryItemTextEditn2.AutoHeight = false;
     this.repositoryItemTextEditn2.DisplayFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.EditFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.Mask.EditMask = "n2";
     this.repositoryItemTextEditn2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditn2.Name = "repositoryItemTextEditn2";
     //
     // labelControl2
     //
     this.labelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl2.Location = new System.Drawing.Point(485, 16);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(29, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "الدفعة";
     //
     // lueDof
     //
     this.lueDof.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lueDof.Location = new System.Drawing.Point(317, 12);
     this.lueDof.Name = "lueDof";
     this.lueDof.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lueDof.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DofatSarf", "الاسم", 57, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.lueDof.Properties.DataSource = this.LSMSDof;
     this.lueDof.Properties.DisplayMember = "DofatSarf";
     this.lueDof.Properties.NullText = "";
     this.lueDof.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.lueDof.Properties.ValueMember = "DofatSarfId";
     this.lueDof.Size = new System.Drawing.Size(162, 20);
     this.lueDof.TabIndex = 2;
     this.lueDof.EditValueChanged += new System.EventHandler(this.lueSyn_EditValueChanged);
     //
     // LSMSDof
     //
     this.LSMSDof.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSDof.KeyExpression = "[DofatSarfId]";
     //
     // Qry90Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(734, 462);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.gridControlData);
     this.Name = "Qry90Frm";
     this.Text = "صرف الحافز - اللجنة";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lueSyn.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSSyn)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vQry90BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueDof.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDof)).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_vendedor));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem11 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem12 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem13 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     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_editar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_cancelar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_grabar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_eliminar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_imprimir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_log = new DevExpress.XtraBars.BarButtonItem();
     this.btn_clave = new DevExpress.XtraBars.BarButtonItem();
     this.btn_salir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_act = 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.grpanel01 = new DevExpress.XtraEditors.GroupControl();
     this.lbl_num = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btn_busqueda = new DevExpress.XtraEditors.SimpleButton();
     this.rb_tipo = new DevExpress.XtraEditors.RadioGroup();
     this.txt_busqueda = new System.Windows.Forms.TextBox();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.Mdi_dgv_vendedor = new DevExpress.XtraGrid.GridControl();
     this.dgv_vendedor = new DevExpress.XtraGrid.Views.Grid.GridView();
     this._vendorid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._vendorname = new DevExpress.XtraGrid.Columns.GridColumn();
     this._local = new DevExpress.XtraGrid.Columns.GridColumn();
     this._localname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.label11 = new System.Windows.Forms.Label();
     this.chk_comisiona = new DevExpress.XtraEditors.CheckEdit();
     this.chk_conhijos = new DevExpress.XtraEditors.CheckEdit();
     this.rb_sexo = new DevExpress.XtraEditors.RadioGroup();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.txt_remunebas = new System.Windows.Forms.TextBox();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.txt_vendorid = new System.Windows.Forms.TextBox();
     this.txt_vendorname = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.txt_fechini = new DevExpress.XtraEditors.DateEdit();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.txt_fechnac = new DevExpress.XtraEditors.DateEdit();
     this.txt_apepat = new System.Windows.Forms.TextBox();
     this.txt_apemat = new System.Windows.Forms.TextBox();
     this.txt_nombre = new System.Windows.Forms.TextBox();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.txt_dni = new System.Windows.Forms.TextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txt_direcc = new System.Windows.Forms.TextBox();
     this.txt_telefono = new System.Windows.Forms.TextBox();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.txt_cargoname = new System.Windows.Forms.TextBox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.txt_local = new System.Windows.Forms.TextBox();
     this.txt_localname = new System.Windows.Forms.TextBox();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.txt_fechasig = new DevExpress.XtraEditors.DateEdit();
     this.txt_fechcese = new DevExpress.XtraEditors.DateEdit();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.txt_cargoid = new System.Windows.Forms.TextBox();
     this.grpanel03 = new DevExpress.XtraEditors.GroupControl();
     this.txt_observ = new System.Windows.Forms.TextBox();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.MDI_dgb_vendorcargo = new DevExpress.XtraGrid.GridControl();
     this.dgb_vendorcargo = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.fechasig = new DevExpress.XtraGrid.Columns.GridColumn();
     this.glocal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.localname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcargoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cargoname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.observac = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.grpanel02 = new DevExpress.XtraEditors.GroupControl();
     this.grpanel04 = new DevExpress.XtraEditors.GroupControl();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel01)).BeginInit();
     this.grpanel01.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rb_tipo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_vendedor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_vendedor)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_comisiona.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_conhijos.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rb_sexo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechnac.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechnac.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechasig.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechasig.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechcese.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechcese.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel03)).BeginInit();
     this.grpanel03.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MDI_dgb_vendorcargo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_vendorcargo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel02)).BeginInit();
     this.grpanel02.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel04)).BeginInit();
     this.grpanel04.SuspendLayout();
     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_editar,
     this.btn_grabar,
     this.btn_cancelar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnLoad,
     this.btn_log,
     this.btnInicio,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btn_salir,
     this.btn_clave,
     this.btn_act});
     this.barManager1.MainMenu = this.bar1;
     this.barManager1.MaxItemId = 18;
     //
     // 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_editar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_cancelar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_grabar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_eliminar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_imprimir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_log),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_clave),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_salir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_act)});
     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";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.btn_nuevo.SuperTip = superToolTip1;
     this.btn_nuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_nuevo_ItemClick);
     //
     // btn_editar
     //
     this.btn_editar.Caption = "btnEdit";
     this.btn_editar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.Glyph")));
     this.btn_editar.Id = 3;
     this.btn_editar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.LargeGlyph")));
     this.btn_editar.Name = "btn_editar";
     toolTipTitleItem2.Text = "Editar";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.btn_editar.SuperTip = superToolTip2;
     this.btn_editar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_editar_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";
     toolTipTitleItem3.Text = "Cancelar";
     superToolTip3.Items.Add(toolTipTitleItem3);
     this.btn_cancelar.SuperTip = superToolTip3;
     this.btn_cancelar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_cancelar_ItemClick);
     //
     // btn_grabar
     //
     this.btn_grabar.Caption = "btnSave";
     this.btn_grabar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Glyph")));
     this.btn_grabar.Id = 4;
     this.btn_grabar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.LargeGlyph")));
     this.btn_grabar.Name = "btn_grabar";
     toolTipTitleItem4.Text = "Guardar";
     superToolTip4.Items.Add(toolTipTitleItem4);
     this.btn_grabar.SuperTip = superToolTip4;
     this.btn_grabar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_grabar_ItemClick);
     //
     // btn_eliminar
     //
     this.btn_eliminar.Caption = "btnDelete";
     this.btn_eliminar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Glyph")));
     this.btn_eliminar.Id = 6;
     this.btn_eliminar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.LargeGlyph")));
     this.btn_eliminar.Name = "btn_eliminar";
     toolTipTitleItem5.Text = "Elimar Registro";
     superToolTip5.Items.Add(toolTipTitleItem5);
     this.btn_eliminar.SuperTip = superToolTip5;
     this.btn_eliminar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_eliminar_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";
     toolTipTitleItem6.Text = "Imprimir";
     superToolTip6.Items.Add(toolTipTitleItem6);
     this.btn_imprimir.SuperTip = superToolTip6;
     //
     // btn_log
     //
     this.btn_log.Caption = "btnLog";
     this.btn_log.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_log.Glyph")));
     this.btn_log.Id = 9;
     this.btn_log.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_log.LargeGlyph")));
     this.btn_log.Name = "btn_log";
     toolTipTitleItem7.Text = "Log";
     superToolTip7.Items.Add(toolTipTitleItem7);
     this.btn_log.SuperTip = superToolTip7;
     //
     // btn_clave
     //
     this.btn_clave.Caption = "btnLock";
     this.btn_clave.Glyph = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.Id = 15;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_clave_ItemClick);
     //
     // 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";
     toolTipTitleItem8.Text = "Salir";
     superToolTip8.Items.Add(toolTipTitleItem8);
     this.btn_salir.SuperTip = superToolTip8;
     this.btn_salir.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_salir_ItemClick);
     //
     // btn_act
     //
     this.btn_act.Caption = "btn_act";
     this.btn_act.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_act.Glyph")));
     this.btn_act.Id = 17;
     this.btn_act.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_act.LargeGlyph")));
     this.btn_act.Name = "btn_act";
     this.btn_act.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_act_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(1087, 28);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 412);
     this.barDockControlBottom.Size = new System.Drawing.Size(1087, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 28);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 384);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1087, 28);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 384);
     //
     // 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";
     toolTipTitleItem9.Text = "Actualizar";
     superToolTip9.Items.Add(toolTipTitleItem9);
     this.btnLoad.SuperTip = superToolTip9;
     //
     // 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";
     toolTipTitleItem10.Text = "Primer Registro";
     superToolTip10.Items.Add(toolTipTitleItem10);
     this.btnInicio.SuperTip = superToolTip10;
     //
     // 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";
     toolTipTitleItem11.Text = "Anterior Registro";
     superToolTip11.Items.Add(toolTipTitleItem11);
     this.btnAnterior.SuperTip = superToolTip11;
     //
     // 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";
     toolTipTitleItem12.Text = "Siguiente Registro";
     superToolTip12.Items.Add(toolTipTitleItem12);
     this.btnSiguiente.SuperTip = superToolTip12;
     //
     // 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";
     toolTipTitleItem13.Text = "Ultimo Registro";
     superToolTip13.Items.Add(toolTipTitleItem13);
     this.btnUltimo.SuperTip = superToolTip13;
     //
     // grpanel01
     //
     this.grpanel01.Controls.Add(this.lbl_num);
     this.grpanel01.Controls.Add(this.labelControl1);
     this.grpanel01.Controls.Add(this.btn_busqueda);
     this.grpanel01.Controls.Add(this.rb_tipo);
     this.grpanel01.Controls.Add(this.txt_busqueda);
     this.grpanel01.Controls.Add(this.labelControl10);
     this.grpanel01.Controls.Add(this.Mdi_dgv_vendedor);
     this.grpanel01.Location = new System.Drawing.Point(0, 29);
     this.grpanel01.Name = "grpanel01";
     this.grpanel01.Size = new System.Drawing.Size(360, 380);
     this.grpanel01.TabIndex = 142;
     this.grpanel01.Text = "»» Datos";
     //
     // lbl_num
     //
     this.lbl_num.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.lbl_num.Appearance.ForeColor = System.Drawing.Color.Red;
     this.lbl_num.Location = new System.Drawing.Point(112, 359);
     this.lbl_num.Name = "lbl_num";
     this.lbl_num.Size = new System.Drawing.Size(15, 16);
     this.lbl_num.TabIndex = 171;
     this.lbl_num.Text = "n°";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(6, 360);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(95, 13);
     this.labelControl1.TabIndex = 170;
     this.labelControl1.Text = "Total Trabajadores:";
     //
     // btn_busqueda
     //
     this.btn_busqueda.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.btn_busqueda.Appearance.Options.UseFont = true;
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Image = ((System.Drawing.Image)(resources.GetObject("btn_busqueda.Image")));
     this.btn_busqueda.Location = new System.Drawing.Point(283, 23);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(73, 22);
     this.btn_busqueda.TabIndex = 169;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // rb_tipo
     //
     this.rb_tipo.EditValue = true;
     this.rb_tipo.Location = new System.Drawing.Point(66, 48);
     this.rb_tipo.MenuManager = this.barManager1;
     this.rb_tipo.Name = "rb_tipo";
     this.rb_tipo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.rb_tipo.Properties.Columns = 2;
     this.rb_tipo.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(true, "Activo"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(false, "Cesado")});
     this.rb_tipo.Size = new System.Drawing.Size(128, 22);
     this.rb_tipo.TabIndex = 168;
     //
     // txt_busqueda
     //
     this.txt_busqueda.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_busqueda.Location = new System.Drawing.Point(65, 23);
     this.txt_busqueda.Name = "txt_busqueda";
     this.txt_busqueda.Size = new System.Drawing.Size(217, 21);
     this.txt_busqueda.TabIndex = 167;
     this.txt_busqueda.TextChanged += new System.EventHandler(this.txt_busqueda_TextChanged);
     this.txt_busqueda.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_busqueda_KeyUp);
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(9, 26);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(51, 13);
     this.labelControl10.TabIndex = 144;
     this.labelControl10.Text = "Busqueda:";
     //
     // Mdi_dgv_vendedor
     //
     this.Mdi_dgv_vendedor.Location = new System.Drawing.Point(5, 76);
     this.Mdi_dgv_vendedor.MainView = this.dgv_vendedor;
     this.Mdi_dgv_vendedor.Name = "Mdi_dgv_vendedor";
     this.Mdi_dgv_vendedor.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemTextEdit2,
     this.repositoryItemCheckEdit3});
     this.Mdi_dgv_vendedor.Size = new System.Drawing.Size(351, 275);
     this.Mdi_dgv_vendedor.TabIndex = 143;
     this.Mdi_dgv_vendedor.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgv_vendedor});
     this.Mdi_dgv_vendedor.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Mdi_dgv_vendedor_KeyUp);
     //
     // dgv_vendedor
     //
     this.dgv_vendedor.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_vendedor.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgv_vendedor.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_vendedor.Appearance.Empty.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_vendedor.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgv_vendedor.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_vendedor.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_vendedor.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgv_vendedor.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_vendedor.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_vendedor.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgv_vendedor.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_vendedor.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgv_vendedor.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgv_vendedor.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_vendedor.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_vendedor.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgv_vendedor.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_vendedor.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.GroupPanel.Options.UseFont = true;
     this.dgv_vendedor.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgv_vendedor.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgv_vendedor.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_vendedor.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgv_vendedor.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgv_vendedor.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgv_vendedor.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_vendedor.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgv_vendedor.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgv_vendedor.Appearance.Preview.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.Preview.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_vendedor.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgv_vendedor.Appearance.Row.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.Row.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_vendedor.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgv_vendedor.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_vendedor.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgv_vendedor.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgv_vendedor.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgv_vendedor.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_vendedor.Appearance.VertLine.Options.UseBackColor = true;
     this.dgv_vendedor.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this._vendorid,
     this._vendorname,
     this._local,
     this._localname});
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.Teal;
     styleFormatCondition2.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition2.Expression = "Len(Trim([conceptoid])) == 2";
     this.dgv_vendedor.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition2});
     this.dgv_vendedor.GridControl = this.Mdi_dgv_vendedor;
     this.dgv_vendedor.Name = "dgv_vendedor";
     this.dgv_vendedor.OptionsSelection.MultiSelect = true;
     this.dgv_vendedor.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.dgv_vendedor.OptionsView.ShowGroupPanel = false;
     this.dgv_vendedor.PaintStyleName = "Web";
     this.dgv_vendedor.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgv_vendedor_RowCellClick);
     //
     // _vendorid
     //
     this._vendorid.Caption = "Cod";
     this._vendorid.FieldName = "vendorid";
     this._vendorid.Name = "_vendorid";
     this._vendorid.OptionsColumn.AllowEdit = false;
     this._vendorid.Visible = true;
     this._vendorid.VisibleIndex = 0;
     this._vendorid.Width = 41;
     //
     // _vendorname
     //
     this._vendorname.Caption = "Nombres";
     this._vendorname.FieldName = "vendorname";
     this._vendorname.Name = "_vendorname";
     this._vendorname.OptionsColumn.AllowEdit = false;
     this._vendorname.Visible = true;
     this._vendorname.VisibleIndex = 1;
     this._vendorname.Width = 199;
     //
     // _local
     //
     this._local.Caption = "local";
     this._local.FieldName = "local";
     this._local.Name = "_local";
     //
     // _localname
     //
     this._localname.Caption = "Tienda";
     this._localname.FieldName = "localname";
     this._localname.Name = "_localname";
     this._localname.OptionsColumn.AllowEdit = false;
     this._localname.Visible = true;
     this._localname.VisibleIndex = 2;
     this._localname.Width = 96;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.EditFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.EditMask = "###,##0.0000";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Caption = "Check";
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.repositoryItemTextEdit2.ReadOnly = true;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Caption = "Check";
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.Teal;
     this.label11.Location = new System.Drawing.Point(103, 29);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(175, 24);
     this.label11.TabIndex = 202;
     this.label11.Text = "Registro de Datos";
     //
     // chk_comisiona
     //
     this.chk_comisiona.Location = new System.Drawing.Point(185, 345);
     this.chk_comisiona.MenuManager = this.barManager1;
     this.chk_comisiona.Name = "chk_comisiona";
     this.chk_comisiona.Properties.Caption = "Comisiona ?";
     this.chk_comisiona.Size = new System.Drawing.Size(78, 19);
     this.chk_comisiona.TabIndex = 201;
     //
     // chk_conhijos
     //
     this.chk_conhijos.Location = new System.Drawing.Point(83, 345);
     this.chk_conhijos.MenuManager = this.barManager1;
     this.chk_conhijos.Name = "chk_conhijos";
     this.chk_conhijos.Properties.Caption = "Con Hijos ?";
     this.chk_conhijos.Size = new System.Drawing.Size(75, 19);
     this.chk_conhijos.TabIndex = 200;
     //
     // rb_sexo
     //
     this.rb_sexo.EditValue = true;
     this.rb_sexo.Location = new System.Drawing.Point(84, 300);
     this.rb_sexo.MenuManager = this.barManager1;
     this.rb_sexo.Name = "rb_sexo";
     this.rb_sexo.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.rb_sexo.Properties.Columns = 1;
     this.rb_sexo.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem("M", "Hombre"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("F", "Mujer")});
     this.rb_sexo.Size = new System.Drawing.Size(74, 37);
     this.rb_sexo.TabIndex = 199;
     //
     // labelControl17
     //
     this.labelControl17.Location = new System.Drawing.Point(50, 303);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(28, 13);
     this.labelControl17.TabIndex = 198;
     this.labelControl17.Text = "Sexo:";
     //
     // txt_remunebas
     //
     this.txt_remunebas.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_remunebas.Location = new System.Drawing.Point(84, 273);
     this.txt_remunebas.Name = "txt_remunebas";
     this.txt_remunebas.Size = new System.Drawing.Size(74, 21);
     this.txt_remunebas.TabIndex = 197;
     this.txt_remunebas.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl16
     //
     this.labelControl16.Location = new System.Drawing.Point(9, 276);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(71, 13);
     this.labelControl16.TabIndex = 196;
     this.labelControl16.Text = "Remun.Básica:";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(43, 70);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(37, 13);
     this.labelControl2.TabIndex = 145;
     this.labelControl2.Text = "Codigo:";
     //
     // txt_vendorid
     //
     this.txt_vendorid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_vendorid.Location = new System.Drawing.Point(84, 67);
     this.txt_vendorid.Name = "txt_vendorid";
     this.txt_vendorid.Size = new System.Drawing.Size(39, 21);
     this.txt_vendorid.TabIndex = 168;
     //
     // txt_vendorname
     //
     this.txt_vendorname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_vendorname.Location = new System.Drawing.Point(123, 67);
     this.txt_vendorname.Name = "txt_vendorname";
     this.txt_vendorname.Size = new System.Drawing.Size(217, 21);
     this.txt_vendorname.TabIndex = 169;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(15, 92);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(65, 13);
     this.labelControl3.TabIndex = 170;
     this.labelControl3.Text = "Ape.Paterno:";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(13, 116);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(67, 13);
     this.labelControl4.TabIndex = 171;
     this.labelControl4.Text = "Ape.Materno:";
     //
     // txt_fechini
     //
     this.txt_fechini.EditValue = null;
     this.txt_fechini.Location = new System.Drawing.Point(243, 246);
     this.txt_fechini.MenuManager = this.barManager1;
     this.txt_fechini.Name = "txt_fechini";
     this.txt_fechini.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechini.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechini.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechini.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechini.Size = new System.Drawing.Size(100, 20);
     this.txt_fechini.TabIndex = 188;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(34, 140);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(46, 13);
     this.labelControl5.TabIndex = 172;
     this.labelControl5.Text = "Nombres:";
     //
     // txt_fechnac
     //
     this.txt_fechnac.EditValue = null;
     this.txt_fechnac.Location = new System.Drawing.Point(84, 248);
     this.txt_fechnac.MenuManager = this.barManager1;
     this.txt_fechnac.Name = "txt_fechnac";
     this.txt_fechnac.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechnac.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechnac.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechnac.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechnac.Size = new System.Drawing.Size(100, 20);
     this.txt_fechnac.TabIndex = 187;
     //
     // txt_apepat
     //
     this.txt_apepat.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_apepat.Location = new System.Drawing.Point(84, 90);
     this.txt_apepat.Name = "txt_apepat";
     this.txt_apepat.Size = new System.Drawing.Size(217, 21);
     this.txt_apepat.TabIndex = 173;
     this.txt_apepat.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_apepat_KeyUp);
     //
     // txt_apemat
     //
     this.txt_apemat.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_apemat.Location = new System.Drawing.Point(84, 113);
     this.txt_apemat.Name = "txt_apemat";
     this.txt_apemat.Size = new System.Drawing.Size(217, 21);
     this.txt_apemat.TabIndex = 174;
     this.txt_apemat.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_apemat_KeyUp);
     //
     // txt_nombre
     //
     this.txt_nombre.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_nombre.Location = new System.Drawing.Point(84, 136);
     this.txt_nombre.Name = "txt_nombre";
     this.txt_nombre.Size = new System.Drawing.Size(217, 21);
     this.txt_nombre.TabIndex = 175;
     this.txt_nombre.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_nombre_KeyUp);
     //
     // labelControl12
     //
     this.labelControl12.Location = new System.Drawing.Point(187, 251);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(54, 13);
     this.labelControl12.TabIndex = 184;
     this.labelControl12.Text = "F.Registro:";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(61, 163);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(19, 13);
     this.labelControl6.TabIndex = 176;
     this.labelControl6.Text = "Dni:";
     //
     // txt_dni
     //
     this.txt_dni.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_dni.Location = new System.Drawing.Point(84, 159);
     this.txt_dni.MaxLength = 8;
     this.txt_dni.Name = "txt_dni";
     this.txt_dni.Size = new System.Drawing.Size(97, 21);
     this.txt_dni.TabIndex = 177;
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(14, 251);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(66, 13);
     this.labelControl9.TabIndex = 182;
     this.labelControl9.Text = "F.Nacimiento:";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(194, 163);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(46, 13);
     this.labelControl7.TabIndex = 178;
     this.labelControl7.Text = "Telefono:";
     //
     // txt_direcc
     //
     this.txt_direcc.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_direcc.Location = new System.Drawing.Point(84, 184);
     this.txt_direcc.Multiline = true;
     this.txt_direcc.Name = "txt_direcc";
     this.txt_direcc.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txt_direcc.Size = new System.Drawing.Size(256, 60);
     this.txt_direcc.TabIndex = 181;
     //
     // txt_telefono
     //
     this.txt_telefono.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_telefono.Location = new System.Drawing.Point(243, 159);
     this.txt_telefono.Name = "txt_telefono";
     this.txt_telefono.Size = new System.Drawing.Size(97, 21);
     this.txt_telefono.TabIndex = 179;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(34, 187);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(47, 13);
     this.labelControl8.TabIndex = 180;
     this.labelControl8.Text = "Dirección:";
     //
     // txt_cargoname
     //
     this.txt_cargoname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_cargoname.Location = new System.Drawing.Point(122, 69);
     this.txt_cargoname.Name = "txt_cargoname";
     this.txt_cargoname.Size = new System.Drawing.Size(220, 21);
     this.txt_cargoname.TabIndex = 195;
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(5, 27);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(75, 13);
     this.labelControl11.TabIndex = 183;
     this.labelControl11.Text = "Local Asignado:";
     //
     // txt_local
     //
     this.txt_local.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_local.Location = new System.Drawing.Point(83, 24);
     this.txt_local.Name = "txt_local";
     this.txt_local.Size = new System.Drawing.Size(39, 21);
     this.txt_local.TabIndex = 185;
     this.txt_local.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_local_KeyDown);
     this.txt_local.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_local_MouseDown);
     //
     // txt_localname
     //
     this.txt_localname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_localname.Location = new System.Drawing.Point(122, 24);
     this.txt_localname.Name = "txt_localname";
     this.txt_localname.Size = new System.Drawing.Size(220, 21);
     this.txt_localname.TabIndex = 186;
     //
     // labelControl14
     //
     this.labelControl14.Location = new System.Drawing.Point(15, 50);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(65, 13);
     this.labelControl14.TabIndex = 189;
     this.labelControl14.Text = "F.Asignación:";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(202, 50);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(38, 13);
     this.labelControl13.TabIndex = 190;
     this.labelControl13.Text = "F.Cese:";
     //
     // txt_fechasig
     //
     this.txt_fechasig.EditValue = null;
     this.txt_fechasig.Location = new System.Drawing.Point(83, 47);
     this.txt_fechasig.MenuManager = this.barManager1;
     this.txt_fechasig.Name = "txt_fechasig";
     this.txt_fechasig.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechasig.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechasig.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechasig.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechasig.Size = new System.Drawing.Size(100, 20);
     this.txt_fechasig.TabIndex = 191;
     //
     // txt_fechcese
     //
     this.txt_fechcese.EditValue = null;
     this.txt_fechcese.Location = new System.Drawing.Point(242, 47);
     this.txt_fechcese.MenuManager = this.barManager1;
     this.txt_fechcese.Name = "txt_fechcese";
     this.txt_fechcese.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechcese.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txt_fechcese.Properties.CalendarTimeProperties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.F4);
     this.txt_fechcese.Properties.CalendarTimeProperties.PopupBorderStyle = DevExpress.XtraEditors.Controls.PopupBorderStyles.Default;
     this.txt_fechcese.Size = new System.Drawing.Size(100, 20);
     this.txt_fechcese.TabIndex = 192;
     //
     // labelControl15
     //
     this.labelControl15.Location = new System.Drawing.Point(47, 72);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(33, 13);
     this.labelControl15.TabIndex = 193;
     this.labelControl15.Text = "Cargo:";
     //
     // txt_cargoid
     //
     this.txt_cargoid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_cargoid.Location = new System.Drawing.Point(83, 69);
     this.txt_cargoid.Name = "txt_cargoid";
     this.txt_cargoid.Size = new System.Drawing.Size(39, 21);
     this.txt_cargoid.TabIndex = 194;
     this.txt_cargoid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_cargoid_KeyDown);
     this.txt_cargoid.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txt_cargoid_MouseDown);
     //
     // grpanel03
     //
     this.grpanel03.Controls.Add(this.txt_observ);
     this.grpanel03.Controls.Add(this.labelControl18);
     this.grpanel03.Controls.Add(this.txt_cargoname);
     this.grpanel03.Controls.Add(this.labelControl11);
     this.grpanel03.Controls.Add(this.txt_local);
     this.grpanel03.Controls.Add(this.txt_cargoid);
     this.grpanel03.Controls.Add(this.txt_localname);
     this.grpanel03.Controls.Add(this.labelControl15);
     this.grpanel03.Controls.Add(this.labelControl14);
     this.grpanel03.Controls.Add(this.txt_fechcese);
     this.grpanel03.Controls.Add(this.labelControl13);
     this.grpanel03.Controls.Add(this.txt_fechasig);
     this.grpanel03.Location = new System.Drawing.Point(715, 29);
     this.grpanel03.Name = "grpanel03";
     this.grpanel03.Size = new System.Drawing.Size(370, 157);
     this.grpanel03.TabIndex = 147;
     this.grpanel03.Text = "»» Asignación";
     //
     // txt_observ
     //
     this.txt_observ.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_observ.Location = new System.Drawing.Point(83, 93);
     this.txt_observ.Multiline = true;
     this.txt_observ.Name = "txt_observ";
     this.txt_observ.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txt_observ.Size = new System.Drawing.Size(259, 60);
     this.txt_observ.TabIndex = 197;
     //
     // labelControl18
     //
     this.labelControl18.Location = new System.Drawing.Point(30, 96);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(50, 13);
     this.labelControl18.TabIndex = 196;
     this.labelControl18.Text = "Observac:";
     //
     // MDI_dgb_vendorcargo
     //
     this.MDI_dgb_vendorcargo.Location = new System.Drawing.Point(9, 25);
     this.MDI_dgb_vendorcargo.MainView = this.dgb_vendorcargo;
     this.MDI_dgb_vendorcargo.Name = "MDI_dgb_vendorcargo";
     this.MDI_dgb_vendorcargo.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit3,
     this.repositoryItemCheckEdit1,
     this.repositoryItemTextEdit4,
     this.repositoryItemCheckEdit4});
     this.MDI_dgb_vendorcargo.Size = new System.Drawing.Size(351, 191);
     this.MDI_dgb_vendorcargo.TabIndex = 198;
     this.MDI_dgb_vendorcargo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgb_vendorcargo});
     this.MDI_dgb_vendorcargo.KeyUp += new System.Windows.Forms.KeyEventHandler(this.MDI_dgb_vendorcargo_KeyUp);
     //
     // dgb_vendorcargo
     //
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_vendorcargo.Appearance.Empty.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_vendorcargo.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgb_vendorcargo.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_vendorcargo.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgb_vendorcargo.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgb_vendorcargo.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_vendorcargo.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgb_vendorcargo.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgb_vendorcargo.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgb_vendorcargo.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgb_vendorcargo.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgb_vendorcargo.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgb_vendorcargo.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgb_vendorcargo.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgb_vendorcargo.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgb_vendorcargo.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.GroupPanel.Options.UseFont = true;
     this.dgb_vendorcargo.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgb_vendorcargo.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgb_vendorcargo.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgb_vendorcargo.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgb_vendorcargo.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgb_vendorcargo.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgb_vendorcargo.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_vendorcargo.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgb_vendorcargo.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgb_vendorcargo.Appearance.Preview.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.Preview.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgb_vendorcargo.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgb_vendorcargo.Appearance.Row.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.Row.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_vendorcargo.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgb_vendorcargo.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgb_vendorcargo.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgb_vendorcargo.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgb_vendorcargo.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgb_vendorcargo.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_vendorcargo.Appearance.VertLine.Options.UseBackColor = true;
     this.dgb_vendorcargo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.fechasig,
     this.glocal,
     this.localname,
     this.gcargoid,
     this.cargoname,
     this.observac});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.Teal;
     styleFormatCondition1.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "Len(Trim([conceptoid])) == 2";
     this.dgb_vendorcargo.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.dgb_vendorcargo.GridControl = this.MDI_dgb_vendorcargo;
     this.dgb_vendorcargo.Name = "dgb_vendorcargo";
     this.dgb_vendorcargo.OptionsSelection.MultiSelect = true;
     this.dgb_vendorcargo.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.dgb_vendorcargo.OptionsView.ShowGroupPanel = false;
     this.dgb_vendorcargo.PaintStyleName = "Web";
     this.dgb_vendorcargo.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgb_vendorcargo_RowCellClick);
     //
     // fechasig
     //
     this.fechasig.Caption = "F.Asig";
     this.fechasig.FieldName = "fechasig";
     this.fechasig.Name = "fechasig";
     this.fechasig.OptionsColumn.AllowEdit = false;
     this.fechasig.Visible = true;
     this.fechasig.VisibleIndex = 0;
     this.fechasig.Width = 69;
     //
     // glocal
     //
     this.glocal.Caption = "local";
     this.glocal.FieldName = "local";
     this.glocal.Name = "glocal";
     //
     // localname
     //
     this.localname.Caption = "Tienda";
     this.localname.FieldName = "localname";
     this.localname.Name = "localname";
     this.localname.OptionsColumn.AllowEdit = false;
     this.localname.Visible = true;
     this.localname.VisibleIndex = 1;
     this.localname.Width = 164;
     //
     // gcargoid
     //
     this.gcargoid.Caption = "cargoid";
     this.gcargoid.FieldName = "cargoid";
     this.gcargoid.Name = "gcargoid";
     //
     // cargoname
     //
     this.cargoname.Caption = "Cargo";
     this.cargoname.FieldName = "cargoname";
     this.cargoname.Name = "cargoname";
     this.cargoname.Visible = true;
     this.cargoname.VisibleIndex = 2;
     this.cargoname.Width = 103;
     //
     // observac
     //
     this.observac.Caption = "Observ";
     this.observac.FieldName = "observac";
     this.observac.Name = "observac";
     //
     // repositoryItemTextEdit3
     //
     this.repositoryItemTextEdit3.AutoHeight = false;
     this.repositoryItemTextEdit3.DisplayFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit3.EditFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit3.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit3.Mask.EditMask = "###,##0.0000";
     this.repositoryItemTextEdit3.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit3.Name = "repositoryItemTextEdit3";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Caption = "Check";
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // repositoryItemTextEdit4
     //
     this.repositoryItemTextEdit4.AutoHeight = false;
     this.repositoryItemTextEdit4.Name = "repositoryItemTextEdit4";
     this.repositoryItemTextEdit4.ReadOnly = true;
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.Caption = "Check";
     this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
     //
     // grpanel02
     //
     this.grpanel02.Controls.Add(this.txt_fechini);
     this.grpanel02.Controls.Add(this.label11);
     this.grpanel02.Controls.Add(this.labelControl4);
     this.grpanel02.Controls.Add(this.labelControl3);
     this.grpanel02.Controls.Add(this.chk_comisiona);
     this.grpanel02.Controls.Add(this.txt_vendorname);
     this.grpanel02.Controls.Add(this.chk_conhijos);
     this.grpanel02.Controls.Add(this.labelControl5);
     this.grpanel02.Controls.Add(this.txt_vendorid);
     this.grpanel02.Controls.Add(this.labelControl8);
     this.grpanel02.Controls.Add(this.txt_fechnac);
     this.grpanel02.Controls.Add(this.rb_sexo);
     this.grpanel02.Controls.Add(this.labelControl2);
     this.grpanel02.Controls.Add(this.txt_telefono);
     this.grpanel02.Controls.Add(this.txt_apepat);
     this.grpanel02.Controls.Add(this.txt_direcc);
     this.grpanel02.Controls.Add(this.txt_apemat);
     this.grpanel02.Controls.Add(this.labelControl17);
     this.grpanel02.Controls.Add(this.txt_nombre);
     this.grpanel02.Controls.Add(this.labelControl7);
     this.grpanel02.Controls.Add(this.labelControl12);
     this.grpanel02.Controls.Add(this.labelControl9);
     this.grpanel02.Controls.Add(this.labelControl16);
     this.grpanel02.Controls.Add(this.txt_remunebas);
     this.grpanel02.Controls.Add(this.labelControl6);
     this.grpanel02.Controls.Add(this.txt_dni);
     this.grpanel02.Location = new System.Drawing.Point(362, 29);
     this.grpanel02.Name = "grpanel02";
     this.grpanel02.Size = new System.Drawing.Size(351, 380);
     this.grpanel02.TabIndex = 203;
     this.grpanel02.Text = "»» Registro";
     //
     // grpanel04
     //
     this.grpanel04.Controls.Add(this.MDI_dgb_vendorcargo);
     this.grpanel04.Location = new System.Drawing.Point(715, 188);
     this.grpanel04.Name = "grpanel04";
     this.grpanel04.Size = new System.Drawing.Size(370, 221);
     this.grpanel04.TabIndex = 204;
     this.grpanel04.Text = "»» Detalle Historico";
     //
     // Frm_vendedor
     //
     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.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(1087, 412);
     this.Controls.Add(this.grpanel04);
     this.Controls.Add(this.grpanel02);
     this.Controls.Add(this.grpanel03);
     this.Controls.Add(this.grpanel01);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.DoubleBuffered = true;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_vendedor";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "» Vendedores";
     this.Load += new System.EventHandler(this.Frm_articulo_tiendalist_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_articulo_tiendalist_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel01)).EndInit();
     this.grpanel01.ResumeLayout(false);
     this.grpanel01.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rb_tipo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_vendedor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_vendedor)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_comisiona.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_conhijos.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rb_sexo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechini.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechnac.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechnac.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechasig.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechasig.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechcese.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_fechcese.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel03)).EndInit();
     this.grpanel03.ResumeLayout(false);
     this.grpanel03.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MDI_dgb_vendorcargo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_vendorcargo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel02)).EndInit();
     this.grpanel02.ResumeLayout(false);
     this.grpanel02.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpanel04)).EndInit();
     this.grpanel04.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #39
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();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OptionsForm));
            this.xtraTabControl_Options = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage_ComPortSet = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl_ComPortSet = new DevExpress.XtraEditors.GroupControl();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.radioButton1 = new System.Windows.Forms.RadioButton();
            this.radioButton2 = new System.Windows.Forms.RadioButton();
            this.radioButton3 = new System.Windows.Forms.RadioButton();
            this.radioButton4 = new System.Windows.Forms.RadioButton();
            this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_AutoShutDown = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
            this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
            this.timeEdit_DutyStartTime = new DevExpress.XtraEditors.TimeEdit();
            this.notePanel_ShutDownTime = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
            this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
            this.notePanel2 = new DevExpress.Utils.Frames.NotePanel();
            this.xtraTabPage_AutoSendSmsTimeSet = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
            this.timeEdit_SMSMorningTime = new DevExpress.XtraEditors.TimeEdit();
            this.notePanel3 = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
            this.notePanel5 = new DevExpress.Utils.Frames.NotePanel();
            this.timeEdit_SMSNightTime = new DevExpress.XtraEditors.TimeEdit();
            this.notePanel6 = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
            this.notePanel4 = new DevExpress.Utils.Frames.NotePanel();
            this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_NewPwd = new DevExpress.XtraEditors.TextEdit();
            this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
            this.notePanel7 = new DevExpress.Utils.Frames.NotePanel();
            this.simpleButton9 = new DevExpress.XtraEditors.SimpleButton();
            this.textEdit_ConfirmPwd = new DevExpress.XtraEditors.TextEdit();
            this.notePanel8 = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_OldPwd = new DevExpress.XtraEditors.TextEdit();
            this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_UpdateAddress = new DevExpress.XtraEditors.TextEdit();
            this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton10 = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_DBUser = new DevExpress.XtraEditors.TextEdit();
            this.notePanel9 = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel10 = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DBPwd = new DevExpress.XtraEditors.TextEdit();
            this.notePanel11 = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DBName = new DevExpress.XtraEditors.TextEdit();
            this.simpleButton11 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton12 = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage_BatchCreate = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl8 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_ClassVol = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BatchCreate_TerminalNumbers = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BatchCreate_ClassNumbers = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_ClassVol = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_TerminalNumbers = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_ClassNumbers = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
            this.textEdit_BatchCreate_CardNumber = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_BatchCreate_CardNumber = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_BatchCreate_Load = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_BatchCreate_Type = new DevExpress.XtraEditors.ComboBoxEdit();
            this.textEdit_BatchCreate_Number = new DevExpress.XtraEditors.TextEdit();
            this.textEdit_BatchCreate_Name = new DevExpress.XtraEditors.TextEdit();
            this.comboBoxEdit_BatchCreate_Class = new DevExpress.XtraEditors.ComboBoxEdit();
            this.comboBoxEdit_BatchCreate_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_BatchCreate_Load = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Type = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Number = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Name = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Class = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel_BatchCreate_Grade = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl7 = new DevExpress.XtraEditors.GroupControl();
            this.gridControl_BatchCreate_Machine = new DevExpress.XtraGrid.GridControl();
            this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.gridControl_BatchCreate_TeaCard = new DevExpress.XtraGrid.GridControl();
            this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl1_BatchCreate_TeaBasicInfo = new DevExpress.XtraGrid.GridControl();
            this.gridView5 = 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.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl_BatchCreate_StuCard = new DevExpress.XtraGrid.GridControl();
            this.gridView4 = 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.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl_BatchCreate_StuBasicInfo = new DevExpress.XtraGrid.GridControl();
            this.advBandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
            this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn41 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn44 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn42 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn43 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridControl_BatchCreate_Class = new DevExpress.XtraGrid.GridControl();
            this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
            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.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControl_BatchCreate_Grade = 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.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.xtraTabPage_UpdateGrade = new DevExpress.XtraTab.XtraTabPage();
            this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
            this.groupControl9 = new DevExpress.XtraEditors.GroupControl();
            this.comboBoxEdit_ClassNumber = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_ClassNumber = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_GradeNumber = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_GradeNumber = new DevExpress.Utils.Frames.NotePanel();
            this.notePanel12 = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DestClass = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_DestClass = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_SrcClass = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_SrcClass = new DevExpress.Utils.Frames.NotePanel();
            this.textEdit_DestGrade = new DevExpress.XtraEditors.TextEdit();
            this.notePanel_DestGrade = new DevExpress.Utils.Frames.NotePanel();
            this.comboBoxEdit_SrcGrade = new DevExpress.XtraEditors.ComboBoxEdit();
            this.notePanel_SrcGrade = new DevExpress.Utils.Frames.NotePanel();
            this.groupControl10 = new DevExpress.XtraEditors.GroupControl();
            this.gridControl_StudentAdjust = new DevExpress.XtraGrid.GridControl();
            this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn55 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn56 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.notePanel13 = new DevExpress.Utils.Frames.NotePanel();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.simpleButton_Submit = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton_LoadTable = new DevExpress.XtraEditors.SimpleButton();
            this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
            this.xtraTabPage_TerminalServ = new DevExpress.XtraTab.XtraTabPage();
            this.gridControl_SessionUser = new DevExpress.XtraGrid.GridControl();
            this.gridView9 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridView8 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
            this.groupControl11 = new DevExpress.XtraEditors.GroupControl();
            this.groupControl12 = new DevExpress.XtraEditors.GroupControl();
            this.rbtDefault = new System.Windows.Forms.RadioButton();
            this.rbtIdle = new System.Windows.Forms.RadioButton();
            this.rbtStart = new System.Windows.Forms.RadioButton();
            this.smbBackUp = new DevExpress.XtraEditors.SimpleButton();
            this.tbxBackUpRoot = new System.Windows.Forms.TextBox();
            this.smbRoot = new DevExpress.XtraEditors.SimpleButton();
            this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.button1 = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.tbxUploadUrl = new System.Windows.Forms.TextBox();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem_Refresh = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Add = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Save = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Modify = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem_Delete = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu2 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem_DeleteSession = 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.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.openFileDialog_LoadStuInfoXLS = new System.Windows.Forms.OpenFileDialog();
            this.saveFileDialog_BatchCreate = new System.Windows.Forms.SaveFileDialog();
            this.saveFileDialog_createbackup = new System.Windows.Forms.SaveFileDialog();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_Options)).BeginInit();
            this.xtraTabControl_Options.SuspendLayout();
            this.xtraTabPage_ComPortSet.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_ComPortSet)).BeginInit();
            this.groupControl_ComPortSet.SuspendLayout();
            this.xtraTabPage_AutoShutDown.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
            this.groupControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_DutyStartTime.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
            this.xtraTabPage_AutoSendSmsTimeSet.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
            this.groupControl3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_SMSMorningTime.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_SMSNightTime.Properties)).BeginInit();
            this.xtraTabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
            this.groupControl4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NewPwd.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ConfirmPwd.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_OldPwd.Properties)).BeginInit();
            this.xtraTabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_UpdateAddress.Properties)).BeginInit();
            this.xtraTabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
            this.groupControl5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBUser.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBPwd.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBName.Properties)).BeginInit();
            this.xtraTabPage_BatchCreate.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit();
            this.groupControl8.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ClassVol.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_TerminalNumbers.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_ClassNumbers.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
            this.groupControl6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_CardNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Load.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Type.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_Number.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_Name.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Class.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Grade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit();
            this.groupControl7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Machine)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_TeaCard)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1_BatchCreate_TeaBasicInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_StuCard)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_StuBasicInfo)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Class)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Grade)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
            this.xtraTabPage_UpdateGrade.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
            this.splitContainerControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl9)).BeginInit();
            this.groupControl9.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeNumber.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DestClass.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SrcClass.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DestGrade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SrcGrade.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl10)).BeginInit();
            this.groupControl10.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_StudentAdjust)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            this.xtraTabPage_TerminalServ.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_SessionUser)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView8)).BeginInit();
            this.xtraTabPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl11)).BeginInit();
            this.groupControl11.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl12)).BeginInit();
            this.groupControl12.SuspendLayout();
            this.xtraTabPage5.SuspendLayout();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
            this.SuspendLayout();
            // 
            // xtraTabControl_Options
            // 
            this.xtraTabControl_Options.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabControl_Options.Appearance.Options.UseBackColor = true;
            this.xtraTabControl_Options.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
            this.xtraTabControl_Options.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
            this.xtraTabControl_Options.AppearancePage.HeaderActive.Options.UseFont = true;
            this.xtraTabControl_Options.AppearancePage.HeaderActive.Options.UseForeColor = true;
            this.xtraTabControl_Options.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControl_Options.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControl_Options.Name = "xtraTabControl_Options";
            this.xtraTabControl_Options.SelectedTabPage = this.xtraTabPage3;
            this.xtraTabControl_Options.Size = new System.Drawing.Size(688, 429);
            this.xtraTabControl_Options.TabIndex = 0;
            this.xtraTabControl_Options.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage_ComPortSet,
            this.xtraTabPage_AutoShutDown,
            this.xtraTabPage_AutoSendSmsTimeSet,
            this.xtraTabPage1,
            this.xtraTabPage2,
            this.xtraTabPage3,
            this.xtraTabPage_BatchCreate,
            this.xtraTabPage_UpdateGrade,
            this.xtraTabPage_TerminalServ,
            this.xtraTabPage4,
            this.xtraTabPage5});
            // 
            // xtraTabPage_ComPortSet
            // 
            this.xtraTabPage_ComPortSet.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_ComPortSet.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_ComPortSet.Controls.Add(this.groupControl_ComPortSet);
            this.xtraTabPage_ComPortSet.Name = "xtraTabPage_ComPortSet";
            this.xtraTabPage_ComPortSet.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_ComPortSet.Text = "串口设定";
            // 
            // groupControl_ComPortSet
            // 
            this.groupControl_ComPortSet.Controls.Add(this.simpleButton1);
            this.groupControl_ComPortSet.Controls.Add(this.radioButton1);
            this.groupControl_ComPortSet.Controls.Add(this.radioButton2);
            this.groupControl_ComPortSet.Controls.Add(this.radioButton3);
            this.groupControl_ComPortSet.Controls.Add(this.radioButton4);
            this.groupControl_ComPortSet.Controls.Add(this.simpleButton6);
            this.groupControl_ComPortSet.Location = new System.Drawing.Point(184, 64);
            this.groupControl_ComPortSet.Name = "groupControl_ComPortSet";
            this.groupControl_ComPortSet.Size = new System.Drawing.Size(312, 216);
            this.groupControl_ComPortSet.TabIndex = 0;
            this.groupControl_ComPortSet.Text = "请选择管理机同电脑连接的串口";
            // 
            // simpleButton1
            // 
            this.simpleButton1.Location = new System.Drawing.Point(160, 184);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(56, 23);
            this.simpleButton1.TabIndex = 1;
            this.simpleButton1.Text = "确定";
            this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
            // 
            // radioButton1
            // 
            this.radioButton1.Location = new System.Drawing.Point(40, 32);
            this.radioButton1.Name = "radioButton1";
            this.radioButton1.Size = new System.Drawing.Size(104, 24);
            this.radioButton1.TabIndex = 0;
            this.radioButton1.Text = "串口1";
            // 
            // radioButton2
            // 
            this.radioButton2.Location = new System.Drawing.Point(168, 32);
            this.radioButton2.Name = "radioButton2";
            this.radioButton2.Size = new System.Drawing.Size(104, 24);
            this.radioButton2.TabIndex = 0;
            this.radioButton2.Text = "串口2";
            // 
            // radioButton3
            // 
            this.radioButton3.Location = new System.Drawing.Point(168, 80);
            this.radioButton3.Name = "radioButton3";
            this.radioButton3.Size = new System.Drawing.Size(104, 24);
            this.radioButton3.TabIndex = 0;
            this.radioButton3.Text = "串口4";
            // 
            // radioButton4
            // 
            this.radioButton4.Location = new System.Drawing.Point(40, 80);
            this.radioButton4.Name = "radioButton4";
            this.radioButton4.Size = new System.Drawing.Size(104, 24);
            this.radioButton4.TabIndex = 0;
            this.radioButton4.Text = "串口3";
            // 
            // simpleButton6
            // 
            this.simpleButton6.Location = new System.Drawing.Point(232, 184);
            this.simpleButton6.Name = "simpleButton6";
            this.simpleButton6.Size = new System.Drawing.Size(56, 23);
            this.simpleButton6.TabIndex = 1;
            this.simpleButton6.Text = "取消";
            this.simpleButton6.Click += new System.EventHandler(this.simpleButton6_Click);
            // 
            // xtraTabPage_AutoShutDown
            // 
            this.xtraTabPage_AutoShutDown.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_AutoShutDown.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_AutoShutDown.Controls.Add(this.groupControl2);
            this.xtraTabPage_AutoShutDown.Controls.Add(this.notePanel2);
            this.xtraTabPage_AutoShutDown.Name = "xtraTabPage_AutoShutDown";
            this.xtraTabPage_AutoShutDown.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_AutoShutDown.Text = "关机时间设置";
            // 
            // groupControl2
            // 
            this.groupControl2.Controls.Add(this.checkEdit1);
            this.groupControl2.Controls.Add(this.timeEdit_DutyStartTime);
            this.groupControl2.Controls.Add(this.notePanel_ShutDownTime);
            this.groupControl2.Controls.Add(this.simpleButton3);
            this.groupControl2.Controls.Add(this.simpleButton5);
            this.groupControl2.Controls.Add(this.checkEdit2);
            this.groupControl2.Location = new System.Drawing.Point(168, 48);
            this.groupControl2.Name = "groupControl2";
            this.groupControl2.Size = new System.Drawing.Size(312, 216);
            this.groupControl2.TabIndex = 8;
            this.groupControl2.Text = "设置";
            // 
            // checkEdit1
            // 
            this.checkEdit1.Location = new System.Drawing.Point(68, 128);
            this.checkEdit1.Name = "checkEdit1";
            this.checkEdit1.Properties.Caption = "启动时自动运行";
            this.checkEdit1.Size = new System.Drawing.Size(180, 19);
            this.checkEdit1.TabIndex = 16;
            // 
            // timeEdit_DutyStartTime
            // 
            this.timeEdit_DutyStartTime.EditValue = new System.DateTime(2005, 8, 29, 0, 0, 0, 0);
            this.timeEdit_DutyStartTime.Location = new System.Drawing.Point(156, 48);
            this.timeEdit_DutyStartTime.Name = "timeEdit_DutyStartTime";
            this.timeEdit_DutyStartTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.timeEdit_DutyStartTime.Size = new System.Drawing.Size(88, 20);
            this.timeEdit_DutyStartTime.TabIndex = 15;
            // 
            // notePanel_ShutDownTime
            // 
            this.notePanel_ShutDownTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ShutDownTime.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ShutDownTime.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ShutDownTime.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ShutDownTime.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ShutDownTime.Location = new System.Drawing.Point(68, 48);
            this.notePanel_ShutDownTime.MaxRows = 5;
            this.notePanel_ShutDownTime.Name = "notePanel_ShutDownTime";
            this.notePanel_ShutDownTime.ParentAutoHeight = true;
            this.notePanel_ShutDownTime.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ShutDownTime.TabIndex = 14;
            this.notePanel_ShutDownTime.TabStop = false;
            this.notePanel_ShutDownTime.Text = "关机时间";
            // 
            // simpleButton3
            // 
            this.simpleButton3.Location = new System.Drawing.Point(160, 184);
            this.simpleButton3.Name = "simpleButton3";
            this.simpleButton3.Size = new System.Drawing.Size(56, 23);
            this.simpleButton3.TabIndex = 1;
            this.simpleButton3.Text = "确定";
            this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
            // 
            // simpleButton5
            // 
            this.simpleButton5.Location = new System.Drawing.Point(232, 184);
            this.simpleButton5.Name = "simpleButton5";
            this.simpleButton5.Size = new System.Drawing.Size(56, 23);
            this.simpleButton5.TabIndex = 1;
            this.simpleButton5.Text = "取消";
            this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
            // 
            // checkEdit2
            // 
            this.checkEdit2.Location = new System.Drawing.Point(68, 88);
            this.checkEdit2.Name = "checkEdit2";
            this.checkEdit2.Properties.Caption = "开启自动关机";
            this.checkEdit2.Size = new System.Drawing.Size(180, 19);
            this.checkEdit2.TabIndex = 16;
            this.checkEdit2.CheckedChanged += new System.EventHandler(this.checkEdit2_CheckedChanged);
            // 
            // notePanel2
            // 
            this.notePanel2.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel2.ForeColor = System.Drawing.Color.Gray;
            this.notePanel2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel2.Location = new System.Drawing.Point(168, 280);
            this.notePanel2.MaxRows = 5;
            this.notePanel2.Name = "notePanel2";
            this.notePanel2.ParentAutoHeight = true;
            this.notePanel2.Size = new System.Drawing.Size(272, 23);
            this.notePanel2.TabIndex = 9;
            this.notePanel2.TabStop = false;
            this.notePanel2.Text = "自动关机功能已启动";
            this.notePanel2.Visible = false;
            // 
            // xtraTabPage_AutoSendSmsTimeSet
            // 
            this.xtraTabPage_AutoSendSmsTimeSet.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_AutoSendSmsTimeSet.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_AutoSendSmsTimeSet.Controls.Add(this.groupControl3);
            this.xtraTabPage_AutoSendSmsTimeSet.Controls.Add(this.notePanel4);
            this.xtraTabPage_AutoSendSmsTimeSet.Name = "xtraTabPage_AutoSendSmsTimeSet";
            this.xtraTabPage_AutoSendSmsTimeSet.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_AutoSendSmsTimeSet.Text = "短信功能设置";
            // 
            // groupControl3
            // 
            this.groupControl3.Controls.Add(this.timeEdit_SMSMorningTime);
            this.groupControl3.Controls.Add(this.notePanel3);
            this.groupControl3.Controls.Add(this.simpleButton4);
            this.groupControl3.Controls.Add(this.notePanel5);
            this.groupControl3.Controls.Add(this.timeEdit_SMSNightTime);
            this.groupControl3.Controls.Add(this.notePanel6);
            this.groupControl3.Controls.Add(this.simpleButton7);
            this.groupControl3.Location = new System.Drawing.Point(168, 56);
            this.groupControl3.Name = "groupControl3";
            this.groupControl3.Size = new System.Drawing.Size(312, 216);
            this.groupControl3.TabIndex = 10;
            this.groupControl3.Text = "设置";
            // 
            // timeEdit_SMSMorningTime
            // 
            this.timeEdit_SMSMorningTime.EditValue = new System.DateTime(2005, 8, 29, 0, 0, 0, 0);
            this.timeEdit_SMSMorningTime.Location = new System.Drawing.Point(152, 96);
            this.timeEdit_SMSMorningTime.Name = "timeEdit_SMSMorningTime";
            this.timeEdit_SMSMorningTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.timeEdit_SMSMorningTime.Size = new System.Drawing.Size(88, 20);
            this.timeEdit_SMSMorningTime.TabIndex = 15;
            // 
            // notePanel3
            // 
            this.notePanel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel3.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel3.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel3.ForeColor = System.Drawing.Color.Black;
            this.notePanel3.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel3.Location = new System.Drawing.Point(64, 96);
            this.notePanel3.MaxRows = 5;
            this.notePanel3.Name = "notePanel3";
            this.notePanel3.ParentAutoHeight = true;
            this.notePanel3.Size = new System.Drawing.Size(80, 22);
            this.notePanel3.TabIndex = 14;
            this.notePanel3.TabStop = false;
            this.notePanel3.Text = "迟到时间";
            // 
            // simpleButton4
            // 
            this.simpleButton4.Location = new System.Drawing.Point(160, 184);
            this.simpleButton4.Name = "simpleButton4";
            this.simpleButton4.Size = new System.Drawing.Size(56, 23);
            this.simpleButton4.TabIndex = 1;
            this.simpleButton4.Text = "确定";
            this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
            // 
            // notePanel5
            // 
            this.notePanel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel5.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel5.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel5.ForeColor = System.Drawing.Color.Black;
            this.notePanel5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel5.Location = new System.Drawing.Point(64, 128);
            this.notePanel5.MaxRows = 5;
            this.notePanel5.Name = "notePanel5";
            this.notePanel5.ParentAutoHeight = true;
            this.notePanel5.Size = new System.Drawing.Size(80, 22);
            this.notePanel5.TabIndex = 14;
            this.notePanel5.TabStop = false;
            this.notePanel5.Text = "晚接时间";
            // 
            // timeEdit_SMSNightTime
            // 
            this.timeEdit_SMSNightTime.EditValue = new System.DateTime(2005, 8, 29, 0, 0, 0, 0);
            this.timeEdit_SMSNightTime.Location = new System.Drawing.Point(152, 128);
            this.timeEdit_SMSNightTime.Name = "timeEdit_SMSNightTime";
            this.timeEdit_SMSNightTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.timeEdit_SMSNightTime.Size = new System.Drawing.Size(88, 20);
            this.timeEdit_SMSNightTime.TabIndex = 15;
            // 
            // notePanel6
            // 
            this.notePanel6.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel6.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel6.ForeColor = System.Drawing.Color.Gray;
            this.notePanel6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel6.Location = new System.Drawing.Point(2, 22);
            this.notePanel6.MaxRows = 5;
            this.notePanel6.Name = "notePanel6";
            this.notePanel6.ParentAutoHeight = true;
            this.notePanel6.Size = new System.Drawing.Size(308, 52);
            this.notePanel6.TabIndex = 11;
            this.notePanel6.TabStop = false;
            this.notePanel6.Text = "当每日时间到达迟到时间,晚接时间,如果注册过短信服务的学生仍为到校,系统将会自动向手机发出信息提示!";
            // 
            // simpleButton7
            // 
            this.simpleButton7.Location = new System.Drawing.Point(232, 184);
            this.simpleButton7.Name = "simpleButton7";
            this.simpleButton7.Size = new System.Drawing.Size(56, 23);
            this.simpleButton7.TabIndex = 1;
            this.simpleButton7.Text = "取消";
            this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
            // 
            // notePanel4
            // 
            this.notePanel4.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel4.ForeColor = System.Drawing.Color.Gray;
            this.notePanel4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel4.Location = new System.Drawing.Point(184, 288);
            this.notePanel4.MaxRows = 5;
            this.notePanel4.Name = "notePanel4";
            this.notePanel4.ParentAutoHeight = true;
            this.notePanel4.Size = new System.Drawing.Size(272, 23);
            this.notePanel4.TabIndex = 11;
            this.notePanel4.TabStop = false;
            this.notePanel4.Text = "短信自动发送时间设定成功";
            this.notePanel4.Visible = false;
            // 
            // xtraTabPage1
            // 
            this.xtraTabPage1.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage1.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage1.Controls.Add(this.groupControl4);
            this.xtraTabPage1.Name = "xtraTabPage1";
            this.xtraTabPage1.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage1.Text = "修改个人密码";
            // 
            // groupControl4
            // 
            this.groupControl4.Controls.Add(this.textEdit_NewPwd);
            this.groupControl4.Controls.Add(this.notePanel1);
            this.groupControl4.Controls.Add(this.simpleButton8);
            this.groupControl4.Controls.Add(this.notePanel7);
            this.groupControl4.Controls.Add(this.simpleButton9);
            this.groupControl4.Controls.Add(this.textEdit_ConfirmPwd);
            this.groupControl4.Controls.Add(this.notePanel8);
            this.groupControl4.Controls.Add(this.textEdit_OldPwd);
            this.groupControl4.Location = new System.Drawing.Point(176, 64);
            this.groupControl4.Name = "groupControl4";
            this.groupControl4.Size = new System.Drawing.Size(312, 216);
            this.groupControl4.TabIndex = 11;
            this.groupControl4.Text = "请输入修改密码";
            // 
            // textEdit_NewPwd
            // 
            this.textEdit_NewPwd.EditValue = "";
            this.textEdit_NewPwd.Location = new System.Drawing.Point(160, 72);
            this.textEdit_NewPwd.Name = "textEdit_NewPwd";
            this.textEdit_NewPwd.Properties.PasswordChar = '*';
            this.textEdit_NewPwd.Size = new System.Drawing.Size(88, 20);
            this.textEdit_NewPwd.TabIndex = 17;
            // 
            // notePanel1
            // 
            this.notePanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel1.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel1.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel1.ForeColor = System.Drawing.Color.Black;
            this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel1.Location = new System.Drawing.Point(72, 72);
            this.notePanel1.MaxRows = 5;
            this.notePanel1.Name = "notePanel1";
            this.notePanel1.ParentAutoHeight = true;
            this.notePanel1.Size = new System.Drawing.Size(80, 22);
            this.notePanel1.TabIndex = 14;
            this.notePanel1.TabStop = false;
            this.notePanel1.Text = "修改密码";
            // 
            // simpleButton8
            // 
            this.simpleButton8.Location = new System.Drawing.Point(128, 144);
            this.simpleButton8.Name = "simpleButton8";
            this.simpleButton8.Size = new System.Drawing.Size(56, 23);
            this.simpleButton8.TabIndex = 1;
            this.simpleButton8.Text = "确定";
            this.simpleButton8.Click += new System.EventHandler(this.simpleButton8_Click);
            // 
            // notePanel7
            // 
            this.notePanel7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel7.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel7.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel7.ForeColor = System.Drawing.Color.Black;
            this.notePanel7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel7.Location = new System.Drawing.Point(72, 104);
            this.notePanel7.MaxRows = 5;
            this.notePanel7.Name = "notePanel7";
            this.notePanel7.ParentAutoHeight = true;
            this.notePanel7.Size = new System.Drawing.Size(80, 22);
            this.notePanel7.TabIndex = 14;
            this.notePanel7.TabStop = false;
            this.notePanel7.Text = "确认密码";
            // 
            // simpleButton9
            // 
            this.simpleButton9.Location = new System.Drawing.Point(192, 144);
            this.simpleButton9.Name = "simpleButton9";
            this.simpleButton9.Size = new System.Drawing.Size(56, 23);
            this.simpleButton9.TabIndex = 1;
            this.simpleButton9.Text = "取消";
            this.simpleButton9.Click += new System.EventHandler(this.simpleButton9_Click);
            // 
            // textEdit_ConfirmPwd
            // 
            this.textEdit_ConfirmPwd.EditValue = "";
            this.textEdit_ConfirmPwd.Location = new System.Drawing.Point(160, 104);
            this.textEdit_ConfirmPwd.Name = "textEdit_ConfirmPwd";
            this.textEdit_ConfirmPwd.Properties.PasswordChar = '*';
            this.textEdit_ConfirmPwd.Size = new System.Drawing.Size(88, 20);
            this.textEdit_ConfirmPwd.TabIndex = 18;
            // 
            // notePanel8
            // 
            this.notePanel8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel8.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel8.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel8.ForeColor = System.Drawing.Color.Black;
            this.notePanel8.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel8.Location = new System.Drawing.Point(72, 40);
            this.notePanel8.MaxRows = 5;
            this.notePanel8.Name = "notePanel8";
            this.notePanel8.ParentAutoHeight = true;
            this.notePanel8.Size = new System.Drawing.Size(80, 22);
            this.notePanel8.TabIndex = 14;
            this.notePanel8.TabStop = false;
            this.notePanel8.Text = "原始密码";
            // 
            // textEdit_OldPwd
            // 
            this.textEdit_OldPwd.EditValue = "";
            this.textEdit_OldPwd.Location = new System.Drawing.Point(160, 40);
            this.textEdit_OldPwd.Name = "textEdit_OldPwd";
            this.textEdit_OldPwd.Properties.PasswordChar = '*';
            this.textEdit_OldPwd.Size = new System.Drawing.Size(88, 20);
            this.textEdit_OldPwd.TabIndex = 16;
            // 
            // xtraTabPage2
            // 
            this.xtraTabPage2.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage2.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage2.Controls.Add(this.groupControl1);
            this.xtraTabPage2.Name = "xtraTabPage2";
            this.xtraTabPage2.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage2.Text = "配置自动更新地址";
            // 
            // groupControl1
            // 
            this.groupControl1.Controls.Add(this.textEdit_UpdateAddress);
            this.groupControl1.Controls.Add(this.simpleButton2);
            this.groupControl1.Controls.Add(this.simpleButton10);
            this.groupControl1.Location = new System.Drawing.Point(176, 64);
            this.groupControl1.Name = "groupControl1";
            this.groupControl1.Size = new System.Drawing.Size(312, 216);
            this.groupControl1.TabIndex = 1;
            this.groupControl1.Text = "请输入自动更新网络地址";
            // 
            // textEdit_UpdateAddress
            // 
            this.textEdit_UpdateAddress.EditValue = "";
            this.textEdit_UpdateAddress.Location = new System.Drawing.Point(52, 72);
            this.textEdit_UpdateAddress.Name = "textEdit_UpdateAddress";
            this.textEdit_UpdateAddress.Size = new System.Drawing.Size(208, 20);
            this.textEdit_UpdateAddress.TabIndex = 17;
            // 
            // simpleButton2
            // 
            this.simpleButton2.Location = new System.Drawing.Point(160, 168);
            this.simpleButton2.Name = "simpleButton2";
            this.simpleButton2.Size = new System.Drawing.Size(56, 23);
            this.simpleButton2.TabIndex = 1;
            this.simpleButton2.Text = "确定";
            this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
            // 
            // simpleButton10
            // 
            this.simpleButton10.Location = new System.Drawing.Point(232, 168);
            this.simpleButton10.Name = "simpleButton10";
            this.simpleButton10.Size = new System.Drawing.Size(56, 23);
            this.simpleButton10.TabIndex = 1;
            this.simpleButton10.Text = "取消";
            this.simpleButton10.Click += new System.EventHandler(this.simpleButton10_Click);
            // 
            // xtraTabPage3
            // 
            this.xtraTabPage3.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage3.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage3.Controls.Add(this.groupControl5);
            this.xtraTabPage3.Name = "xtraTabPage3";
            this.xtraTabPage3.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage3.Text = "配置数据库";
            // 
            // groupControl5
            // 
            this.groupControl5.Controls.Add(this.textEdit_DBUser);
            this.groupControl5.Controls.Add(this.notePanel9);
            this.groupControl5.Controls.Add(this.notePanel10);
            this.groupControl5.Controls.Add(this.textEdit_DBPwd);
            this.groupControl5.Controls.Add(this.notePanel11);
            this.groupControl5.Controls.Add(this.textEdit_DBName);
            this.groupControl5.Controls.Add(this.simpleButton11);
            this.groupControl5.Controls.Add(this.simpleButton12);
            this.groupControl5.Location = new System.Drawing.Point(168, 56);
            this.groupControl5.Name = "groupControl5";
            this.groupControl5.Size = new System.Drawing.Size(342, 256);
            this.groupControl5.TabIndex = 2;
            this.groupControl5.Text = "服务器配置";
            // 
            // textEdit_DBUser
            // 
            this.textEdit_DBUser.EditValue = "";
            this.textEdit_DBUser.Location = new System.Drawing.Point(153, 93);
            this.textEdit_DBUser.Name = "textEdit_DBUser";
            this.textEdit_DBUser.Size = new System.Drawing.Size(152, 20);
            this.textEdit_DBUser.TabIndex = 23;
            // 
            // notePanel9
            // 
            this.notePanel9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel9.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel9.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel9.ForeColor = System.Drawing.Color.Black;
            this.notePanel9.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel9.Location = new System.Drawing.Point(38, 93);
            this.notePanel9.MaxRows = 5;
            this.notePanel9.Name = "notePanel9";
            this.notePanel9.ParentAutoHeight = true;
            this.notePanel9.Size = new System.Drawing.Size(104, 22);
            this.notePanel9.TabIndex = 21;
            this.notePanel9.TabStop = false;
            this.notePanel9.Text = "     用户名:";
            // 
            // notePanel10
            // 
            this.notePanel10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel10.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel10.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel10.ForeColor = System.Drawing.Color.Black;
            this.notePanel10.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel10.Location = new System.Drawing.Point(38, 125);
            this.notePanel10.MaxRows = 5;
            this.notePanel10.Name = "notePanel10";
            this.notePanel10.ParentAutoHeight = true;
            this.notePanel10.Size = new System.Drawing.Size(104, 22);
            this.notePanel10.TabIndex = 19;
            this.notePanel10.TabStop = false;
            this.notePanel10.Text = "      密   码:";
            // 
            // textEdit_DBPwd
            // 
            this.textEdit_DBPwd.EditValue = "";
            this.textEdit_DBPwd.Location = new System.Drawing.Point(153, 125);
            this.textEdit_DBPwd.Name = "textEdit_DBPwd";
            this.textEdit_DBPwd.Properties.PasswordChar = '*';
            this.textEdit_DBPwd.Size = new System.Drawing.Size(152, 20);
            this.textEdit_DBPwd.TabIndex = 24;
            // 
            // notePanel11
            // 
            this.notePanel11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel11.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel11.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel11.ForeColor = System.Drawing.Color.Black;
            this.notePanel11.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel11.Location = new System.Drawing.Point(38, 61);
            this.notePanel11.MaxRows = 5;
            this.notePanel11.Name = "notePanel11";
            this.notePanel11.ParentAutoHeight = true;
            this.notePanel11.Size = new System.Drawing.Size(104, 22);
            this.notePanel11.TabIndex = 20;
            this.notePanel11.TabStop = false;
            this.notePanel11.Text = "数据库实例名:";
            // 
            // textEdit_DBName
            // 
            this.textEdit_DBName.EditValue = "";
            this.textEdit_DBName.Location = new System.Drawing.Point(153, 61);
            this.textEdit_DBName.Name = "textEdit_DBName";
            this.textEdit_DBName.Size = new System.Drawing.Size(152, 20);
            this.textEdit_DBName.TabIndex = 22;
            // 
            // simpleButton11
            // 
            this.simpleButton11.Location = new System.Drawing.Point(75, 168);
            this.simpleButton11.Name = "simpleButton11";
            this.simpleButton11.Size = new System.Drawing.Size(85, 23);
            this.simpleButton11.TabIndex = 1;
            this.simpleButton11.Text = "测试连接";
            this.simpleButton11.Click += new System.EventHandler(this.simpleButton11_Click);
            // 
            // simpleButton12
            // 
            this.simpleButton12.Location = new System.Drawing.Point(182, 168);
            this.simpleButton12.Name = "simpleButton12";
            this.simpleButton12.Size = new System.Drawing.Size(85, 23);
            this.simpleButton12.TabIndex = 1;
            this.simpleButton12.Text = "保存设置";
            this.simpleButton12.Click += new System.EventHandler(this.simpleButton12_Click);
            // 
            // xtraTabPage_BatchCreate
            // 
            this.xtraTabPage_BatchCreate.Controls.Add(this.splitContainerControl1);
            this.xtraTabPage_BatchCreate.Name = "xtraTabPage_BatchCreate";
            this.xtraTabPage_BatchCreate.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_BatchCreate.Text = "批量数据生成";
            // 
            // splitContainerControl1
            // 
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.groupControl8);
            this.splitContainerControl1.Panel1.Controls.Add(this.groupControl6);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.groupControl7);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(682, 400);
            this.splitContainerControl1.SplitterPosition = 213;
            this.splitContainerControl1.TabIndex = 0;
            this.splitContainerControl1.Text = "splitContainerControl1";
            // 
            // groupControl8
            // 
            this.groupControl8.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl8.AppearanceCaption.Options.UseFont = true;
            this.groupControl8.Controls.Add(this.textEdit_ClassVol);
            this.groupControl8.Controls.Add(this.textEdit_BatchCreate_TerminalNumbers);
            this.groupControl8.Controls.Add(this.textEdit_BatchCreate_ClassNumbers);
            this.groupControl8.Controls.Add(this.notePanel_ClassVol);
            this.groupControl8.Controls.Add(this.notePanel_BatchCreate_TerminalNumbers);
            this.groupControl8.Controls.Add(this.notePanel_BatchCreate_ClassNumbers);
            this.groupControl8.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl8.Location = new System.Drawing.Point(0, 256);
            this.groupControl8.Name = "groupControl8";
            this.groupControl8.Size = new System.Drawing.Size(213, 144);
            this.groupControl8.TabIndex = 1;
            this.groupControl8.Text = "硬件信息修改";
            // 
            // textEdit_ClassVol
            // 
            this.textEdit_ClassVol.EditValue = "";
            this.textEdit_ClassVol.Location = new System.Drawing.Point(104, 96);
            this.textEdit_ClassVol.Name = "textEdit_ClassVol";
            this.textEdit_ClassVol.Size = new System.Drawing.Size(96, 20);
            this.textEdit_ClassVol.TabIndex = 32;
            // 
            // textEdit_BatchCreate_TerminalNumbers
            // 
            this.textEdit_BatchCreate_TerminalNumbers.EditValue = "";
            this.textEdit_BatchCreate_TerminalNumbers.Location = new System.Drawing.Point(104, 64);
            this.textEdit_BatchCreate_TerminalNumbers.Name = "textEdit_BatchCreate_TerminalNumbers";
            this.textEdit_BatchCreate_TerminalNumbers.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_TerminalNumbers.TabIndex = 31;
            // 
            // textEdit_BatchCreate_ClassNumbers
            // 
            this.textEdit_BatchCreate_ClassNumbers.EditValue = "";
            this.textEdit_BatchCreate_ClassNumbers.Location = new System.Drawing.Point(104, 32);
            this.textEdit_BatchCreate_ClassNumbers.Name = "textEdit_BatchCreate_ClassNumbers";
            this.textEdit_BatchCreate_ClassNumbers.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_ClassNumbers.TabIndex = 30;
            // 
            // notePanel_ClassVol
            // 
            this.notePanel_ClassVol.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ClassVol.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ClassVol.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ClassVol.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ClassVol.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ClassVol.Location = new System.Drawing.Point(16, 96);
            this.notePanel_ClassVol.MaxRows = 5;
            this.notePanel_ClassVol.Name = "notePanel_ClassVol";
            this.notePanel_ClassVol.ParentAutoHeight = true;
            this.notePanel_ClassVol.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ClassVol.TabIndex = 24;
            this.notePanel_ClassVol.TabStop = false;
            this.notePanel_ClassVol.Text = "教室容量:";
            // 
            // notePanel_BatchCreate_TerminalNumbers
            // 
            this.notePanel_BatchCreate_TerminalNumbers.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_TerminalNumbers.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_TerminalNumbers.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_TerminalNumbers.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_TerminalNumbers.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_TerminalNumbers.Location = new System.Drawing.Point(16, 64);
            this.notePanel_BatchCreate_TerminalNumbers.MaxRows = 5;
            this.notePanel_BatchCreate_TerminalNumbers.Name = "notePanel_BatchCreate_TerminalNumbers";
            this.notePanel_BatchCreate_TerminalNumbers.ParentAutoHeight = true;
            this.notePanel_BatchCreate_TerminalNumbers.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_TerminalNumbers.TabIndex = 23;
            this.notePanel_BatchCreate_TerminalNumbers.TabStop = false;
            this.notePanel_BatchCreate_TerminalNumbers.Text = "主机总数:";
            // 
            // notePanel_BatchCreate_ClassNumbers
            // 
            this.notePanel_BatchCreate_ClassNumbers.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_ClassNumbers.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_ClassNumbers.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_ClassNumbers.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_ClassNumbers.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_ClassNumbers.Location = new System.Drawing.Point(16, 32);
            this.notePanel_BatchCreate_ClassNumbers.MaxRows = 5;
            this.notePanel_BatchCreate_ClassNumbers.Name = "notePanel_BatchCreate_ClassNumbers";
            this.notePanel_BatchCreate_ClassNumbers.ParentAutoHeight = true;
            this.notePanel_BatchCreate_ClassNumbers.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_ClassNumbers.TabIndex = 22;
            this.notePanel_BatchCreate_ClassNumbers.TabStop = false;
            this.notePanel_BatchCreate_ClassNumbers.Text = "班级总数:";
            // 
            // groupControl6
            // 
            this.groupControl6.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl6.AppearanceCaption.Options.UseFont = true;
            this.groupControl6.Controls.Add(this.textEdit_BatchCreate_CardNumber);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_CardNumber);
            this.groupControl6.Controls.Add(this.comboBoxEdit_BatchCreate_Load);
            this.groupControl6.Controls.Add(this.comboBoxEdit_BatchCreate_Type);
            this.groupControl6.Controls.Add(this.textEdit_BatchCreate_Number);
            this.groupControl6.Controls.Add(this.textEdit_BatchCreate_Name);
            this.groupControl6.Controls.Add(this.comboBoxEdit_BatchCreate_Class);
            this.groupControl6.Controls.Add(this.comboBoxEdit_BatchCreate_Grade);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Load);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Type);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Number);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Name);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Class);
            this.groupControl6.Controls.Add(this.notePanel_BatchCreate_Grade);
            this.groupControl6.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl6.Location = new System.Drawing.Point(0, 0);
            this.groupControl6.Name = "groupControl6";
            this.groupControl6.Size = new System.Drawing.Size(213, 256);
            this.groupControl6.TabIndex = 0;
            this.groupControl6.Text = "信息查询";
            // 
            // textEdit_BatchCreate_CardNumber
            // 
            this.textEdit_BatchCreate_CardNumber.EditValue = "";
            this.textEdit_BatchCreate_CardNumber.Location = new System.Drawing.Point(104, 152);
            this.textEdit_BatchCreate_CardNumber.Name = "textEdit_BatchCreate_CardNumber";
            this.textEdit_BatchCreate_CardNumber.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_CardNumber.TabIndex = 34;
            this.textEdit_BatchCreate_CardNumber.EditValueChanged += new System.EventHandler(this.textEdit_BatchCreate_CardNumber_EditValueChanged);
            // 
            // notePanel_BatchCreate_CardNumber
            // 
            this.notePanel_BatchCreate_CardNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_CardNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_CardNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_CardNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_CardNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_CardNumber.Location = new System.Drawing.Point(16, 152);
            this.notePanel_BatchCreate_CardNumber.MaxRows = 5;
            this.notePanel_BatchCreate_CardNumber.Name = "notePanel_BatchCreate_CardNumber";
            this.notePanel_BatchCreate_CardNumber.ParentAutoHeight = true;
            this.notePanel_BatchCreate_CardNumber.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_CardNumber.TabIndex = 33;
            this.notePanel_BatchCreate_CardNumber.TabStop = false;
            this.notePanel_BatchCreate_CardNumber.Text = "  卡  号:";
            // 
            // comboBoxEdit_BatchCreate_Load
            // 
            this.comboBoxEdit_BatchCreate_Load.EditValue = "未选择";
            this.comboBoxEdit_BatchCreate_Load.Location = new System.Drawing.Point(104, 216);
            this.comboBoxEdit_BatchCreate_Load.Name = "comboBoxEdit_BatchCreate_Load";
            this.comboBoxEdit_BatchCreate_Load.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchCreate_Load.Properties.Items.AddRange(new object[] {
            "学生信息表(简单)",
            "学生信息表(复杂)",
            "教师信息表",
            "生成卡号新增表",
            "载入卡号新增表"});
            this.comboBoxEdit_BatchCreate_Load.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchCreate_Load.Size = new System.Drawing.Size(96, 20);
            this.comboBoxEdit_BatchCreate_Load.TabIndex = 32;
            this.comboBoxEdit_BatchCreate_Load.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchCreate_Load_SelectedIndexChanged);
            // 
            // comboBoxEdit_BatchCreate_Type
            // 
            this.comboBoxEdit_BatchCreate_Type.EditValue = "未选择";
            this.comboBoxEdit_BatchCreate_Type.Location = new System.Drawing.Point(104, 184);
            this.comboBoxEdit_BatchCreate_Type.Name = "comboBoxEdit_BatchCreate_Type";
            this.comboBoxEdit_BatchCreate_Type.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchCreate_Type.Properties.Items.AddRange(new object[] {
            "年级表(含部门)",
            "班级表(含岗位)",
            "学生基本信息表",
            "学生卡号表",
            "教师基本信息表",
            "教师卡号表",
            "硬件配置表"});
            this.comboBoxEdit_BatchCreate_Type.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchCreate_Type.Size = new System.Drawing.Size(96, 20);
            this.comboBoxEdit_BatchCreate_Type.TabIndex = 31;
            this.comboBoxEdit_BatchCreate_Type.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchCreate_Type_SelectedIndexChanged);
            // 
            // textEdit_BatchCreate_Number
            // 
            this.textEdit_BatchCreate_Number.EditValue = "";
            this.textEdit_BatchCreate_Number.Location = new System.Drawing.Point(104, 120);
            this.textEdit_BatchCreate_Number.Name = "textEdit_BatchCreate_Number";
            this.textEdit_BatchCreate_Number.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_Number.TabIndex = 30;
            this.textEdit_BatchCreate_Number.EditValueChanged += new System.EventHandler(this.textEdit_BatchCreate_Number_EditValueChanged);
            // 
            // textEdit_BatchCreate_Name
            // 
            this.textEdit_BatchCreate_Name.EditValue = "";
            this.textEdit_BatchCreate_Name.Location = new System.Drawing.Point(104, 88);
            this.textEdit_BatchCreate_Name.Name = "textEdit_BatchCreate_Name";
            this.textEdit_BatchCreate_Name.Size = new System.Drawing.Size(96, 20);
            this.textEdit_BatchCreate_Name.TabIndex = 29;
            this.textEdit_BatchCreate_Name.EditValueChanged += new System.EventHandler(this.textEdit_BatchCreate_Name_EditValueChanged);
            // 
            // comboBoxEdit_BatchCreate_Class
            // 
            this.comboBoxEdit_BatchCreate_Class.EditValue = "全部";
            this.comboBoxEdit_BatchCreate_Class.Location = new System.Drawing.Point(104, 56);
            this.comboBoxEdit_BatchCreate_Class.Name = "comboBoxEdit_BatchCreate_Class";
            this.comboBoxEdit_BatchCreate_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchCreate_Class.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_BatchCreate_Class.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchCreate_Class.Size = new System.Drawing.Size(96, 20);
            this.comboBoxEdit_BatchCreate_Class.TabIndex = 28;
            this.comboBoxEdit_BatchCreate_Class.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchCreate_Class_SelectedIndexChanged);
            // 
            // comboBoxEdit_BatchCreate_Grade
            // 
            this.comboBoxEdit_BatchCreate_Grade.EditValue = "全部";
            this.comboBoxEdit_BatchCreate_Grade.Location = new System.Drawing.Point(104, 24);
            this.comboBoxEdit_BatchCreate_Grade.Name = "comboBoxEdit_BatchCreate_Grade";
            this.comboBoxEdit_BatchCreate_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_BatchCreate_Grade.Properties.Items.AddRange(new object[] {
            "全部"});
            this.comboBoxEdit_BatchCreate_Grade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_BatchCreate_Grade.Size = new System.Drawing.Size(96, 20);
            this.comboBoxEdit_BatchCreate_Grade.TabIndex = 27;
            this.comboBoxEdit_BatchCreate_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_BatchCreate_Grade_SelectedIndexChanged);
            // 
            // notePanel_BatchCreate_Load
            // 
            this.notePanel_BatchCreate_Load.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Load.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Load.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Load.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Load.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Load.Location = new System.Drawing.Point(16, 216);
            this.notePanel_BatchCreate_Load.MaxRows = 5;
            this.notePanel_BatchCreate_Load.Name = "notePanel_BatchCreate_Load";
            this.notePanel_BatchCreate_Load.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Load.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Load.TabIndex = 26;
            this.notePanel_BatchCreate_Load.TabStop = false;
            this.notePanel_BatchCreate_Load.Text = "  载  入:";
            // 
            // notePanel_BatchCreate_Type
            // 
            this.notePanel_BatchCreate_Type.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Type.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Type.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Type.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Type.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Type.Location = new System.Drawing.Point(16, 184);
            this.notePanel_BatchCreate_Type.MaxRows = 5;
            this.notePanel_BatchCreate_Type.Name = "notePanel_BatchCreate_Type";
            this.notePanel_BatchCreate_Type.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Type.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Type.TabIndex = 25;
            this.notePanel_BatchCreate_Type.TabStop = false;
            this.notePanel_BatchCreate_Type.Text = "  类  型:";
            // 
            // notePanel_BatchCreate_Number
            // 
            this.notePanel_BatchCreate_Number.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Number.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Number.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Number.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Number.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Number.Location = new System.Drawing.Point(16, 120);
            this.notePanel_BatchCreate_Number.MaxRows = 5;
            this.notePanel_BatchCreate_Number.Name = "notePanel_BatchCreate_Number";
            this.notePanel_BatchCreate_Number.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Number.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Number.TabIndex = 24;
            this.notePanel_BatchCreate_Number.TabStop = false;
            this.notePanel_BatchCreate_Number.Text = "  学  号:";
            // 
            // notePanel_BatchCreate_Name
            // 
            this.notePanel_BatchCreate_Name.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Name.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Name.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Name.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Name.Location = new System.Drawing.Point(16, 88);
            this.notePanel_BatchCreate_Name.MaxRows = 5;
            this.notePanel_BatchCreate_Name.Name = "notePanel_BatchCreate_Name";
            this.notePanel_BatchCreate_Name.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Name.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Name.TabIndex = 23;
            this.notePanel_BatchCreate_Name.TabStop = false;
            this.notePanel_BatchCreate_Name.Text = "  姓  名:";
            // 
            // notePanel_BatchCreate_Class
            // 
            this.notePanel_BatchCreate_Class.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Class.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Class.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Class.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Class.Location = new System.Drawing.Point(16, 56);
            this.notePanel_BatchCreate_Class.MaxRows = 5;
            this.notePanel_BatchCreate_Class.Name = "notePanel_BatchCreate_Class";
            this.notePanel_BatchCreate_Class.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Class.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Class.TabIndex = 22;
            this.notePanel_BatchCreate_Class.TabStop = false;
            this.notePanel_BatchCreate_Class.Text = "  班  级:";
            // 
            // notePanel_BatchCreate_Grade
            // 
            this.notePanel_BatchCreate_Grade.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_BatchCreate_Grade.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_BatchCreate_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_BatchCreate_Grade.ForeColor = System.Drawing.Color.Black;
            this.notePanel_BatchCreate_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_BatchCreate_Grade.Location = new System.Drawing.Point(16, 24);
            this.notePanel_BatchCreate_Grade.MaxRows = 5;
            this.notePanel_BatchCreate_Grade.Name = "notePanel_BatchCreate_Grade";
            this.notePanel_BatchCreate_Grade.ParentAutoHeight = true;
            this.notePanel_BatchCreate_Grade.Size = new System.Drawing.Size(80, 22);
            this.notePanel_BatchCreate_Grade.TabIndex = 21;
            this.notePanel_BatchCreate_Grade.TabStop = false;
            this.notePanel_BatchCreate_Grade.Text = "  年  级:";
            // 
            // groupControl7
            // 
            this.groupControl7.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl7.AppearanceCaption.Options.UseFont = true;
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_Machine);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_TeaCard);
            this.groupControl7.Controls.Add(this.gridControl1_BatchCreate_TeaBasicInfo);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_StuCard);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_StuBasicInfo);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_Class);
            this.groupControl7.Controls.Add(this.gridControl_BatchCreate_Grade);
            this.groupControl7.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl7.Location = new System.Drawing.Point(0, 0);
            this.groupControl7.Name = "groupControl7";
            this.groupControl7.Size = new System.Drawing.Size(464, 400);
            this.groupControl7.TabIndex = 0;
            this.groupControl7.Text = "信息列表";
            // 
            // gridControl_BatchCreate_Machine
            // 
            this.gridControl_BatchCreate_Machine.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_Machine.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_Machine.MainView = this.gridView7;
            this.gridControl_BatchCreate_Machine.Name = "gridControl_BatchCreate_Machine";
            this.gridControl_BatchCreate_Machine.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemTextEdit1,
            this.repositoryItemTextEdit2});
            this.gridControl_BatchCreate_Machine.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_Machine.TabIndex = 6;
            this.gridControl_BatchCreate_Machine.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView7});
            // 
            // gridView7
            // 
            this.gridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn48,
            this.gridColumn47,
            this.gridColumn35,
            this.gridColumn36,
            this.gridColumn37});
            this.gridView7.GridControl = this.gridControl_BatchCreate_Machine;
            this.gridView7.Name = "gridView7";
            this.gridView7.OptionsCustomization.AllowFilter = false;
            this.gridView7.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView7.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn48
            // 
            this.gridColumn48.Caption = "gridColumn48";
            this.gridColumn48.FieldName = "Address";
            this.gridColumn48.Name = "gridColumn48";
            this.gridColumn48.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn48.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn48.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn48.OptionsColumn.AllowMove = false;
            this.gridColumn48.OptionsColumn.AllowSize = false;
            this.gridColumn48.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn48.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridColumn47
            // 
            this.gridColumn47.Caption = "gridColumn47";
            this.gridColumn47.FieldName = "Type";
            this.gridColumn47.Name = "gridColumn47";
            this.gridColumn47.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn47.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn47.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn47.OptionsColumn.AllowMove = false;
            this.gridColumn47.OptionsColumn.AllowSize = false;
            this.gridColumn47.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn47.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridColumn35
            // 
            this.gridColumn35.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn35.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn35.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn35.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn35.Caption = "硬件地址";
            this.gridColumn35.FieldName = "machine_address";
            this.gridColumn35.Name = "gridColumn35";
            this.gridColumn35.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn35.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn35.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn35.OptionsColumn.AllowMove = false;
            this.gridColumn35.OptionsColumn.AllowSize = false;
            this.gridColumn35.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn35.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn35.Visible = true;
            this.gridColumn35.VisibleIndex = 0;
            // 
            // gridColumn36
            // 
            this.gridColumn36.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn36.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn36.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn36.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn36.Caption = "硬件类型";
            this.gridColumn36.FieldName = "machine_type";
            this.gridColumn36.Name = "gridColumn36";
            this.gridColumn36.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn36.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn36.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn36.OptionsColumn.AllowMove = false;
            this.gridColumn36.OptionsColumn.AllowSize = false;
            this.gridColumn36.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn36.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn36.Visible = true;
            this.gridColumn36.VisibleIndex = 1;
            // 
            // gridColumn37
            // 
            this.gridColumn37.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn37.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn37.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn37.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn37.Caption = "硬件容量";
            this.gridColumn37.FieldName = "machine_volumn";
            this.gridColumn37.Name = "gridColumn37";
            this.gridColumn37.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn37.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn37.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn37.OptionsColumn.AllowMove = false;
            this.gridColumn37.OptionsColumn.AllowSize = false;
            this.gridColumn37.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn37.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn37.Visible = true;
            this.gridColumn37.VisibleIndex = 2;
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // repositoryItemTextEdit2
            // 
            this.repositoryItemTextEdit2.AutoHeight = false;
            this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
            // 
            // gridControl_BatchCreate_TeaCard
            // 
            this.gridControl_BatchCreate_TeaCard.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_TeaCard.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_TeaCard.MainView = this.gridView6;
            this.gridControl_BatchCreate_TeaCard.Name = "gridControl_BatchCreate_TeaCard";
            this.gridControl_BatchCreate_TeaCard.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_TeaCard.TabIndex = 5;
            this.gridControl_BatchCreate_TeaCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView6});
            // 
            // gridView6
            // 
            this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn30,
            this.gridColumn31,
            this.gridColumn32,
            this.gridColumn33,
            this.gridColumn34,
            this.gridColumn46});
            this.gridView6.GridControl = this.gridControl_BatchCreate_TeaCard;
            this.gridView6.Name = "gridView6";
            this.gridView6.OptionsCustomization.AllowFilter = false;
            this.gridView6.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView6.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn30
            // 
            this.gridColumn30.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn30.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn30.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn30.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn30.Caption = "工号";
            this.gridColumn30.FieldName = "T_Number";
            this.gridColumn30.Name = "gridColumn30";
            this.gridColumn30.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn30.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn30.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn30.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn30.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn30.Visible = true;
            this.gridColumn30.VisibleIndex = 0;
            this.gridColumn30.Width = 79;
            // 
            // gridColumn31
            // 
            this.gridColumn31.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn31.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn31.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn31.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn31.Caption = "姓名";
            this.gridColumn31.FieldName = "T_Name";
            this.gridColumn31.Name = "gridColumn31";
            this.gridColumn31.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn31.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn31.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn31.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn31.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn31.Visible = true;
            this.gridColumn31.VisibleIndex = 1;
            this.gridColumn31.Width = 80;
            // 
            // gridColumn32
            // 
            this.gridColumn32.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn32.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn32.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn32.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn32.Caption = "卡号";
            this.gridColumn32.FieldName = "info_teaCardNumber";
            this.gridColumn32.Name = "gridColumn32";
            this.gridColumn32.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn32.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn32.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn32.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn32.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn32.Visible = true;
            this.gridColumn32.VisibleIndex = 2;
            this.gridColumn32.Width = 120;
            // 
            // gridColumn33
            // 
            this.gridColumn33.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn33.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn33.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn33.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn33.Caption = "制卡日期";
            this.gridColumn33.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
            this.gridColumn33.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn33.FieldName = "info_teaCardSendDate";
            this.gridColumn33.Name = "gridColumn33";
            this.gridColumn33.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn33.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn33.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn33.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn33.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn33.Visible = true;
            this.gridColumn33.VisibleIndex = 3;
            this.gridColumn33.Width = 159;
            // 
            // gridColumn34
            // 
            this.gridColumn34.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn34.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn34.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn34.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn34.Caption = "gridColumn34";
            this.gridColumn34.FieldName = "info_teaBasicID";
            this.gridColumn34.Name = "gridColumn34";
            this.gridColumn34.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn34.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn34.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn34.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn34.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridColumn46
            // 
            this.gridColumn46.Caption = "gridColumn46";
            this.gridColumn46.FieldName = "info_teaCardSeq";
            this.gridColumn46.MinWidth = 10;
            this.gridColumn46.Name = "gridColumn46";
            // 
            // gridControl1_BatchCreate_TeaBasicInfo
            // 
            this.gridControl1_BatchCreate_TeaBasicInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl1_BatchCreate_TeaBasicInfo.Location = new System.Drawing.Point(2, 22);
            this.gridControl1_BatchCreate_TeaBasicInfo.MainView = this.gridView5;
            this.gridControl1_BatchCreate_TeaBasicInfo.Name = "gridControl1_BatchCreate_TeaBasicInfo";
            this.gridControl1_BatchCreate_TeaBasicInfo.Size = new System.Drawing.Size(460, 376);
            this.gridControl1_BatchCreate_TeaBasicInfo.TabIndex = 4;
            this.gridControl1_BatchCreate_TeaBasicInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView5});
            // 
            // gridView5
            // 
            this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn24,
            this.gridColumn25,
            this.gridColumn26,
            this.gridColumn27,
            this.gridColumn28,
            this.gridColumn29});
            this.gridView5.GridControl = this.gridControl1_BatchCreate_TeaBasicInfo;
            this.gridView5.Name = "gridView5";
            this.gridView5.OptionsCustomization.AllowFilter = false;
            this.gridView5.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView5.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn24
            // 
            this.gridColumn24.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn24.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn24.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn24.Caption = "姓名";
            this.gridColumn24.FieldName = "T_Name";
            this.gridColumn24.Name = "gridColumn24";
            this.gridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn24.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn24.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn24.Visible = true;
            this.gridColumn24.VisibleIndex = 0;
            // 
            // gridColumn25
            // 
            this.gridColumn25.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn25.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn25.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn25.Caption = "工号";
            this.gridColumn25.FieldName = "T_Number";
            this.gridColumn25.Name = "gridColumn25";
            this.gridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn25.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn25.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn25.Visible = true;
            this.gridColumn25.VisibleIndex = 1;
            // 
            // gridColumn26
            // 
            this.gridColumn26.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn26.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn26.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn26.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn26.Caption = "部门";
            this.gridColumn26.FieldName = "T_Depart";
            this.gridColumn26.Name = "gridColumn26";
            this.gridColumn26.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn26.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn26.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn26.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn26.Visible = true;
            this.gridColumn26.VisibleIndex = 2;
            // 
            // gridColumn27
            // 
            this.gridColumn27.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn27.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn27.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn27.Caption = "岗位";
            this.gridColumn27.FieldName = "T_Duty";
            this.gridColumn27.Name = "gridColumn27";
            this.gridColumn27.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn27.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn27.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn27.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn27.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn27.Visible = true;
            this.gridColumn27.VisibleIndex = 3;
            // 
            // gridColumn28
            // 
            this.gridColumn28.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn28.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn28.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn28.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn28.Caption = "性别";
            this.gridColumn28.FieldName = "T_Sex";
            this.gridColumn28.Name = "gridColumn28";
            this.gridColumn28.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn28.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn28.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn28.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn28.Visible = true;
            this.gridColumn28.VisibleIndex = 4;
            // 
            // gridColumn29
            // 
            this.gridColumn29.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn29.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn29.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn29.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn29.Caption = "gridColumn29";
            this.gridColumn29.FieldName = "T_ID";
            this.gridColumn29.Name = "gridColumn29";
            this.gridColumn29.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn29.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn29.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn29.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridControl_BatchCreate_StuCard
            // 
            this.gridControl_BatchCreate_StuCard.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_StuCard.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_StuCard.MainView = this.gridView4;
            this.gridControl_BatchCreate_StuCard.Name = "gridControl_BatchCreate_StuCard";
            this.gridControl_BatchCreate_StuCard.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_StuCard.TabIndex = 3;
            this.gridControl_BatchCreate_StuCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView4});
            this.gridControl_BatchCreate_StuCard.Visible = false;
            // 
            // gridView4
            // 
            this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn18,
            this.gridColumn19,
            this.gridColumn20,
            this.gridColumn21,
            this.gridColumn22,
            this.gridColumn23,
            this.gridColumn45});
            this.gridView4.GridControl = this.gridControl_BatchCreate_StuCard;
            this.gridView4.Name = "gridView4";
            this.gridView4.OptionsCustomization.AllowFilter = false;
            this.gridView4.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView4.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn18
            // 
            this.gridColumn18.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn18.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn18.Caption = "学号";
            this.gridColumn18.FieldName = "info_stuNumber";
            this.gridColumn18.Name = "gridColumn18";
            this.gridColumn18.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn18.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn18.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn18.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn18.Visible = true;
            this.gridColumn18.VisibleIndex = 0;
            this.gridColumn18.Width = 58;
            // 
            // gridColumn19
            // 
            this.gridColumn19.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn19.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn19.Caption = "姓名";
            this.gridColumn19.FieldName = "info_stuName";
            this.gridColumn19.Name = "gridColumn19";
            this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn19.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn19.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn19.Visible = true;
            this.gridColumn19.VisibleIndex = 1;
            this.gridColumn19.Width = 71;
            // 
            // gridColumn20
            // 
            this.gridColumn20.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn20.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn20.Caption = "卡号";
            this.gridColumn20.FieldName = "info_stuCardNumber";
            this.gridColumn20.Name = "gridColumn20";
            this.gridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn20.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn20.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn20.Visible = true;
            this.gridColumn20.VisibleIndex = 2;
            this.gridColumn20.Width = 94;
            // 
            // gridColumn21
            // 
            this.gridColumn21.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn21.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn21.Caption = "持卡人";
            this.gridColumn21.FieldName = "info_stuCardHolder";
            this.gridColumn21.Name = "gridColumn21";
            this.gridColumn21.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn21.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn21.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn21.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn21.Visible = true;
            this.gridColumn21.VisibleIndex = 3;
            this.gridColumn21.Width = 60;
            // 
            // gridColumn22
            // 
            this.gridColumn22.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn22.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn22.Caption = "制卡日期";
            this.gridColumn22.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
            this.gridColumn22.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn22.FieldName = "info_stuCardSendDate";
            this.gridColumn22.Name = "gridColumn22";
            this.gridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn22.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn22.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn22.Visible = true;
            this.gridColumn22.VisibleIndex = 4;
            this.gridColumn22.Width = 155;
            // 
            // gridColumn23
            // 
            this.gridColumn23.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn23.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn23.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn23.Caption = "gridColumn23";
            this.gridColumn23.FieldName = "info_stuBasicID";
            this.gridColumn23.MinWidth = 10;
            this.gridColumn23.Name = "gridColumn23";
            this.gridColumn23.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn23.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn23.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn23.OptionsColumn.ShowInCustomizationForm = false;
            // 
            // gridColumn45
            // 
            this.gridColumn45.Caption = "gridColumn45";
            this.gridColumn45.FieldName = "info_stuCardSeq";
            this.gridColumn45.Name = "gridColumn45";
            // 
            // gridControl_BatchCreate_StuBasicInfo
            // 
            this.gridControl_BatchCreate_StuBasicInfo.Dock = System.Windows.Forms.DockStyle.Fill;
            gridLevelNode1.RelationName = "Level1";
            this.gridControl_BatchCreate_StuBasicInfo.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
            gridLevelNode1});
            this.gridControl_BatchCreate_StuBasicInfo.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_StuBasicInfo.MainView = this.advBandedGridView1;
            this.gridControl_BatchCreate_StuBasicInfo.Name = "gridControl_BatchCreate_StuBasicInfo";
            this.gridControl_BatchCreate_StuBasicInfo.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_StuBasicInfo.TabIndex = 2;
            this.gridControl_BatchCreate_StuBasicInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.advBandedGridView1});
            this.gridControl_BatchCreate_StuBasicInfo.Visible = false;
            // 
            // advBandedGridView1
            // 
            this.advBandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand1});
            this.advBandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.gridColumn9,
            this.gridColumn10,
            this.gridColumn11,
            this.gridColumn12,
            this.gridColumn13,
            this.gridColumn14,
            this.gridColumn15,
            this.gridColumn16,
            this.gridColumn17,
            this.gridColumn41,
            this.gridColumn42,
            this.gridColumn43,
            this.gridColumn44});
            this.advBandedGridView1.GridControl = this.gridControl_BatchCreate_StuBasicInfo;
            this.advBandedGridView1.Name = "advBandedGridView1";
            this.advBandedGridView1.OptionsCustomization.AllowFilter = false;
            this.advBandedGridView1.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.advBandedGridView1.OptionsView.ShowGroupPanel = false;
            // 
            // gridBand1
            // 
            this.gridBand1.Caption = "幼儿基本信息";
            this.gridBand1.Columns.Add(this.gridColumn10);
            this.gridBand1.Columns.Add(this.gridColumn11);
            this.gridBand1.Columns.Add(this.gridColumn41);
            this.gridBand1.Columns.Add(this.gridColumn16);
            this.gridBand1.Columns.Add(this.gridColumn44);
            this.gridBand1.Columns.Add(this.gridColumn15);
            this.gridBand1.Columns.Add(this.gridColumn9);
            this.gridBand1.Columns.Add(this.gridColumn12);
            this.gridBand1.Columns.Add(this.gridColumn42);
            this.gridBand1.Columns.Add(this.gridColumn14);
            this.gridBand1.Columns.Add(this.gridColumn43);
            this.gridBand1.Columns.Add(this.gridColumn13);
            this.gridBand1.Name = "gridBand1";
            this.gridBand1.Width = 441;
            // 
            // gridColumn10
            // 
            this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn10.Caption = "姓名";
            this.gridColumn10.FieldName = "info_stuName";
            this.gridColumn10.Name = "gridColumn10";
            this.gridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn10.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn10.OptionsColumn.FixedWidth = true;
            this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn10.Visible = true;
            this.gridColumn10.Width = 65;
            // 
            // gridColumn11
            // 
            this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn11.Caption = "年级号";
            this.gridColumn11.FieldName = "info_stuGrade";
            this.gridColumn11.Name = "gridColumn11";
            this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn11.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn11.OptionsColumn.FixedWidth = true;
            this.gridColumn11.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn11.Visible = true;
            this.gridColumn11.Width = 51;
            // 
            // gridColumn41
            // 
            this.gridColumn41.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn41.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn41.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn41.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn41.Caption = "家庭电话";
            this.gridColumn41.FieldName = "info_stuFatherLinkPhone";
            this.gridColumn41.Name = "gridColumn41";
            this.gridColumn41.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn41.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn41.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn41.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn41.OptionsColumn.FixedWidth = true;
            this.gridColumn41.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn41.Visible = true;
            this.gridColumn41.Width = 72;
            // 
            // gridColumn16
            // 
            this.gridColumn16.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn16.Caption = "入园时间";
            this.gridColumn16.FieldName = "info_stuEntryDate";
            this.gridColumn16.Name = "gridColumn16";
            this.gridColumn16.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn16.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn16.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn16.OptionsColumn.FixedWidth = true;
            this.gridColumn16.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn16.Visible = true;
            this.gridColumn16.Width = 72;
            // 
            // gridColumn44
            // 
            this.gridColumn44.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn44.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn44.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn44.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn44.Caption = "电子邮件";
            this.gridColumn44.FieldName = "info_stuEMailAddr";
            this.gridColumn44.MinWidth = 10;
            this.gridColumn44.Name = "gridColumn44";
            this.gridColumn44.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn44.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn44.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn44.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn44.OptionsColumn.FixedWidth = true;
            this.gridColumn44.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn44.Visible = true;
            this.gridColumn44.Width = 89;
            // 
            // gridColumn15
            // 
            this.gridColumn15.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn15.Caption = "托管";
            this.gridColumn15.FieldName = "info_stuEntryStatus";
            this.gridColumn15.Name = "gridColumn15";
            this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn15.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn15.OptionsColumn.FixedWidth = true;
            this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn15.Visible = true;
            this.gridColumn15.Width = 92;
            // 
            // gridColumn9
            // 
            this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn9.Caption = "学号";
            this.gridColumn9.FieldName = "info_stuNumber";
            this.gridColumn9.MinWidth = 10;
            this.gridColumn9.Name = "gridColumn9";
            this.gridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn9.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn9.OptionsColumn.FixedWidth = true;
            this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn9.RowIndex = 1;
            this.gridColumn9.Visible = true;
            this.gridColumn9.Width = 65;
            // 
            // gridColumn12
            // 
            this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn12.Caption = "班级号";
            this.gridColumn12.FieldName = "info_stuClass";
            this.gridColumn12.Name = "gridColumn12";
            this.gridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn12.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn12.OptionsColumn.FixedWidth = true;
            this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn12.RowIndex = 1;
            this.gridColumn12.Visible = true;
            this.gridColumn12.Width = 51;
            // 
            // gridColumn42
            // 
            this.gridColumn42.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn42.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn42.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn42.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn42.Caption = "家庭住址";
            this.gridColumn42.FieldName = "info_stuFamilyAddr";
            this.gridColumn42.MinWidth = 10;
            this.gridColumn42.Name = "gridColumn42";
            this.gridColumn42.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn42.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn42.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn42.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn42.OptionsColumn.FixedWidth = true;
            this.gridColumn42.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn42.RowIndex = 1;
            this.gridColumn42.Visible = true;
            this.gridColumn42.Width = 72;
            // 
            // gridColumn14
            // 
            this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn14.Caption = "生日";
            this.gridColumn14.FieldName = "info_stuBirthDay";
            this.gridColumn14.Name = "gridColumn14";
            this.gridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn14.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn14.OptionsColumn.FixedWidth = true;
            this.gridColumn14.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn14.RowIndex = 1;
            this.gridColumn14.Visible = true;
            this.gridColumn14.Width = 72;
            // 
            // gridColumn43
            // 
            this.gridColumn43.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn43.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn43.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn43.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn43.Caption = "邮编";
            this.gridColumn43.FieldName = "info_stuZipCode";
            this.gridColumn43.Name = "gridColumn43";
            this.gridColumn43.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn43.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn43.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn43.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn43.OptionsColumn.FixedWidth = true;
            this.gridColumn43.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn43.RowIndex = 1;
            this.gridColumn43.Visible = true;
            this.gridColumn43.Width = 89;
            // 
            // gridColumn13
            // 
            this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn13.Caption = "性别";
            this.gridColumn13.FieldName = "info_stuGender";
            this.gridColumn13.Name = "gridColumn13";
            this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn13.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn13.OptionsColumn.FixedWidth = true;
            this.gridColumn13.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn13.RowIndex = 1;
            this.gridColumn13.Visible = true;
            this.gridColumn13.Width = 92;
            // 
            // gridColumn17
            // 
            this.gridColumn17.Caption = "gridColumn17";
            this.gridColumn17.FieldName = "info_stuID";
            this.gridColumn17.Name = "gridColumn17";
            this.gridColumn17.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn17.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn17.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn17.OptionsColumn.FixedWidth = true;
            this.gridColumn17.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn17.Visible = true;
            this.gridColumn17.Width = 147;
            // 
            // gridControl_BatchCreate_Class
            // 
            this.gridControl_BatchCreate_Class.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_Class.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_Class.MainView = this.gridView2;
            this.gridControl_BatchCreate_Class.Name = "gridControl_BatchCreate_Class";
            this.gridControl_BatchCreate_Class.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_Class.TabIndex = 1;
            this.gridControl_BatchCreate_Class.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView2});
            this.gridControl_BatchCreate_Class.Visible = false;
            // 
            // gridView2
            // 
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn4,
            this.gridColumn5,
            this.gridColumn6,
            this.gridColumn7,
            this.gridColumn8,
            this.gridColumn39,
            this.gridColumn40});
            this.gridView2.GridControl = this.gridControl_BatchCreate_Class;
            this.gridView2.Name = "gridView2";
            this.gridView2.OptionsCustomization.AllowFilter = false;
            this.gridView2.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView2.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn4
            // 
            this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn4.Caption = "班级号(岗位号)";
            this.gridColumn4.FieldName = "info_classNumber";
            this.gridColumn4.Name = "gridColumn4";
            this.gridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn4.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn4.Visible = true;
            this.gridColumn4.VisibleIndex = 0;
            this.gridColumn4.Width = 93;
            // 
            // gridColumn5
            // 
            this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn5.Caption = "班级名(岗位名)";
            this.gridColumn5.FieldName = "info_className";
            this.gridColumn5.Name = "gridColumn5";
            this.gridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn5.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn5.Visible = true;
            this.gridColumn5.VisibleIndex = 1;
            this.gridColumn5.Width = 96;
            // 
            // gridColumn6
            // 
            this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn6.Caption = "年级号(部门号)";
            this.gridColumn6.FieldName = "info_gradeNumber";
            this.gridColumn6.Name = "gridColumn6";
            this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn6.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn6.Visible = true;
            this.gridColumn6.VisibleIndex = 2;
            this.gridColumn6.Width = 100;
            // 
            // gridColumn7
            // 
            this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn7.Caption = "对应地址";
            this.gridColumn7.FieldName = "info_machineAddr";
            this.gridColumn7.Name = "gridColumn7";
            this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn7.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn7.Visible = true;
            this.gridColumn7.VisibleIndex = 3;
            this.gridColumn7.Width = 66;
            // 
            // gridColumn8
            // 
            this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn8.Caption = "备注";
            this.gridColumn8.FieldName = "info_classRemark";
            this.gridColumn8.Name = "gridColumn8";
            this.gridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn8.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn8.Visible = true;
            this.gridColumn8.VisibleIndex = 4;
            this.gridColumn8.Width = 83;
            // 
            // gridColumn39
            // 
            this.gridColumn39.Caption = "gridColumn39";
            this.gridColumn39.FieldName = "ClassNumber";
            this.gridColumn39.Name = "gridColumn39";
            // 
            // gridColumn40
            // 
            this.gridColumn40.Caption = "gridColumn40";
            this.gridColumn40.FieldName = "GradeNumber";
            this.gridColumn40.Name = "gridColumn40";
            // 
            // gridControl_BatchCreate_Grade
            // 
            this.gridControl_BatchCreate_Grade.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_BatchCreate_Grade.Location = new System.Drawing.Point(2, 22);
            this.gridControl_BatchCreate_Grade.MainView = this.gridView1;
            this.gridControl_BatchCreate_Grade.Name = "gridControl_BatchCreate_Grade";
            this.gridControl_BatchCreate_Grade.Size = new System.Drawing.Size(460, 376);
            this.gridControl_BatchCreate_Grade.TabIndex = 0;
            this.gridControl_BatchCreate_Grade.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView1});
            this.gridControl_BatchCreate_Grade.Visible = false;
            // 
            // gridView1
            // 
            this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn1,
            this.gridColumn2,
            this.gridColumn3,
            this.gridColumn38});
            this.gridView1.GridControl = this.gridControl_BatchCreate_Grade;
            this.gridView1.Name = "gridView1";
            this.gridView1.OptionsCustomization.AllowFilter = false;
            this.gridView1.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView1.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn1
            // 
            this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn1.Caption = "年级号(部门号)";
            this.gridColumn1.FieldName = "info_gradeNumber";
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn1.OptionsColumn.AllowMove = false;
            this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn1.Visible = true;
            this.gridColumn1.VisibleIndex = 0;
            this.gridColumn1.Width = 146;
            // 
            // gridColumn2
            // 
            this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn2.Caption = "年级名(部门名)";
            this.gridColumn2.FieldName = "info_gradeName";
            this.gridColumn2.Name = "gridColumn2";
            this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn2.OptionsColumn.AllowMove = false;
            this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn2.Visible = true;
            this.gridColumn2.VisibleIndex = 1;
            this.gridColumn2.Width = 168;
            // 
            // gridColumn3
            // 
            this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn3.Caption = "年级备注(部门备注)";
            this.gridColumn3.FieldName = "info_gradeRemark";
            this.gridColumn3.Name = "gridColumn3";
            this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn3.OptionsColumn.AllowMove = false;
            this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn3.Visible = true;
            this.gridColumn3.VisibleIndex = 2;
            this.gridColumn3.Width = 340;
            // 
            // gridColumn38
            // 
            this.gridColumn38.Caption = "gridColumn38";
            this.gridColumn38.FieldName = "GradeNumber";
            this.gridColumn38.Name = "gridColumn38";
            // 
            // xtraTabPage_UpdateGrade
            // 
            this.xtraTabPage_UpdateGrade.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_UpdateGrade.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_UpdateGrade.Controls.Add(this.splitContainerControl2);
            this.xtraTabPage_UpdateGrade.Controls.Add(this.splitterControl1);
            this.xtraTabPage_UpdateGrade.Name = "xtraTabPage_UpdateGrade";
            this.xtraTabPage_UpdateGrade.PageVisible = false;
            this.xtraTabPage_UpdateGrade.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_UpdateGrade.Text = "年班升级";
            // 
            // splitContainerControl2
            // 
            this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl2.Location = new System.Drawing.Point(5, 0);
            this.splitContainerControl2.Name = "splitContainerControl2";
            this.splitContainerControl2.Panel1.Controls.Add(this.groupControl9);
            this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
            this.splitContainerControl2.Panel2.Controls.Add(this.groupControl10);
            this.splitContainerControl2.Panel2.Controls.Add(this.panelControl1);
            this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
            this.splitContainerControl2.Size = new System.Drawing.Size(677, 400);
            this.splitContainerControl2.SplitterPosition = 220;
            this.splitContainerControl2.TabIndex = 1;
            this.splitContainerControl2.Text = "splitContainerControl2";
            // 
            // groupControl9
            // 
            this.groupControl9.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl9.AppearanceCaption.Options.UseFont = true;
            this.groupControl9.Controls.Add(this.comboBoxEdit_ClassNumber);
            this.groupControl9.Controls.Add(this.notePanel_ClassNumber);
            this.groupControl9.Controls.Add(this.comboBoxEdit_GradeNumber);
            this.groupControl9.Controls.Add(this.notePanel_GradeNumber);
            this.groupControl9.Controls.Add(this.notePanel12);
            this.groupControl9.Controls.Add(this.textEdit_DestClass);
            this.groupControl9.Controls.Add(this.notePanel_DestClass);
            this.groupControl9.Controls.Add(this.comboBoxEdit_SrcClass);
            this.groupControl9.Controls.Add(this.notePanel_SrcClass);
            this.groupControl9.Controls.Add(this.textEdit_DestGrade);
            this.groupControl9.Controls.Add(this.notePanel_DestGrade);
            this.groupControl9.Controls.Add(this.comboBoxEdit_SrcGrade);
            this.groupControl9.Controls.Add(this.notePanel_SrcGrade);
            this.groupControl9.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupControl9.Location = new System.Drawing.Point(0, 0);
            this.groupControl9.Name = "groupControl9";
            this.groupControl9.Size = new System.Drawing.Size(220, 256);
            this.groupControl9.TabIndex = 0;
            this.groupControl9.Text = "年班变更";
            // 
            // comboBoxEdit_ClassNumber
            // 
            this.comboBoxEdit_ClassNumber.EditValue = "";
            this.comboBoxEdit_ClassNumber.Location = new System.Drawing.Point(112, 152);
            this.comboBoxEdit_ClassNumber.Name = "comboBoxEdit_ClassNumber";
            this.comboBoxEdit_ClassNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_ClassNumber.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_ClassNumber.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_ClassNumber.TabIndex = 39;
            this.comboBoxEdit_ClassNumber.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_ClassNumber_SelectedIndexChanged);
            // 
            // notePanel_ClassNumber
            // 
            this.notePanel_ClassNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_ClassNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_ClassNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_ClassNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_ClassNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_ClassNumber.Location = new System.Drawing.Point(16, 152);
            this.notePanel_ClassNumber.MaxRows = 5;
            this.notePanel_ClassNumber.Name = "notePanel_ClassNumber";
            this.notePanel_ClassNumber.ParentAutoHeight = true;
            this.notePanel_ClassNumber.Size = new System.Drawing.Size(80, 22);
            this.notePanel_ClassNumber.TabIndex = 38;
            this.notePanel_ClassNumber.TabStop = false;
            this.notePanel_ClassNumber.Text = " 班级号:";
            // 
            // comboBoxEdit_GradeNumber
            // 
            this.comboBoxEdit_GradeNumber.EditValue = "";
            this.comboBoxEdit_GradeNumber.Location = new System.Drawing.Point(112, 56);
            this.comboBoxEdit_GradeNumber.Name = "comboBoxEdit_GradeNumber";
            this.comboBoxEdit_GradeNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_GradeNumber.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_GradeNumber.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_GradeNumber.TabIndex = 37;
            this.comboBoxEdit_GradeNumber.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_GradeNumber_SelectedIndexChanged);
            // 
            // notePanel_GradeNumber
            // 
            this.notePanel_GradeNumber.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_GradeNumber.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_GradeNumber.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_GradeNumber.ForeColor = System.Drawing.Color.Black;
            this.notePanel_GradeNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_GradeNumber.Location = new System.Drawing.Point(16, 56);
            this.notePanel_GradeNumber.MaxRows = 5;
            this.notePanel_GradeNumber.Name = "notePanel_GradeNumber";
            this.notePanel_GradeNumber.ParentAutoHeight = true;
            this.notePanel_GradeNumber.Size = new System.Drawing.Size(80, 22);
            this.notePanel_GradeNumber.TabIndex = 36;
            this.notePanel_GradeNumber.TabStop = false;
            this.notePanel_GradeNumber.Text = " 年级号:";
            // 
            // notePanel12
            // 
            this.notePanel12.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel12.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel12.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel12.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel12.Location = new System.Drawing.Point(2, 22);
            this.notePanel12.MaxRows = 5;
            this.notePanel12.Name = "notePanel12";
            this.notePanel12.ParentAutoHeight = true;
            this.notePanel12.Size = new System.Drawing.Size(216, 23);
            this.notePanel12.TabIndex = 35;
            this.notePanel12.TabStop = false;
            this.notePanel12.Text = "整体调整";
            // 
            // textEdit_DestClass
            // 
            this.textEdit_DestClass.EditValue = "";
            this.textEdit_DestClass.Location = new System.Drawing.Point(112, 216);
            this.textEdit_DestClass.Name = "textEdit_DestClass";
            this.textEdit_DestClass.Size = new System.Drawing.Size(88, 20);
            this.textEdit_DestClass.TabIndex = 34;
            this.textEdit_DestClass.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textEdit_DestClass_KeyDown);
            // 
            // notePanel_DestClass
            // 
            this.notePanel_DestClass.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_DestClass.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_DestClass.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_DestClass.ForeColor = System.Drawing.Color.Black;
            this.notePanel_DestClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_DestClass.Location = new System.Drawing.Point(16, 216);
            this.notePanel_DestClass.MaxRows = 5;
            this.notePanel_DestClass.Name = "notePanel_DestClass";
            this.notePanel_DestClass.ParentAutoHeight = true;
            this.notePanel_DestClass.Size = new System.Drawing.Size(80, 22);
            this.notePanel_DestClass.TabIndex = 33;
            this.notePanel_DestClass.TabStop = false;
            this.notePanel_DestClass.Text = "现班级名:";
            // 
            // comboBoxEdit_SrcClass
            // 
            this.comboBoxEdit_SrcClass.EditValue = "";
            this.comboBoxEdit_SrcClass.Location = new System.Drawing.Point(112, 184);
            this.comboBoxEdit_SrcClass.Name = "comboBoxEdit_SrcClass";
            this.comboBoxEdit_SrcClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_SrcClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_SrcClass.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_SrcClass.TabIndex = 32;
            // 
            // notePanel_SrcClass
            // 
            this.notePanel_SrcClass.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_SrcClass.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_SrcClass.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_SrcClass.ForeColor = System.Drawing.Color.Black;
            this.notePanel_SrcClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SrcClass.Location = new System.Drawing.Point(16, 184);
            this.notePanel_SrcClass.MaxRows = 5;
            this.notePanel_SrcClass.Name = "notePanel_SrcClass";
            this.notePanel_SrcClass.ParentAutoHeight = true;
            this.notePanel_SrcClass.Size = new System.Drawing.Size(80, 22);
            this.notePanel_SrcClass.TabIndex = 31;
            this.notePanel_SrcClass.TabStop = false;
            this.notePanel_SrcClass.Text = "原班级名:";
            // 
            // textEdit_DestGrade
            // 
            this.textEdit_DestGrade.EditValue = "";
            this.textEdit_DestGrade.Location = new System.Drawing.Point(112, 120);
            this.textEdit_DestGrade.Name = "textEdit_DestGrade";
            this.textEdit_DestGrade.Size = new System.Drawing.Size(88, 20);
            this.textEdit_DestGrade.TabIndex = 30;
            this.textEdit_DestGrade.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textEdit_DestGrade_KeyDown);
            // 
            // notePanel_DestGrade
            // 
            this.notePanel_DestGrade.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_DestGrade.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_DestGrade.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_DestGrade.ForeColor = System.Drawing.Color.Black;
            this.notePanel_DestGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_DestGrade.Location = new System.Drawing.Point(16, 120);
            this.notePanel_DestGrade.MaxRows = 5;
            this.notePanel_DestGrade.Name = "notePanel_DestGrade";
            this.notePanel_DestGrade.ParentAutoHeight = true;
            this.notePanel_DestGrade.Size = new System.Drawing.Size(80, 22);
            this.notePanel_DestGrade.TabIndex = 29;
            this.notePanel_DestGrade.TabStop = false;
            this.notePanel_DestGrade.Text = "现年级名:";
            // 
            // comboBoxEdit_SrcGrade
            // 
            this.comboBoxEdit_SrcGrade.EditValue = "";
            this.comboBoxEdit_SrcGrade.Location = new System.Drawing.Point(112, 88);
            this.comboBoxEdit_SrcGrade.Name = "comboBoxEdit_SrcGrade";
            this.comboBoxEdit_SrcGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.comboBoxEdit_SrcGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.comboBoxEdit_SrcGrade.Size = new System.Drawing.Size(88, 20);
            this.comboBoxEdit_SrcGrade.TabIndex = 28;
            // 
            // notePanel_SrcGrade
            // 
            this.notePanel_SrcGrade.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.notePanel_SrcGrade.BackColor2 = System.Drawing.Color.DarkGray;
            this.notePanel_SrcGrade.Font = new System.Drawing.Font("Tahoma", 8F);
            this.notePanel_SrcGrade.ForeColor = System.Drawing.Color.Black;
            this.notePanel_SrcGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel_SrcGrade.Location = new System.Drawing.Point(16, 88);
            this.notePanel_SrcGrade.MaxRows = 5;
            this.notePanel_SrcGrade.Name = "notePanel_SrcGrade";
            this.notePanel_SrcGrade.ParentAutoHeight = true;
            this.notePanel_SrcGrade.Size = new System.Drawing.Size(80, 22);
            this.notePanel_SrcGrade.TabIndex = 22;
            this.notePanel_SrcGrade.TabStop = false;
            this.notePanel_SrcGrade.Text = "原年级名:";
            // 
            // groupControl10
            // 
            this.groupControl10.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl10.AppearanceCaption.Options.UseFont = true;
            this.groupControl10.Controls.Add(this.gridControl_StudentAdjust);
            this.groupControl10.Controls.Add(this.notePanel13);
            this.groupControl10.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupControl10.Location = new System.Drawing.Point(0, 40);
            this.groupControl10.Name = "groupControl10";
            this.groupControl10.Size = new System.Drawing.Size(452, 360);
            this.groupControl10.TabIndex = 1;
            this.groupControl10.Text = "不匹配学生信息列表";
            // 
            // gridControl_StudentAdjust
            // 
            this.gridControl_StudentAdjust.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControl_StudentAdjust.Location = new System.Drawing.Point(2, 45);
            this.gridControl_StudentAdjust.MainView = this.gridView3;
            this.gridControl_StudentAdjust.Name = "gridControl_StudentAdjust";
            this.gridControl_StudentAdjust.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemCheckEdit1});
            this.gridControl_StudentAdjust.Size = new System.Drawing.Size(448, 313);
            this.gridControl_StudentAdjust.TabIndex = 37;
            this.gridControl_StudentAdjust.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView3});
            this.gridControl_StudentAdjust.DoubleClick += new System.EventHandler(this.gridControl_StudentAdjust_DoubleClick);
            // 
            // gridView3
            // 
            this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn49,
            this.gridColumn51,
            this.gridColumn54,
            this.gridColumn55,
            this.gridColumn56});
            this.gridView3.GridControl = this.gridControl_StudentAdjust;
            this.gridView3.Name = "gridView3";
            this.gridView3.OptionsCustomization.AllowFilter = false;
            this.gridView3.OptionsView.ShowAutoFilterRow = true;
            this.gridView3.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView3.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn49
            // 
            this.gridColumn49.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn49.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn49.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn49.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn49.Caption = "是否新生";
            this.gridColumn49.ColumnEdit = this.repositoryItemCheckEdit1;
            this.gridColumn49.FieldName = "info_checkType";
            this.gridColumn49.Name = "gridColumn49";
            this.gridColumn49.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn49.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn49.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn49.OptionsColumn.AllowMove = false;
            this.gridColumn49.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn49.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn49.Visible = true;
            this.gridColumn49.VisibleIndex = 0;
            this.gridColumn49.Width = 71;
            // 
            // repositoryItemCheckEdit1
            // 
            this.repositoryItemCheckEdit1.AutoHeight = false;
            this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
            this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
            // 
            // gridColumn51
            // 
            this.gridColumn51.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn51.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn51.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn51.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn51.Caption = "姓名";
            this.gridColumn51.FieldName = "info_stuName";
            this.gridColumn51.Name = "gridColumn51";
            this.gridColumn51.OptionsColumn.AllowEdit = false;
            this.gridColumn51.OptionsColumn.AllowFocus = false;
            this.gridColumn51.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn51.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn51.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn51.OptionsColumn.AllowMove = false;
            this.gridColumn51.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn51.OptionsColumn.ReadOnly = true;
            this.gridColumn51.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn51.Visible = true;
            this.gridColumn51.VisibleIndex = 1;
            this.gridColumn51.Width = 48;
            // 
            // gridColumn54
            // 
            this.gridColumn54.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn54.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn54.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn54.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn54.Caption = "年级号";
            this.gridColumn54.FieldName = "info_stuGrade";
            this.gridColumn54.Name = "gridColumn54";
            this.gridColumn54.OptionsColumn.AllowEdit = false;
            this.gridColumn54.OptionsColumn.AllowFocus = false;
            this.gridColumn54.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn54.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn54.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn54.OptionsColumn.AllowMove = false;
            this.gridColumn54.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn54.OptionsColumn.ReadOnly = true;
            this.gridColumn54.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn54.Visible = true;
            this.gridColumn54.VisibleIndex = 2;
            this.gridColumn54.Width = 45;
            // 
            // gridColumn55
            // 
            this.gridColumn55.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn55.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn55.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn55.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn55.Caption = "班级号";
            this.gridColumn55.FieldName = "info_stuClass";
            this.gridColumn55.Name = "gridColumn55";
            this.gridColumn55.OptionsColumn.AllowEdit = false;
            this.gridColumn55.OptionsColumn.AllowFocus = false;
            this.gridColumn55.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn55.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn55.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn55.OptionsColumn.AllowMove = false;
            this.gridColumn55.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn55.OptionsColumn.ReadOnly = true;
            this.gridColumn55.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn55.Visible = true;
            this.gridColumn55.VisibleIndex = 3;
            this.gridColumn55.Width = 48;
            // 
            // gridColumn56
            // 
            this.gridColumn56.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn56.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn56.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn56.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn56.Caption = "入园类型";
            this.gridColumn56.FieldName = "info_type";
            this.gridColumn56.Name = "gridColumn56";
            this.gridColumn56.OptionsColumn.AllowEdit = false;
            this.gridColumn56.OptionsColumn.AllowFocus = false;
            this.gridColumn56.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn56.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn56.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn56.OptionsColumn.AllowMove = false;
            this.gridColumn56.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn56.OptionsColumn.ReadOnly = true;
            this.gridColumn56.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn56.Visible = true;
            this.gridColumn56.VisibleIndex = 4;
            this.gridColumn56.Width = 61;
            // 
            // notePanel13
            // 
            this.notePanel13.BackColor = System.Drawing.Color.LightGoldenrodYellow;
            this.notePanel13.Dock = System.Windows.Forms.DockStyle.Top;
            this.notePanel13.ForeColor = System.Drawing.Color.OrangeRed;
            this.notePanel13.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
            this.notePanel13.Location = new System.Drawing.Point(2, 22);
            this.notePanel13.MaxRows = 5;
            this.notePanel13.Name = "notePanel13";
            this.notePanel13.ParentAutoHeight = true;
            this.notePanel13.Size = new System.Drawing.Size(448, 23);
            this.notePanel13.TabIndex = 36;
            this.notePanel13.TabStop = false;
            this.notePanel13.Text = "学生个别调整";
            // 
            // panelControl1
            // 
            this.panelControl1.Controls.Add(this.simpleButton_Submit);
            this.panelControl1.Controls.Add(this.simpleButton_LoadTable);
            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(452, 40);
            this.panelControl1.TabIndex = 0;
            // 
            // simpleButton_Submit
            // 
            this.simpleButton_Submit.Location = new System.Drawing.Point(120, 8);
            this.simpleButton_Submit.Name = "simpleButton_Submit";
            this.simpleButton_Submit.Size = new System.Drawing.Size(96, 23);
            this.simpleButton_Submit.TabIndex = 3;
            this.simpleButton_Submit.Text = "提交调整操作";
            this.simpleButton_Submit.Click += new System.EventHandler(this.simpleButton_Submit_Click);
            // 
            // simpleButton_LoadTable
            // 
            this.simpleButton_LoadTable.Location = new System.Drawing.Point(8, 8);
            this.simpleButton_LoadTable.Name = "simpleButton_LoadTable";
            this.simpleButton_LoadTable.Size = new System.Drawing.Size(104, 23);
            this.simpleButton_LoadTable.TabIndex = 2;
            this.simpleButton_LoadTable.Text = "载入学生调整表";
            this.simpleButton_LoadTable.Click += new System.EventHandler(this.simpleButton_LoadTable_Click);
            // 
            // splitterControl1
            // 
            this.splitterControl1.Location = new System.Drawing.Point(0, 0);
            this.splitterControl1.Name = "splitterControl1";
            this.splitterControl1.Size = new System.Drawing.Size(5, 400);
            this.splitterControl1.TabIndex = 0;
            this.splitterControl1.TabStop = false;
            // 
            // xtraTabPage_TerminalServ
            // 
            this.xtraTabPage_TerminalServ.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage_TerminalServ.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage_TerminalServ.Controls.Add(this.gridControl_SessionUser);
            this.xtraTabPage_TerminalServ.Name = "xtraTabPage_TerminalServ";
            this.xtraTabPage_TerminalServ.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage_TerminalServ.Text = "终端服务管理";
            // 
            // gridControl_SessionUser
            // 
            this.gridControl_SessionUser.Location = new System.Drawing.Point(136, 80);
            this.gridControl_SessionUser.MainView = this.gridView9;
            this.gridControl_SessionUser.Name = "gridControl_SessionUser";
            this.gridControl_SessionUser.Size = new System.Drawing.Size(448, 232);
            this.gridControl_SessionUser.TabIndex = 0;
            this.gridControl_SessionUser.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView9,
            this.gridView8});
            // 
            // gridView9
            // 
            this.gridView9.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn50,
            this.gridColumn52,
            this.gridColumn53,
            this.gridColumn57});
            this.gridView9.GridControl = this.gridControl_SessionUser;
            this.gridView9.Name = "gridView9";
            this.gridView9.OptionsCustomization.AllowFilter = false;
            this.gridView9.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
            this.gridView9.OptionsView.ShowGroupPanel = false;
            // 
            // gridColumn50
            // 
            this.gridColumn50.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn50.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn50.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn50.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn50.Caption = "登陆用户";
            this.gridColumn50.FieldName = "session_LoginUser";
            this.gridColumn50.Name = "gridColumn50";
            this.gridColumn50.OptionsColumn.AllowEdit = false;
            this.gridColumn50.OptionsColumn.AllowFocus = false;
            this.gridColumn50.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn50.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn50.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn50.OptionsColumn.AllowMove = false;
            this.gridColumn50.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn50.OptionsColumn.FixedWidth = true;
            this.gridColumn50.OptionsColumn.ReadOnly = true;
            this.gridColumn50.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn50.Visible = true;
            this.gridColumn50.VisibleIndex = 0;
            // 
            // gridColumn52
            // 
            this.gridColumn52.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn52.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn52.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn52.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn52.Caption = "登陆IP";
            this.gridColumn52.FieldName = "session_LoginIP";
            this.gridColumn52.Name = "gridColumn52";
            this.gridColumn52.OptionsColumn.AllowEdit = false;
            this.gridColumn52.OptionsColumn.AllowFocus = false;
            this.gridColumn52.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn52.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn52.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn52.OptionsColumn.AllowMove = false;
            this.gridColumn52.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn52.OptionsColumn.FixedWidth = true;
            this.gridColumn52.OptionsColumn.ReadOnly = true;
            this.gridColumn52.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn52.Visible = true;
            this.gridColumn52.VisibleIndex = 1;
            // 
            // gridColumn53
            // 
            this.gridColumn53.AppearanceCell.Options.UseTextOptions = true;
            this.gridColumn53.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn53.AppearanceHeader.Options.UseTextOptions = true;
            this.gridColumn53.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridColumn53.Caption = "登陆时间";
            this.gridColumn53.FieldName = "session_LoginDate";
            this.gridColumn53.Name = "gridColumn53";
            this.gridColumn53.OptionsColumn.AllowEdit = false;
            this.gridColumn53.OptionsColumn.AllowFocus = false;
            this.gridColumn53.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn53.OptionsColumn.AllowIncrementalSearch = false;
            this.gridColumn53.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
            this.gridColumn53.OptionsColumn.AllowMove = false;
            this.gridColumn53.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
            this.gridColumn53.OptionsColumn.FixedWidth = true;
            this.gridColumn53.OptionsColumn.ReadOnly = true;
            this.gridColumn53.OptionsColumn.ShowInCustomizationForm = false;
            this.gridColumn53.Visible = true;
            this.gridColumn53.VisibleIndex = 2;
            // 
            // gridColumn57
            // 
            this.gridColumn57.Caption = "MAC地址";
            this.gridColumn57.FieldName = "session_LoginMac";
            this.gridColumn57.Name = "gridColumn57";
            // 
            // gridView8
            // 
            this.gridView8.GridControl = this.gridControl_SessionUser;
            this.gridView8.Name = "gridView8";
            // 
            // xtraTabPage4
            // 
            this.xtraTabPage4.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
            this.xtraTabPage4.Appearance.PageClient.Options.UseBackColor = true;
            this.xtraTabPage4.Controls.Add(this.groupControl11);
            this.xtraTabPage4.Name = "xtraTabPage4";
            this.xtraTabPage4.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage4.Text = "数据备份";
            // 
            // groupControl11
            // 
            this.groupControl11.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl11.Appearance.Options.UseFont = true;
            this.groupControl11.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupControl11.AppearanceCaption.Options.UseFont = true;
            this.groupControl11.Controls.Add(this.groupControl12);
            this.groupControl11.Controls.Add(this.tbxBackUpRoot);
            this.groupControl11.Controls.Add(this.smbRoot);
            this.groupControl11.Location = new System.Drawing.Point(120, 48);
            this.groupControl11.Name = "groupControl11";
            this.groupControl11.Size = new System.Drawing.Size(448, 280);
            this.groupControl11.TabIndex = 0;
            this.groupControl11.Text = "数据备份";
            // 
            // groupControl12
            // 
            this.groupControl12.Controls.Add(this.rbtDefault);
            this.groupControl12.Controls.Add(this.rbtIdle);
            this.groupControl12.Controls.Add(this.rbtStart);
            this.groupControl12.Controls.Add(this.smbBackUp);
            this.groupControl12.Location = new System.Drawing.Point(32, 64);
            this.groupControl12.Name = "groupControl12";
            this.groupControl12.Size = new System.Drawing.Size(384, 192);
            this.groupControl12.TabIndex = 4;
            this.groupControl12.Text = "备份方案";
            // 
            // rbtDefault
            // 
            this.rbtDefault.Checked = true;
            this.rbtDefault.Location = new System.Drawing.Point(80, 96);
            this.rbtDefault.Name = "rbtDefault";
            this.rbtDefault.Size = new System.Drawing.Size(136, 24);
            this.rbtDefault.TabIndex = 6;
            this.rbtDefault.TabStop = true;
            this.rbtDefault.Text = "系统默认的备份";
            // 
            // rbtIdle
            // 
            this.rbtIdle.Location = new System.Drawing.Point(80, 64);
            this.rbtIdle.Name = "rbtIdle";
            this.rbtIdle.Size = new System.Drawing.Size(200, 24);
            this.rbtIdle.TabIndex = 5;
            this.rbtIdle.Text = "每当CPU闲置时进行备份";
            // 
            // rbtStart
            // 
            this.rbtStart.Location = new System.Drawing.Point(80, 32);
            this.rbtStart.Name = "rbtStart";
            this.rbtStart.Size = new System.Drawing.Size(200, 24);
            this.rbtStart.TabIndex = 4;
            this.rbtStart.Text = "每当重新启动系统时进行备份";
            // 
            // smbBackUp
            // 
            this.smbBackUp.Location = new System.Drawing.Point(136, 136);
            this.smbBackUp.Name = "smbBackUp";
            this.smbBackUp.Size = new System.Drawing.Size(85, 23);
            this.smbBackUp.TabIndex = 3;
            this.smbBackUp.Text = "执行备份";
            this.smbBackUp.Click += new System.EventHandler(this.smbBackUp_Click);
            // 
            // tbxBackUpRoot
            // 
            this.tbxBackUpRoot.Location = new System.Drawing.Point(128, 40);
            this.tbxBackUpRoot.Name = "tbxBackUpRoot";
            this.tbxBackUpRoot.ReadOnly = true;
            this.tbxBackUpRoot.Size = new System.Drawing.Size(288, 22);
            this.tbxBackUpRoot.TabIndex = 3;
            // 
            // smbRoot
            // 
            this.smbRoot.Location = new System.Drawing.Point(32, 40);
            this.smbRoot.Name = "smbRoot";
            this.smbRoot.Size = new System.Drawing.Size(85, 23);
            this.smbRoot.TabIndex = 2;
            this.smbRoot.Text = "备份路径";
            this.smbRoot.Click += new System.EventHandler(this.smbRoot_Click);
            // 
            // xtraTabPage5
            // 
            this.xtraTabPage5.Controls.Add(this.groupBox1);
            this.xtraTabPage5.Name = "xtraTabPage5";
            this.xtraTabPage5.Size = new System.Drawing.Size(682, 400);
            this.xtraTabPage5.Text = "数据上传";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.button1);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.tbxUploadUrl);
            this.groupBox1.Location = new System.Drawing.Point(126, 64);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(432, 216);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "数据上传";
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(24, 160);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 2;
            this.button1.Text = "确定";
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(16, 48);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(40, 23);
            this.label1.TabIndex = 1;
            this.label1.Text = "地址:";
            // 
            // tbxUploadUrl
            // 
            this.tbxUploadUrl.Location = new System.Drawing.Point(60, 46);
            this.tbxUploadUrl.Name = "tbxUploadUrl";
            this.tbxUploadUrl.Size = new System.Drawing.Size(320, 22);
            this.tbxUploadUrl.TabIndex = 0;
            // 
            // 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.barButtonItem_Refresh,
            this.barButtonItem_Modify,
            this.barButtonItem_Delete,
            this.barButtonItem1,
            this.barButtonItem_Add,
            this.barButtonItem_Save,
            this.barButtonItem_DeleteSession});
            this.barManager1.MaxItemId = 7;
            // 
            // popupMenu1
            // 
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Refresh),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Add),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Save),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Modify),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_Delete)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            // 
            // barButtonItem_Refresh
            // 
            this.barButtonItem_Refresh.Caption = "刷新记录";
            this.barButtonItem_Refresh.Id = 0;
            this.barButtonItem_Refresh.Name = "barButtonItem_Refresh";
            this.barButtonItem_Refresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Refresh_ItemClick);
            // 
            // barButtonItem_Add
            // 
            this.barButtonItem_Add.Caption = "添加条空记录";
            this.barButtonItem_Add.Id = 4;
            this.barButtonItem_Add.Name = "barButtonItem_Add";
            this.barButtonItem_Add.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Add_ItemClick);
            // 
            // barButtonItem_Save
            // 
            this.barButtonItem_Save.Caption = "保存这条记录";
            this.barButtonItem_Save.Id = 5;
            this.barButtonItem_Save.Name = "barButtonItem_Save";
            this.barButtonItem_Save.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Save_ItemClick);
            // 
            // barButtonItem_Modify
            // 
            this.barButtonItem_Modify.Caption = "修改记录";
            this.barButtonItem_Modify.Id = 1;
            this.barButtonItem_Modify.Name = "barButtonItem_Modify";
            this.barButtonItem_Modify.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Modify_ItemClick);
            // 
            // barButtonItem_Delete
            // 
            this.barButtonItem_Delete.Caption = "删除记录";
            this.barButtonItem_Delete.Id = 2;
            this.barButtonItem_Delete.Name = "barButtonItem_Delete";
            this.barButtonItem_Delete.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_Delete_ItemClick);
            // 
            // popupMenu2
            // 
            this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_DeleteSession)});
            this.popupMenu2.Manager = this.barManager1;
            this.popupMenu2.Name = "popupMenu2";
            // 
            // barButtonItem_DeleteSession
            // 
            this.barButtonItem_DeleteSession.Caption = "断开";
            this.barButtonItem_DeleteSession.Id = 6;
            this.barButtonItem_DeleteSession.Name = "barButtonItem_DeleteSession";
            this.barButtonItem_DeleteSession.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_DeleteSession_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(688, 0);
            // 
            // barDockControlBottom
            // 
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 429);
            this.barDockControlBottom.Size = new System.Drawing.Size(688, 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, 429);
            // 
            // barDockControlRight
            // 
            this.barDockControlRight.CausesValidation = false;
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(688, 0);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 429);
            // 
            // barButtonItem1
            // 
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 3;
            this.barButtonItem1.Name = "barButtonItem1";
            // 
            // OptionsForm
            // 
            this.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
            this.Appearance.Options.UseBackColor = true;
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
            this.ClientSize = new System.Drawing.Size(688, 429);
            this.Controls.Add(this.xtraTabControl_Options);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "OptionsForm";
            this.ShowInTaskbar = false;
            this.Text = "选项";
            this.Load += new System.EventHandler(this.OptionsForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl_Options)).EndInit();
            this.xtraTabControl_Options.ResumeLayout(false);
            this.xtraTabPage_ComPortSet.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl_ComPortSet)).EndInit();
            this.groupControl_ComPortSet.ResumeLayout(false);
            this.xtraTabPage_AutoShutDown.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
            this.groupControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_DutyStartTime.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
            this.xtraTabPage_AutoSendSmsTimeSet.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
            this.groupControl3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_SMSMorningTime.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.timeEdit_SMSNightTime.Properties)).EndInit();
            this.xtraTabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
            this.groupControl4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_NewPwd.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ConfirmPwd.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_OldPwd.Properties)).EndInit();
            this.xtraTabPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_UpdateAddress.Properties)).EndInit();
            this.xtraTabPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
            this.groupControl5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBUser.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBPwd.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DBName.Properties)).EndInit();
            this.xtraTabPage_BatchCreate.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit();
            this.groupControl8.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ClassVol.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_TerminalNumbers.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_ClassNumbers.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
            this.groupControl6.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_CardNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Load.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Type.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_Number.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_BatchCreate_Name.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Class.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_BatchCreate_Grade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit();
            this.groupControl7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Machine)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_TeaCard)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl1_BatchCreate_TeaBasicInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_StuCard)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_StuBasicInfo)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Class)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_BatchCreate_Grade)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
            this.xtraTabPage_UpdateGrade.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
            this.splitContainerControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl9)).EndInit();
            this.groupControl9.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_ClassNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_GradeNumber.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DestClass.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SrcClass.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit_DestGrade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_SrcGrade.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl10)).EndInit();
            this.groupControl10.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_StudentAdjust)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.xtraTabPage_TerminalServ.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControl_SessionUser)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView8)).EndInit();
            this.xtraTabPage4.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl11)).EndInit();
            this.groupControl11.ResumeLayout(false);
            this.groupControl11.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl12)).EndInit();
            this.groupControl12.ResumeLayout(false);
            this.xtraTabPage5.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
            this.ResumeLayout(false);

		}
Example #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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmUserBrw));
     this.pnlBody = new System.Windows.Forms.Panel();
     this.pnl_SpeedSearch = new System.Windows.Forms.Panel();
     this.pnl_SpeedSearch1 = new System.Windows.Forms.Panel();
     this.txt_SpeedSearch = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.grdUser = new DevExpress.XtraGrid.GridControl();
     this.persistentRepository1 = new DevExpress.XtraEditors.Repository.PersistentRepository(this.components);
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gvwUser = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcolUserID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolUserName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolUserType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolUserStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContactID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnl_Find = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.chk_Anywhere = new System.Windows.Forms.CheckBox();
     this.btn_Clear = new System.Windows.Forms.Button();
     this.btn_Find = new System.Windows.Forms.Button();
     this.lbl_Find = new System.Windows.Forms.Label();
     this.chk_AdvanceSearch = new System.Windows.Forms.CheckBox();
     this.pnlBody.SuspendLayout();
     this.pnl_SpeedSearch.SuspendLayout();
     this.pnl_SpeedSearch1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwUser)).BeginInit();
     this.pnl_Find.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // pnlBody
     //
     this.pnlBody.Controls.Add(this.pnl_SpeedSearch);
     this.pnlBody.Controls.Add(this.grdUser);
     this.pnlBody.Controls.Add(this.pnl_Find);
     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(648, 334);
     this.pnlBody.TabIndex = 27;
     this.pnlBody.Resize += new System.EventHandler(this.pnlBody_Resize);
     //
     // pnl_SpeedSearch
     //
     this.pnl_SpeedSearch.BackColor = System.Drawing.Color.Black;
     this.pnl_SpeedSearch.Controls.Add(this.pnl_SpeedSearch1);
     this.pnl_SpeedSearch.Location = new System.Drawing.Point(40, 232);
     this.pnl_SpeedSearch.Name = "pnl_SpeedSearch";
     this.pnl_SpeedSearch.Size = new System.Drawing.Size(192, 72);
     this.pnl_SpeedSearch.TabIndex = 41;
     this.pnl_SpeedSearch.Visible = false;
     //
     // pnl_SpeedSearch1
     //
     this.pnl_SpeedSearch1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(143)))), ((int)(((byte)(230)))));
     this.pnl_SpeedSearch1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnl_SpeedSearch1.Controls.Add(this.txt_SpeedSearch);
     this.pnl_SpeedSearch1.Controls.Add(this.label1);
     this.pnl_SpeedSearch1.Location = new System.Drawing.Point(4, 4);
     this.pnl_SpeedSearch1.Name = "pnl_SpeedSearch1";
     this.pnl_SpeedSearch1.Size = new System.Drawing.Size(184, 64);
     this.pnl_SpeedSearch1.TabIndex = 39;
     //
     // txt_SpeedSearch
     //
     this.txt_SpeedSearch.Location = new System.Drawing.Point(11, 29);
     this.txt_SpeedSearch.Name = "txt_SpeedSearch";
     this.txt_SpeedSearch.Size = new System.Drawing.Size(157, 20);
     this.txt_SpeedSearch.TabIndex = 10;
     this.txt_SpeedSearch.TextChanged += new System.EventHandler(this.txt_SpeedSearch_TextChanged);
     this.txt_SpeedSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyDown);
     this.txt_SpeedSearch.Leave += new System.EventHandler(this.txt_SpeedSearch_Leave);
     this.txt_SpeedSearch.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyUp);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(56, 4);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(71, 14);
     this.label1.TabIndex = 0;
     this.label1.Text = "Fast Search";
     //
     // grdUser
     //
     this.grdUser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdUser.EmbeddedNavigator.Name = "";
     this.grdUser.ExternalRepository = this.persistentRepository1;
     this.grdUser.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grdUser.Location = new System.Drawing.Point(0, 90);
     this.grdUser.MainView = this.gvwUser;
     this.grdUser.Name = "grdUser";
     this.grdUser.Size = new System.Drawing.Size(648, 244);
     this.grdUser.TabIndex = 25;
     this.grdUser.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvwUser});
     this.grdUser.DoubleClick += new System.EventHandler(this.grdUser_DoubleClick);
     this.grdUser.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdUser_KeyPress);
     //
     // persistentRepository1
     //
     this.persistentRepository1.Items.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AllowFocused = false;
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // gvwUser
     //
     this.gvwUser.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.gvwUser.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcolUserID,
     this.gcolUserName,
     this.gcolUserType,
     this.gcolUserStatus,
     this.gcolContactID});
     this.gvwUser.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gvwUser.GridControl = this.grdUser;
     this.gvwUser.Name = "gvwUser";
     this.gvwUser.OptionsPrint.PrintDetails = true;
     this.gvwUser.OptionsPrint.PrintFilterInfo = true;
     this.gvwUser.OptionsPrint.PrintPreview = true;
     this.gvwUser.OptionsPrint.UsePrintStyles = true;
     this.gvwUser.OptionsView.ShowGroupPanel = false;
     this.gvwUser.OptionsView.ShowHorzLines = false;
     this.gvwUser.OptionsView.ShowIndicator = false;
     this.gvwUser.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcolUserName, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gcolUserID
     //
     this.gcolUserID.Caption = "User ID";
     this.gcolUserID.FieldName = "UserID";
     this.gcolUserID.Name = "gcolUserID";
     this.gcolUserID.OptionsColumn.AllowEdit = false;
     this.gcolUserID.OptionsColumn.ReadOnly = true;
     //
     // gcolUserName
     //
     this.gcolUserName.Caption = "User Name";
     this.gcolUserName.FieldName = "UserName";
     this.gcolUserName.Name = "gcolUserName";
     this.gcolUserName.OptionsColumn.AllowEdit = false;
     this.gcolUserName.OptionsColumn.ReadOnly = true;
     this.gcolUserName.Visible = true;
     this.gcolUserName.VisibleIndex = 0;
     this.gcolUserName.Width = 200;
     //
     // gcolUserType
     //
     this.gcolUserType.Caption = "User Type";
     this.gcolUserType.FieldName = "UserType";
     this.gcolUserType.Name = "gcolUserType";
     this.gcolUserType.OptionsColumn.AllowEdit = false;
     this.gcolUserType.OptionsColumn.ReadOnly = true;
     this.gcolUserType.Visible = true;
     this.gcolUserType.VisibleIndex = 1;
     this.gcolUserType.Width = 90;
     //
     // gcolUserStatus
     //
     this.gcolUserStatus.Caption = "User Status";
     this.gcolUserStatus.FieldName = "UserStatus";
     this.gcolUserStatus.Name = "gcolUserStatus";
     this.gcolUserStatus.OptionsColumn.AllowEdit = false;
     this.gcolUserStatus.OptionsColumn.ReadOnly = true;
     this.gcolUserStatus.Visible = true;
     this.gcolUserStatus.VisibleIndex = 2;
     this.gcolUserStatus.Width = 90;
     //
     // gcolContactID
     //
     this.gcolContactID.Caption = "ContactID";
     this.gcolContactID.FieldName = "ContactID";
     this.gcolContactID.Name = "gcolContactID";
     this.gcolContactID.OptionsColumn.AllowEdit = false;
     this.gcolContactID.OptionsColumn.ReadOnly = true;
     //
     // pnl_Find
     //
     this.pnl_Find.BackColor = System.Drawing.SystemColors.Window;
     this.pnl_Find.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pnl_Find.Controls.Add(this.panel1);
     this.pnl_Find.Controls.Add(this.txtSearch);
     this.pnl_Find.Controls.Add(this.chk_Anywhere);
     this.pnl_Find.Controls.Add(this.btn_Clear);
     this.pnl_Find.Controls.Add(this.btn_Find);
     this.pnl_Find.Controls.Add(this.lbl_Find);
     this.pnl_Find.Controls.Add(this.chk_AdvanceSearch);
     this.pnl_Find.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnl_Find.Location = new System.Drawing.Point(0, 0);
     this.pnl_Find.Name = "pnl_Find";
     this.pnl_Find.Size = new System.Drawing.Size(648, 90);
     this.pnl_Find.TabIndex = 26;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.pictureBox1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel1.Location = new System.Drawing.Point(460, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(184, 86);
     this.panel1.TabIndex = 10;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(184, 86);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(64, 17);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(296, 20);
     this.txtSearch.TabIndex = 9;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // chk_Anywhere
     //
     this.chk_Anywhere.BackColor = System.Drawing.SystemColors.Window;
     this.chk_Anywhere.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Anywhere.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_Anywhere.Location = new System.Drawing.Point(210, 44);
     this.chk_Anywhere.Name = "chk_Anywhere";
     this.chk_Anywhere.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.chk_Anywhere.Size = new System.Drawing.Size(154, 24);
     this.chk_Anywhere.TabIndex = 7;
     this.chk_Anywhere.Text = "Search Anywhere in Fields";
     this.chk_Anywhere.UseVisualStyleBackColor = false;
     //
     // btn_Clear
     //
     this.btn_Clear.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Clear.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Clear.Location = new System.Drawing.Point(370, 44);
     this.btn_Clear.Name = "btn_Clear";
     this.btn_Clear.Size = new System.Drawing.Size(75, 23);
     this.btn_Clear.TabIndex = 6;
     this.btn_Clear.Text = "Clear";
     this.btn_Clear.UseVisualStyleBackColor = false;
     this.btn_Clear.Click += new System.EventHandler(this.btn_Clear_Click);
     //
     // btn_Find
     //
     this.btn_Find.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Find.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Find.Location = new System.Drawing.Point(370, 15);
     this.btn_Find.Name = "btn_Find";
     this.btn_Find.Size = new System.Drawing.Size(75, 23);
     this.btn_Find.TabIndex = 4;
     this.btn_Find.Text = "Find";
     this.btn_Find.UseVisualStyleBackColor = false;
     this.btn_Find.Click += new System.EventHandler(this.btn_Find_Click);
     //
     // lbl_Find
     //
     this.lbl_Find.AutoSize = true;
     this.lbl_Find.Location = new System.Drawing.Point(15, 19);
     this.lbl_Find.Name = "lbl_Find";
     this.lbl_Find.Size = new System.Drawing.Size(30, 13);
     this.lbl_Find.TabIndex = 0;
     this.lbl_Find.Text = " Find";
     //
     // chk_AdvanceSearch
     //
     this.chk_AdvanceSearch.BackColor = System.Drawing.SystemColors.Window;
     this.chk_AdvanceSearch.Checked = true;
     this.chk_AdvanceSearch.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chk_AdvanceSearch.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_AdvanceSearch.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_AdvanceSearch.Location = new System.Drawing.Point(64, 44);
     this.chk_AdvanceSearch.Name = "chk_AdvanceSearch";
     this.chk_AdvanceSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.chk_AdvanceSearch.Size = new System.Drawing.Size(112, 24);
     this.chk_AdvanceSearch.TabIndex = 8;
     this.chk_AdvanceSearch.Text = "Search All Fields";
     this.chk_AdvanceSearch.UseVisualStyleBackColor = false;
     //
     // frmUserBrw
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(648, 334);
     this.Controls.Add(this.pnlBody);
     this.Name = "frmUserBrw";
     this.Text = "User...";
     this.Load += new System.EventHandler(this.frmUserBrw_Load);
     this.Resize += new System.EventHandler(this.frmUserBrw_Resize);
     this.pnlBody.ResumeLayout(false);
     this.pnl_SpeedSearch.ResumeLayout(false);
     this.pnl_SpeedSearch1.ResumeLayout(false);
     this.pnl_SpeedSearch1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdUser)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwUser)).EndInit();
     this.pnl_Find.ResumeLayout(false);
     this.pnl_Find.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Example #41
0
        public void loadpnk(string active, string role, DevExpress.XtraGrid.GridControl gridControl1, GridView gridView1, TextEdit txtsct, ComboBoxEdit cbldt, LookUpEdit ledv, DateEdit denct, DateEdit denht,
                            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit mahang, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit soluong, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit soluongqd, Frm_phieunhapkho F, LookUpEdit ledt, TextEdit txtldn, TextEdit txtctg,
                            ToolStripButton tsbtsua, ToolStripButton tsbtxoa, ToolStripButton tsbtcat, ToolStripButton tsbtboghi, ToolStripButton tsbtghiso, ToolStripButton tsbtnap, ToolStripSplitButton tsbtin, string ngaychungtu, string userid, string branchid, TextEdit txtngh, TextEdit txtptvc, LookUpEdit lenv, ToolStripSplitButton tsbttruoc, ToolStripSplitButton tsbtsau, DataTable khach, DataTable hang, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit dongia, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit thanhtien, CheckEdit cthg, CheckEdit chpck, string tsbt, CheckEdit chhtk, CheckEdit chtnm, CheckEdit chhgnb)
        {
            DataTable dt = new DataTable();

            cthg.Checked   = false;
            chpck.Checked  = false;
            chhtk.Checked  = false;
            chhgnb.Checked = false;

            loadstart(gridControl1, gridView1, cbldt, ledv, denct, denht, mahang, soluong, soluongqd, ledt, tsbtsua, tsbtxoa, tsbtcat, tsbtboghi, tsbtghiso, tsbtnap, tsbtin, ngaychungtu, userid, branchid, active, dt, lenv, khach, hang, dongia, thanhtien);
            if (active == "1")
            {
                DataTable da = new DataTable();
                da = gen.GetTable("select  InventoryItemCode,InventoryItemName,Quantity,QuantityConvert,UnitPriceOC,UnitPriceConvert,Description,QuantityExits,QuantityConvertExits from INInwardDetailTT a,InventoryItem b where a.InventoryItemID=b.InventoryItemID and RefID='" + role + "' order by SortOrder");
                for (int i = 0; i < da.Rows.Count; i++)
                {
                    DataRow dr = dt.NewRow();
                    dr[0] = da.Rows[i][0].ToString();
                    dr[1] = da.Rows[i][1].ToString();
                    dr[2] = da.Rows[i][2].ToString();
                    dr[3] = da.Rows[i][3].ToString();
                    try
                    {
                        dr[4] = da.Rows[i][4].ToString();
                        dr[5] = da.Rows[i][5].ToString();
                    }
                    catch
                    {
                        dr[4] = 0;
                        dr[5] = 0;
                    }
                    dr[6] = da.Rows[i][6].ToString();
                    dr[7] = da.Rows[i][7].ToString();
                    dr[8] = da.Rows[i][8].ToString();
                    dt.Rows.Add(dr);
                }
                gridControl1.DataSource = dt;
                tsbtcat.Enabled         = false;

                F.Text = "Xem phiếu nhập kho";
                da     = gen.GetTable("select AccountingObjectCode,a.Contactname,JournalMemo,DocumentIncluded,RefDate,PostedDate,RefNo,StockCode,Posted,AccountingObjectType,Cancel,ShippingNo,EmployeeIDPU,RefType from INInwardTT a, AccountingObject b,Stock c where a.AccountingObjectID=b.AccountingObjectID and a.StockID=c.StockID and RefID='" + role + "'");
                try
                {
                    cbldt.SelectedIndex = Int32.Parse(da.Rows[0][9].ToString());
                }
                catch { }
                ledv.EditValue = da.Rows[0][7].ToString();
                ledt.EditValue = da.Rows[0][0].ToString();
                try
                {
                    txtldn.Text = da.Rows[0][2].ToString();
                }
                catch { }
                txtctg.Text     = da.Rows[0][3].ToString();
                denct.EditValue = DateTime.Parse(da.Rows[0][4].ToString());
                denht.EditValue = DateTime.Parse(da.Rows[0][5].ToString());
                txtsct.Text     = da.Rows[0][6].ToString();
                txtngh.Text     = da.Rows[0][1].ToString();
                txtptvc.Text    = da.Rows[0][11].ToString();

                if (da.Rows[0][13].ToString() == "1")
                {
                    cthg.Checked = true;
                }
                else if (da.Rows[0][13].ToString() == "2")
                {
                    chpck.Checked = true;
                }
                else if (da.Rows[0][13].ToString() == "4")
                {
                    chhtk.Checked = true;
                }
                else if (da.Rows[0][13].ToString() == "5")
                {
                    chtnm.Checked = true;
                }
                else if (da.Rows[0][13].ToString() == "6")
                {
                    chhgnb.Checked = true;
                }

                if (da.Rows[0][8].ToString() == "True")
                {
                    tsbtghiso.Visible = false;
                    tsbtboghi.Visible = true;
                    tsbtsua.Enabled   = false;
                }
                else
                {
                    tsbtboghi.Visible = false;
                    tsbtghiso.Visible = true;
                }
                if (da.Rows[0][10].ToString() == "True")
                {
                    tsbtboghi.Enabled = false;
                    tsbtghiso.Enabled = false;
                }
                try
                {
                    string px = gen.GetString("select RefID from PUInvoice where ShippingMethodID='" + role + "'");
                    tsbtsua.Enabled   = false;
                    tsbtboghi.Enabled = false;
                }
                catch { }
                try
                {
                    string nv = gen.GetString("select AccountingObjectCode from AccountingObject where AccountingObjectID='" + da.Rows[0][12].ToString() + "'");
                    lenv.EditValue = nv;
                }
                catch
                {
                    lenv.EditValue = "3";
                }
                if (tsbt == "tsbtpxkhg")
                {
                    checktruocsauxkhg(tsbttruoc, tsbtsau, ledv.EditValue.ToString(), txtsct.Text, ngaychungtu);
                }
                else
                {
                    checktruocsau(tsbttruoc, tsbtsau, ledv.EditValue.ToString(), txtsct.Text, ngaychungtu);
                }
            }
            else
            {
                F.Text = "Thêm phiếu nhập kho";
                if (role == null)
                {
                    ledv.ItemIndex = 0;
                }
                else
                {
                    ledv.EditValue = role;
                }
                denht.EditValue = DateTime.Parse(ngaychungtu);
                denct.EditValue = DateTime.Parse(ngaychungtu);
            }
        }
        void Form_ProduccionMuestras_Load(object sender, EventArgs e)
        {
            var blends = _blendManager.ListarBlends()
                         .Select(x => new Blend()
            {
                Id          = x.Id,
                Descripcion = x.Descripcion
            })
                         .OrderBy(x => x.Descripcion)
                         .ToList();

            this.cbBlend.DisplayMember = "Descripcion";
            this.cbBlend.ValueMember   = "Id";
            this.cbBlend.DataSource    = blends;
            this.cbBlend.SelectedIndex = -1;

            if (_muestraId == Guid.Empty)
            {
                this.dateFecha.Enabled     = true;
                this.dateFecha.Value       = DateTime.Now.Date;
                this.timeSpanHora.TimeSpan = DateTime.Now.TimeOfDay;

                _blendSeleccionado = this.cbBlend.SelectedValue == null ? Guid.Empty : (Guid)this.cbBlend.SelectedValue;

                _detalle = new List <LineaDetalle>()
                {
                    new LineaDetalle()
                    {
                        Tamanio = "1' y m/", Kilos = 0, Porcentaje = 0m
                    },
                    new LineaDetalle()
                    {
                        Tamanio = "1/2", Kilos = 0, Porcentaje = 0m
                    },
                    new LineaDetalle()
                    {
                        Tamanio = "1/4", Kilos = 0, Porcentaje = 0m
                    },
                    new LineaDetalle()
                    {
                        Tamanio = "1/8", Kilos = 0, Porcentaje = 0m
                    },
                    new LineaDetalle()
                    {
                        Tamanio = "PAN", Kilos = 0, Porcentaje = 0m
                    },
                    new LineaDetalle()
                    {
                        Tamanio = "P. TOTAL", Kilos = 0, Porcentaje = 0m
                    },
                    new LineaDetalle()
                    {
                        Tamanio = "V/O BJ", Kilos = 0, Porcentaje = 0m
                    },
                    new LineaDetalle()
                    {
                        Tamanio = "FIBRA", Kilos = 0, Porcentaje = 0m
                    },
                };

                btnEliminar.Visible = false;
            }
            else
            {
                var muestra = _blendManager.GetMuestra(_muestraId);

                this.dateFecha.Enabled     = false;
                this.dateFecha.Value       = muestra.Fecha;
                this.timeSpanHora.TimeSpan = muestra.Hora;

                this.cbBlend.SelectedValue = muestra.Blend.Id;

                _blendSeleccionado = muestra.Blend.Id;

                this.spinCaja.Value = Convert.ToDecimal(muestra.Caja);

                _detalle = new List <LineaDetalle>();

                foreach (var item in muestra.Lineas)
                {
                    _detalle.Add(new LineaDetalle()
                    {
                        Tamanio = item.Tamanio, Kilos = item.kilos, Porcentaje = item.Porcentaje
                    });
                }

                this.lblPM.Text = "P.M.: " + muestra.PesoMuestra;

                this.lblTotal.Text = "TOTAL SOBRE 1/2: " + muestra.TotalSobreUnMedio;

                this.memoObservaciones.Text = muestra.Observaciones;

                btnEliminar.Visible = true;
            }

            this.gridControlMuestra.DataSource = new BindingList <LineaDetalle>(_detalle);

            this.gridViewMuestra.OptionsMenu.EnableColumnMenu = false;
            this.gridViewMuestra.OptionsView.ColumnAutoWidth  = false;
            this.gridViewMuestra.Columns["Tamanio"].Caption   = "Tamaño".ToUpper();
            this.gridViewMuestra.Columns["Tamanio"].OptionsColumn.AllowEdit = false;
            this.gridViewMuestra.Columns["Tamanio"].OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            this.gridViewMuestra.Columns["Tamanio"].MinWidth = this.gridViewMuestra.Columns["Tamanio"].GetBestWidth();
            this.gridViewMuestra.Columns["Tamanio"].MaxWidth = this.gridViewMuestra.Columns["Tamanio"].GetBestWidth();
            this.gridViewMuestra.Columns["Kilos"].Caption    = "Kgs".ToUpper();
            this.gridViewMuestra.Columns["Kilos"].OptionsColumn.AllowSort      = DevExpress.Utils.DefaultBoolean.False;
            this.gridViewMuestra.Columns["Porcentaje"].Caption                 = "%".ToUpper();
            this.gridViewMuestra.Columns["Porcentaje"].OptionsColumn.AllowEdit = true;
            this.gridViewMuestra.Columns["Porcentaje"].OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;

            var editorMask = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();

            editorMask.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
            editorMask.Mask.EditMask = "[0-9]+";
            editorMask.Enter        += (s, a) => (s as DevExpress.XtraEditors.BaseEdit).SelectAll();
            editorMask.Click        += (s, a) => (s as DevExpress.XtraEditors.BaseEdit).SelectAll();
            this.gridViewMuestra.Columns["Kilos"].ColumnEdit = editorMask;

            this.memoObservaciones.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
        }
 /// <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.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem14 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem15 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem17 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem16 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip18 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem18 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip19 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem19 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip21 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem21 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip26 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem26 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip20 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem20 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip22 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem22 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip23 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem23 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip24 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem24 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip25 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem25 = new DevExpress.Utils.ToolTipTitleItem();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_promociones));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = 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();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.articid = new System.Windows.Forms.TextBox();
     this.articname = new System.Windows.Forms.TextBox();
     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_editar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_cancelar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_grabar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_eliminar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_imprimir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_log = new DevExpress.XtraBars.BarButtonItem();
     this.btn_clave = 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.pnl_01 = new DevExpress.XtraEditors.PanelControl();
     this.rdb_estado = new DevExpress.XtraEditors.RadioGroup();
     this.pnl_dias = new DevExpress.XtraEditors.PanelControl();
     this.chk_sab = new DevExpress.XtraEditors.CheckEdit();
     this.chk_lun = new DevExpress.XtraEditors.CheckEdit();
     this.chk_mar = new DevExpress.XtraEditors.CheckEdit();
     this.chk_dom = new DevExpress.XtraEditors.CheckEdit();
     this.chk_mie = new DevExpress.XtraEditors.CheckEdit();
     this.chk_jue = new DevExpress.XtraEditors.CheckEdit();
     this.chk_vie = new DevExpress.XtraEditors.CheckEdit();
     this.exclusivo = new System.Windows.Forms.TextBox();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.chk_solodias = new DevExpress.XtraEditors.CheckEdit();
     this.impopack = new System.Windows.Forms.TextBox();
     this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
     this.npack = new System.Windows.Forms.TextBox();
     this.aplicfin = new System.Windows.Forms.TextBox();
     this.aplicini = new System.Windows.Forms.TextBox();
     this.impodoc = new System.Windows.Forms.TextBox();
     this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_grupopromocion = new System.Windows.Forms.ComboBox();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.perdsctocab = new System.Windows.Forms.TextBox();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.chk_aldocum = new DevExpress.XtraEditors.CheckEdit();
     this.prioridad = new System.Windows.Forms.TextBox();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_tarjgrupoid = new System.Windows.Forms.ComboBox();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.cmb_tiendalist = new System.Windows.Forms.ComboBox();
     this.fechafin = new System.Windows.Forms.DateTimePicker();
     this.fechaini = new System.Windows.Forms.DateTimePicker();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.promoname = new System.Windows.Forms.TextBox();
     this.promoid = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.pnlcontroldet = new DevExpress.XtraEditors.PanelControl();
     this.btn_update = new DevExpress.XtraEditors.SimpleButton();
     this.btn_search = new DevExpress.XtraEditors.SimpleButton();
     this.rollo_search = new System.Windows.Forms.TextBox();
     this.btn_exportar = new DevExpress.XtraEditors.SimpleButton();
     this.btn_importar = new DevExpress.XtraEditors.SimpleButton();
     this.chk_aldoc2 = new DevExpress.XtraEditors.CheckEdit();
     this.btn_del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_save = new DevExpress.XtraEditors.SimpleButton();
     this.precunit = new System.Windows.Forms.TextBox();
     this.percdscto = new System.Windows.Forms.TextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.dgb_promodet = new System.Windows.Forms.DataGridView();
     this.@__promoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._articid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._articidold = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._articname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._es_dscto = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.@__percdscto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.@__status = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.@__feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._usuarip = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.Group_chks = new DevExpress.XtraEditors.RadioGroup();
     this.cmb_perianio = new System.Windows.Forms.ComboBox();
     this.cmb_grupopromocion2 = new System.Windows.Forms.ComboBox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.Mdi_dgv_promociones = new DevExpress.XtraGrid.GridControl();
     this.dgv_promociones = new DevExpress.XtraGrid.Views.Grid.GridView();
     this._promoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._prioridad = new DevExpress.XtraGrid.Columns.GridColumn();
     this._status = new DevExpress.XtraGrid.Columns.GridColumn();
     this._exclusivo = new DevExpress.XtraGrid.Columns.GridColumn();
     this._promoname = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tiendalist = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tarjgrupoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tarjetaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._percdscto = new DevExpress.XtraGrid.Columns.GridColumn();
     this._al_docum = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechaini = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechafin = new DevExpress.XtraGrid.Columns.GridColumn();
     this._promotipoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._grupopromoid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._campaniaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._usuar = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fecre = new DevExpress.XtraGrid.Columns.GridColumn();
     this._feact = new DevExpress.XtraGrid.Columns.GridColumn();
     this._usuarap = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechap = new DevExpress.XtraGrid.Columns.GridColumn();
     this._solodias = new DevExpress.XtraGrid.Columns.GridColumn();
     this._dom = new DevExpress.XtraGrid.Columns.GridColumn();
     this._lun = new DevExpress.XtraGrid.Columns.GridColumn();
     this._mar = new DevExpress.XtraGrid.Columns.GridColumn();
     this._mie = new DevExpress.XtraGrid.Columns.GridColumn();
     this._jue = new DevExpress.XtraGrid.Columns.GridColumn();
     this._vie = new DevExpress.XtraGrid.Columns.GridColumn();
     this._sab = new DevExpress.XtraGrid.Columns.GridColumn();
     this._npack = new DevExpress.XtraGrid.Columns.GridColumn();
     this._impopack = new DevExpress.XtraGrid.Columns.GridColumn();
     this._aplicini = new DevExpress.XtraGrid.Columns.GridColumn();
     this._aplicfin = new DevExpress.XtraGrid.Columns.GridColumn();
     this._impodoc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).BeginInit();
     this.pnl_01.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rdb_estado.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_dias)).BeginInit();
     this.pnl_dias.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_sab.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_lun.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mar.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_dom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mie.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_jue.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_vie.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_solodias.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldocum.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).BeginInit();
     this.pnlcontroldet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldoc2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_promodet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Group_chks.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_promociones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_promociones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     this.SuspendLayout();
     //
     // articid
     //
     this.articid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.articid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.articid.Location = new System.Drawing.Point(76, 4);
     this.articid.MaxLength = 10;
     this.articid.Name = "articid";
     this.articid.Size = new System.Drawing.Size(66, 20);
     this.articid.TabIndex = 11;
     this.articid.Text = "00000000";
     this.articid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.articid_KeyDown);
     //
     // articname
     //
     this.articname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.articname.Location = new System.Drawing.Point(143, 4);
     this.articname.Name = "articname";
     this.articname.Size = new System.Drawing.Size(326, 21);
     this.articname.TabIndex = 12;
     //
     // 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_editar,
     this.btn_grabar,
     this.btn_cancelar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnLoad,
     this.btn_log,
     this.btnInicio,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btn_salir,
     this.btn_clave});
     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_editar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_cancelar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_grabar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_eliminar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_imprimir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_log),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_clave),
     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";
     toolTipTitleItem14.Text = "Nuevo";
     superToolTip14.Items.Add(toolTipTitleItem14);
     this.btn_nuevo.SuperTip = superToolTip14;
     this.btn_nuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_nuevo_ItemClick);
     //
     // btn_editar
     //
     this.btn_editar.Caption = "btnEdit";
     this.btn_editar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.Glyph")));
     this.btn_editar.Id = 3;
     this.btn_editar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.LargeGlyph")));
     this.btn_editar.Name = "btn_editar";
     toolTipTitleItem15.Text = "Editar";
     superToolTip15.Items.Add(toolTipTitleItem15);
     this.btn_editar.SuperTip = superToolTip15;
     this.btn_editar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_editar_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";
     toolTipTitleItem17.Text = "Cancelar";
     superToolTip17.Items.Add(toolTipTitleItem17);
     this.btn_cancelar.SuperTip = superToolTip17;
     this.btn_cancelar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_cancelar_ItemClick);
     //
     // btn_grabar
     //
     this.btn_grabar.Caption = "btnSave";
     this.btn_grabar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Glyph")));
     this.btn_grabar.Id = 4;
     this.btn_grabar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.LargeGlyph")));
     this.btn_grabar.Name = "btn_grabar";
     toolTipTitleItem16.Text = "Guardar";
     superToolTip16.Items.Add(toolTipTitleItem16);
     this.btn_grabar.SuperTip = superToolTip16;
     this.btn_grabar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_grabar_ItemClick);
     //
     // btn_eliminar
     //
     this.btn_eliminar.Caption = "btnDelete";
     this.btn_eliminar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Glyph")));
     this.btn_eliminar.Id = 6;
     this.btn_eliminar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.LargeGlyph")));
     this.btn_eliminar.Name = "btn_eliminar";
     toolTipTitleItem18.Text = "Elimar Registro";
     superToolTip18.Items.Add(toolTipTitleItem18);
     this.btn_eliminar.SuperTip = superToolTip18;
     this.btn_eliminar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_eliminar_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";
     toolTipTitleItem19.Text = "Imprimir";
     superToolTip19.Items.Add(toolTipTitleItem19);
     this.btn_imprimir.SuperTip = superToolTip19;
     //
     // btn_log
     //
     this.btn_log.Caption = "btnLog";
     this.btn_log.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_log.Glyph")));
     this.btn_log.Id = 9;
     this.btn_log.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_log.LargeGlyph")));
     this.btn_log.Name = "btn_log";
     toolTipTitleItem21.Text = "Log";
     superToolTip21.Items.Add(toolTipTitleItem21);
     this.btn_log.SuperTip = superToolTip21;
     //
     // btn_clave
     //
     this.btn_clave.Caption = "btnLock";
     this.btn_clave.Glyph = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.Id = 15;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_clave_ItemClick);
     //
     // 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";
     toolTipTitleItem26.Text = "Salir";
     superToolTip26.Items.Add(toolTipTitleItem26);
     this.btn_salir.SuperTip = superToolTip26;
     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(1038, 28);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 595);
     this.barDockControlBottom.Size = new System.Drawing.Size(1038, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 28);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 567);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1038, 28);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 567);
     //
     // 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";
     toolTipTitleItem20.Text = "Actualizar";
     superToolTip20.Items.Add(toolTipTitleItem20);
     this.btnLoad.SuperTip = superToolTip20;
     //
     // 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";
     toolTipTitleItem22.Text = "Primer Registro";
     superToolTip22.Items.Add(toolTipTitleItem22);
     this.btnInicio.SuperTip = superToolTip22;
     //
     // 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";
     toolTipTitleItem23.Text = "Anterior Registro";
     superToolTip23.Items.Add(toolTipTitleItem23);
     this.btnAnterior.SuperTip = superToolTip23;
     //
     // 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";
     toolTipTitleItem24.Text = "Siguiente Registro";
     superToolTip24.Items.Add(toolTipTitleItem24);
     this.btnSiguiente.SuperTip = superToolTip24;
     //
     // 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";
     toolTipTitleItem25.Text = "Ultimo Registro";
     superToolTip25.Items.Add(toolTipTitleItem25);
     this.btnUltimo.SuperTip = superToolTip25;
     //
     // pnl_01
     //
     this.pnl_01.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnl_01.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnl_01.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.pnl_01.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnl_01.Appearance.Options.UseBackColor = true;
     this.pnl_01.Appearance.Options.UseFont = true;
     this.pnl_01.Appearance.Options.UseForeColor = true;
     this.pnl_01.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnl_01.Controls.Add(this.rdb_estado);
     this.pnl_01.Controls.Add(this.pnl_dias);
     this.pnl_01.Controls.Add(this.exclusivo);
     this.pnl_01.Controls.Add(this.labelControl1);
     this.pnl_01.Controls.Add(this.chk_solodias);
     this.pnl_01.Controls.Add(this.impopack);
     this.pnl_01.Controls.Add(this.labelControl19);
     this.pnl_01.Controls.Add(this.npack);
     this.pnl_01.Controls.Add(this.aplicfin);
     this.pnl_01.Controls.Add(this.aplicini);
     this.pnl_01.Controls.Add(this.impodoc);
     this.pnl_01.Controls.Add(this.labelControl18);
     this.pnl_01.Controls.Add(this.labelControl17);
     this.pnl_01.Controls.Add(this.labelControl16);
     this.pnl_01.Controls.Add(this.labelControl7);
     this.pnl_01.Controls.Add(this.cmb_grupopromocion);
     this.pnl_01.Controls.Add(this.labelControl15);
     this.pnl_01.Controls.Add(this.perdsctocab);
     this.pnl_01.Controls.Add(this.labelControl14);
     this.pnl_01.Controls.Add(this.chk_aldocum);
     this.pnl_01.Controls.Add(this.prioridad);
     this.pnl_01.Controls.Add(this.labelControl13);
     this.pnl_01.Controls.Add(this.cmb_tarjgrupoid);
     this.pnl_01.Controls.Add(this.labelControl12);
     this.pnl_01.Controls.Add(this.cmb_tiendalist);
     this.pnl_01.Controls.Add(this.fechafin);
     this.pnl_01.Controls.Add(this.fechaini);
     this.pnl_01.Controls.Add(this.labelControl6);
     this.pnl_01.Controls.Add(this.labelControl5);
     this.pnl_01.Controls.Add(this.labelControl4);
     this.pnl_01.Controls.Add(this.promoname);
     this.pnl_01.Controls.Add(this.promoid);
     this.pnl_01.Controls.Add(this.labelControl3);
     this.pnl_01.Location = new System.Drawing.Point(474, 31);
     this.pnl_01.Name = "pnl_01";
     this.pnl_01.Size = new System.Drawing.Size(873, 272);
     this.pnl_01.TabIndex = 120;
     //
     // rdb_estado
     //
     this.rdb_estado.Cursor = System.Windows.Forms.Cursors.Hand;
     this.rdb_estado.Location = new System.Drawing.Point(402, 29);
     this.rdb_estado.MenuManager = this.barManager1;
     this.rdb_estado.Name = "rdb_estado";
     this.rdb_estado.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.rdb_estado.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.rdb_estado.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.rdb_estado.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.rdb_estado.Properties.Appearance.Options.UseBackColor = true;
     this.rdb_estado.Properties.Appearance.Options.UseFont = true;
     this.rdb_estado.Properties.Appearance.Options.UseForeColor = true;
     this.rdb_estado.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.rdb_estado.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem(0, "Activo"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem(9, "Inactivo")});
     this.rdb_estado.Size = new System.Drawing.Size(81, 38);
     this.rdb_estado.TabIndex = 183;
     //
     // pnl_dias
     //
     this.pnl_dias.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnl_dias.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnl_dias.Appearance.Options.UseBackColor = true;
     this.pnl_dias.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnl_dias.Controls.Add(this.chk_sab);
     this.pnl_dias.Controls.Add(this.chk_lun);
     this.pnl_dias.Controls.Add(this.chk_mar);
     this.pnl_dias.Controls.Add(this.chk_dom);
     this.pnl_dias.Controls.Add(this.chk_mie);
     this.pnl_dias.Controls.Add(this.chk_jue);
     this.pnl_dias.Controls.Add(this.chk_vie);
     this.pnl_dias.Location = new System.Drawing.Point(120, 140);
     this.pnl_dias.Name = "pnl_dias";
     this.pnl_dias.Size = new System.Drawing.Size(139, 60);
     this.pnl_dias.TabIndex = 182;
     //
     // chk_sab
     //
     this.chk_sab.Location = new System.Drawing.Point(51, 40);
     this.chk_sab.MenuManager = this.barManager1;
     this.chk_sab.Name = "chk_sab";
     this.chk_sab.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_sab.Properties.Appearance.Options.UseForeColor = true;
     this.chk_sab.Properties.Caption = "SA";
     this.chk_sab.Size = new System.Drawing.Size(39, 19);
     this.chk_sab.TabIndex = 178;
     //
     // chk_lun
     //
     this.chk_lun.Location = new System.Drawing.Point(6, 0);
     this.chk_lun.MenuManager = this.barManager1;
     this.chk_lun.Name = "chk_lun";
     this.chk_lun.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_lun.Properties.Appearance.Options.UseForeColor = true;
     this.chk_lun.Properties.Caption = "LU";
     this.chk_lun.Size = new System.Drawing.Size(39, 19);
     this.chk_lun.TabIndex = 173;
     //
     // chk_mar
     //
     this.chk_mar.Location = new System.Drawing.Point(6, 20);
     this.chk_mar.MenuManager = this.barManager1;
     this.chk_mar.Name = "chk_mar";
     this.chk_mar.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_mar.Properties.Appearance.Options.UseForeColor = true;
     this.chk_mar.Properties.Caption = "MA";
     this.chk_mar.Size = new System.Drawing.Size(39, 19);
     this.chk_mar.TabIndex = 174;
     //
     // chk_dom
     //
     this.chk_dom.Location = new System.Drawing.Point(96, 0);
     this.chk_dom.MenuManager = this.barManager1;
     this.chk_dom.Name = "chk_dom";
     this.chk_dom.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_dom.Properties.Appearance.Options.UseForeColor = true;
     this.chk_dom.Properties.Caption = "DO";
     this.chk_dom.Size = new System.Drawing.Size(39, 19);
     this.chk_dom.TabIndex = 179;
     //
     // chk_mie
     //
     this.chk_mie.Location = new System.Drawing.Point(6, 40);
     this.chk_mie.MenuManager = this.barManager1;
     this.chk_mie.Name = "chk_mie";
     this.chk_mie.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_mie.Properties.Appearance.Options.UseForeColor = true;
     this.chk_mie.Properties.Caption = "MI";
     this.chk_mie.Size = new System.Drawing.Size(39, 19);
     this.chk_mie.TabIndex = 175;
     //
     // chk_jue
     //
     this.chk_jue.Location = new System.Drawing.Point(51, 0);
     this.chk_jue.MenuManager = this.barManager1;
     this.chk_jue.Name = "chk_jue";
     this.chk_jue.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_jue.Properties.Appearance.Options.UseForeColor = true;
     this.chk_jue.Properties.Caption = "JU";
     this.chk_jue.Size = new System.Drawing.Size(39, 19);
     this.chk_jue.TabIndex = 176;
     //
     // chk_vie
     //
     this.chk_vie.Location = new System.Drawing.Point(51, 20);
     this.chk_vie.MenuManager = this.barManager1;
     this.chk_vie.Name = "chk_vie";
     this.chk_vie.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_vie.Properties.Appearance.Options.UseForeColor = true;
     this.chk_vie.Properties.Caption = "VI";
     this.chk_vie.Size = new System.Drawing.Size(39, 19);
     this.chk_vie.TabIndex = 177;
     //
     // exclusivo
     //
     this.exclusivo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.exclusivo.Location = new System.Drawing.Point(352, 160);
     this.exclusivo.Name = "exclusivo";
     this.exclusivo.Size = new System.Drawing.Size(22, 21);
     this.exclusivo.TabIndex = 181;
     this.exclusivo.Text = "1";
     this.exclusivo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl1.Location = new System.Drawing.Point(280, 165);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 180;
     this.labelControl1.Text = "» Exclusivo:";
     //
     // chk_solodias
     //
     this.chk_solodias.Location = new System.Drawing.Point(45, 140);
     this.chk_solodias.MenuManager = this.barManager1;
     this.chk_solodias.Name = "chk_solodias";
     this.chk_solodias.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_solodias.Properties.Appearance.Options.UseForeColor = true;
     this.chk_solodias.Properties.Caption = "Solo Dias ?";
     this.chk_solodias.Size = new System.Drawing.Size(85, 19);
     this.chk_solodias.TabIndex = 172;
     this.chk_solodias.CheckedChanged += new System.EventHandler(this.chk_solodias_CheckedChanged);
     //
     // impopack
     //
     this.impopack.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.impopack.Location = new System.Drawing.Point(275, 206);
     this.impopack.Name = "impopack";
     this.impopack.Size = new System.Drawing.Size(72, 21);
     this.impopack.TabIndex = 171;
     this.impopack.Text = "0.00";
     this.impopack.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.impopack.KeyDown += new System.Windows.Forms.KeyEventHandler(this.impopack_KeyDown);
     //
     // labelControl19
     //
     this.labelControl19.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl19.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl19.Location = new System.Drawing.Point(159, 211);
     this.labelControl19.Name = "labelControl19";
     this.labelControl19.Size = new System.Drawing.Size(108, 13);
     this.labelControl19.TabIndex = 170;
     this.labelControl19.Text = "» Importe de Pack:";
     //
     // npack
     //
     this.npack.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.npack.Location = new System.Drawing.Point(121, 206);
     this.npack.Name = "npack";
     this.npack.Size = new System.Drawing.Size(22, 21);
     this.npack.TabIndex = 169;
     this.npack.Text = "1";
     this.npack.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.npack.KeyDown += new System.Windows.Forms.KeyEventHandler(this.npack_KeyDown);
     //
     // aplicfin
     //
     this.aplicfin.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.aplicfin.Location = new System.Drawing.Point(194, 229);
     this.aplicfin.Name = "aplicfin";
     this.aplicfin.Size = new System.Drawing.Size(25, 21);
     this.aplicfin.TabIndex = 168;
     this.aplicfin.Text = "999";
     this.aplicfin.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.aplicfin.KeyDown += new System.Windows.Forms.KeyEventHandler(this.aplicfin_KeyDown);
     //
     // aplicini
     //
     this.aplicini.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.aplicini.Location = new System.Drawing.Point(121, 229);
     this.aplicini.Name = "aplicini";
     this.aplicini.Size = new System.Drawing.Size(22, 21);
     this.aplicini.TabIndex = 167;
     this.aplicini.Text = "1";
     this.aplicini.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.aplicini.KeyDown += new System.Windows.Forms.KeyEventHandler(this.aplicini_KeyDown);
     //
     // impodoc
     //
     this.impodoc.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.impodoc.Location = new System.Drawing.Point(305, 247);
     this.impodoc.Name = "impodoc";
     this.impodoc.Size = new System.Drawing.Size(69, 21);
     this.impodoc.TabIndex = 166;
     this.impodoc.Text = "0.00";
     this.impodoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl18
     //
     this.labelControl18.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl18.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl18.Location = new System.Drawing.Point(11, 253);
     this.labelControl18.Name = "labelControl18";
     this.labelControl18.Size = new System.Drawing.Size(288, 13);
     this.labelControl18.TabIndex = 165;
     this.labelControl18.Text = "»» Siempre que el Importe del Documento sea >= ";
     //
     // labelControl17
     //
     this.labelControl17.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl17.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl17.Location = new System.Drawing.Point(159, 234);
     this.labelControl17.Name = "labelControl17";
     this.labelControl17.Size = new System.Drawing.Size(28, 13);
     this.labelControl17.TabIndex = 164;
     this.labelControl17.Text = "» AL:";
     //
     // labelControl16
     //
     this.labelControl16.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl16.Location = new System.Drawing.Point(12, 235);
     this.labelControl16.Name = "labelControl16";
     this.labelControl16.Size = new System.Drawing.Size(73, 13);
     this.labelControl16.TabIndex = 163;
     this.labelControl16.Text = "» Aplicar del:";
     //
     // labelControl7
     //
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl7.Location = new System.Drawing.Point(11, 211);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(58, 13);
     this.labelControl7.TabIndex = 162;
     this.labelControl7.Text = "» Pack de:";
     //
     // cmb_grupopromocion
     //
     this.cmb_grupopromocion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_grupopromocion.FormattingEnabled = true;
     this.cmb_grupopromocion.Location = new System.Drawing.Point(120, 116);
     this.cmb_grupopromocion.Name = "cmb_grupopromocion";
     this.cmb_grupopromocion.Size = new System.Drawing.Size(201, 21);
     this.cmb_grupopromocion.TabIndex = 160;
     //
     // labelControl15
     //
     this.labelControl15.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl15.Location = new System.Drawing.Point(10, 119);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(81, 13);
     this.labelControl15.TabIndex = 159;
     this.labelControl15.Text = "» Grupo Prom:";
     //
     // perdsctocab
     //
     this.perdsctocab.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.perdsctocab.Location = new System.Drawing.Point(321, 70);
     this.perdsctocab.Name = "perdsctocab";
     this.perdsctocab.Size = new System.Drawing.Size(69, 21);
     this.perdsctocab.TabIndex = 158;
     this.perdsctocab.Text = "0.00";
     this.perdsctocab.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl14
     //
     this.labelControl14.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl14.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl14.Location = new System.Drawing.Point(256, 74);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(59, 13);
     this.labelControl14.TabIndex = 157;
     this.labelControl14.Text = "» %Dscto:";
     //
     // chk_aldocum
     //
     this.chk_aldocum.Location = new System.Drawing.Point(155, 71);
     this.chk_aldocum.MenuManager = this.barManager1;
     this.chk_aldocum.Name = "chk_aldocum";
     this.chk_aldocum.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_aldocum.Properties.Appearance.Options.UseForeColor = true;
     this.chk_aldocum.Properties.Caption = "Al Documento ?";
     this.chk_aldocum.Size = new System.Drawing.Size(97, 19);
     this.chk_aldocum.TabIndex = 156;
     //
     // prioridad
     //
     this.prioridad.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.prioridad.Location = new System.Drawing.Point(120, 70);
     this.prioridad.Name = "prioridad";
     this.prioridad.Size = new System.Drawing.Size(22, 21);
     this.prioridad.TabIndex = 155;
     this.prioridad.Text = "2";
     this.prioridad.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // labelControl13
     //
     this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl13.Location = new System.Drawing.Point(11, 74);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(65, 13);
     this.labelControl13.TabIndex = 154;
     this.labelControl13.Text = "» Prioridad:";
     //
     // cmb_tarjgrupoid
     //
     this.cmb_tarjgrupoid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_tarjgrupoid.FormattingEnabled = true;
     this.cmb_tarjgrupoid.Location = new System.Drawing.Point(120, 47);
     this.cmb_tarjgrupoid.Name = "cmb_tarjgrupoid";
     this.cmb_tarjgrupoid.Size = new System.Drawing.Size(201, 21);
     this.cmb_tarjgrupoid.TabIndex = 153;
     //
     // labelControl12
     //
     this.labelControl12.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl12.Location = new System.Drawing.Point(11, 52);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(99, 13);
     this.labelControl12.TabIndex = 152;
     this.labelControl12.Text = "» Grupo Tarjetas:";
     //
     // cmb_tiendalist
     //
     this.cmb_tiendalist.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_tiendalist.FormattingEnabled = true;
     this.cmb_tiendalist.Location = new System.Drawing.Point(120, 25);
     this.cmb_tiendalist.Name = "cmb_tiendalist";
     this.cmb_tiendalist.Size = new System.Drawing.Size(201, 21);
     this.cmb_tiendalist.TabIndex = 151;
     //
     // fechafin
     //
     this.fechafin.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechafin.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechafin.Location = new System.Drawing.Point(321, 93);
     this.fechafin.Name = "fechafin";
     this.fechafin.Size = new System.Drawing.Size(80, 20);
     this.fechafin.TabIndex = 125;
     //
     // fechaini
     //
     this.fechaini.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechaini.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechaini.Location = new System.Drawing.Point(120, 93);
     this.fechaini.Name = "fechaini";
     this.fechaini.Size = new System.Drawing.Size(80, 20);
     this.fechaini.TabIndex = 124;
     //
     // labelControl6
     //
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl6.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl6.Location = new System.Drawing.Point(250, 96);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(66, 13);
     this.labelControl6.TabIndex = 135;
     this.labelControl6.Text = "» Fecha Fin:";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Location = new System.Drawing.Point(11, 96);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 134;
     this.labelControl5.Text = "» Fecha Inicio:";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Location = new System.Drawing.Point(11, 29);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(105, 13);
     this.labelControl4.TabIndex = 131;
     this.labelControl4.Text = "» Lista de Tiendas:";
     //
     // promoname
     //
     this.promoname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.promoname.Location = new System.Drawing.Point(158, 3);
     this.promoname.Name = "promoname";
     this.promoname.Size = new System.Drawing.Size(325, 21);
     this.promoname.TabIndex = 130;
     //
     // promoid
     //
     this.promoid.AccessibleDescription = "";
     this.promoid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.promoid.Location = new System.Drawing.Point(121, 3);
     this.promoid.MaxLength = 4;
     this.promoid.Name = "promoid";
     this.promoid.Size = new System.Drawing.Size(35, 20);
     this.promoid.TabIndex = 128;
     this.promoid.Text = "0";
     this.promoid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Location = new System.Drawing.Point(11, 6);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(94, 13);
     this.labelControl3.TabIndex = 123;
     this.labelControl3.Text = "» Denominación:";
     //
     // pnlcontroldet
     //
     this.pnlcontroldet.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnlcontroldet.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.Options.UseBackColor = true;
     this.pnlcontroldet.Appearance.Options.UseForeColor = true;
     this.pnlcontroldet.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlcontroldet.Controls.Add(this.btn_update);
     this.pnlcontroldet.Controls.Add(this.btn_search);
     this.pnlcontroldet.Controls.Add(this.rollo_search);
     this.pnlcontroldet.Controls.Add(this.btn_exportar);
     this.pnlcontroldet.Controls.Add(this.btn_importar);
     this.pnlcontroldet.Controls.Add(this.chk_aldoc2);
     this.pnlcontroldet.Controls.Add(this.btn_del);
     this.pnlcontroldet.Controls.Add(this.btn_add);
     this.pnlcontroldet.Controls.Add(this.btn_save);
     this.pnlcontroldet.Controls.Add(this.precunit);
     this.pnlcontroldet.Controls.Add(this.percdscto);
     this.pnlcontroldet.Controls.Add(this.labelControl9);
     this.pnlcontroldet.Controls.Add(this.labelControl8);
     this.pnlcontroldet.Controls.Add(this.dgb_promodet);
     this.pnlcontroldet.Controls.Add(this.labelControl2);
     this.pnlcontroldet.Controls.Add(this.articid);
     this.pnlcontroldet.Controls.Add(this.articname);
     this.pnlcontroldet.Location = new System.Drawing.Point(474, 304);
     this.pnlcontroldet.Name = "pnlcontroldet";
     this.pnlcontroldet.Size = new System.Drawing.Size(872, 296);
     this.pnlcontroldet.TabIndex = 121;
     //
     // btn_update
     //
     this.btn_update.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_update.Image = ((System.Drawing.Image)(resources.GetObject("btn_update.Image")));
     this.btn_update.Location = new System.Drawing.Point(494, 34);
     this.btn_update.Name = "btn_update";
     this.btn_update.Size = new System.Drawing.Size(70, 23);
     this.btn_update.TabIndex = 162;
     this.btn_update.Text = "&Modificar";
     this.btn_update.ToolTip = "Modificar";
     this.btn_update.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_update.Click += new System.EventHandler(this.btn_update_Click);
     //
     // btn_search
     //
     this.btn_search.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_search.Image = ((System.Drawing.Image)(resources.GetObject("btn_search.Image")));
     this.btn_search.Location = new System.Drawing.Point(208, 64);
     this.btn_search.Name = "btn_search";
     this.btn_search.Size = new System.Drawing.Size(25, 23);
     this.btn_search.TabIndex = 161;
     this.btn_search.ToolTip = "Buscar Codigo";
     this.btn_search.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     //
     // rollo_search
     //
     this.rollo_search.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.rollo_search.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.rollo_search.ForeColor = System.Drawing.Color.Firebrick;
     this.rollo_search.Location = new System.Drawing.Point(233, 64);
     this.rollo_search.Name = "rollo_search";
     this.rollo_search.Size = new System.Drawing.Size(76, 21);
     this.rollo_search.TabIndex = 160;
     this.rollo_search.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rollo_search_KeyDown);
     //
     // btn_exportar
     //
     this.btn_exportar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_exportar.Image = ((System.Drawing.Image)(resources.GetObject("btn_exportar.Image")));
     this.btn_exportar.Location = new System.Drawing.Point(22, 62);
     this.btn_exportar.Name = "btn_exportar";
     this.btn_exportar.Size = new System.Drawing.Size(70, 23);
     this.btn_exportar.TabIndex = 159;
     this.btn_exportar.Text = "&Exportar";
     this.btn_exportar.ToolTip = "Exportar";
     this.btn_exportar.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_exportar.Click += new System.EventHandler(this.btn_exportar_Click);
     //
     // btn_importar
     //
     this.btn_importar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_importar.Image = ((System.Drawing.Image)(resources.GetObject("btn_importar.Image")));
     this.btn_importar.Location = new System.Drawing.Point(98, 62);
     this.btn_importar.Name = "btn_importar";
     this.btn_importar.Size = new System.Drawing.Size(70, 23);
     this.btn_importar.TabIndex = 158;
     this.btn_importar.Text = "&Importar";
     this.btn_importar.ToolTip = "Importar";
     this.btn_importar.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_importar.Click += new System.EventHandler(this.btn_importar_Click);
     //
     // chk_aldoc2
     //
     this.chk_aldoc2.Location = new System.Drawing.Point(10, 37);
     this.chk_aldoc2.MenuManager = this.barManager1;
     this.chk_aldoc2.Name = "chk_aldoc2";
     this.chk_aldoc2.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.chk_aldoc2.Properties.Appearance.Options.UseForeColor = true;
     this.chk_aldoc2.Properties.Caption = "Al Documento ?";
     this.chk_aldoc2.Size = new System.Drawing.Size(97, 19);
     this.chk_aldoc2.TabIndex = 157;
     this.chk_aldoc2.CheckedChanged += new System.EventHandler(this.chk_aldoc2_CheckedChanged);
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.Image = ((System.Drawing.Image)(resources.GetObject("btn_del.Image")));
     this.btn_del.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_del.Location = new System.Drawing.Point(494, 61);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(70, 23);
     this.btn_del.TabIndex = 144;
     this.btn_del.Text = "Eliminar";
     this.btn_del.ToolTip = "Eliminar";
     this.btn_del.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.Image = ((System.Drawing.Image)(resources.GetObject("btn_add.Image")));
     this.btn_add.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_add.Location = new System.Drawing.Point(417, 61);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(71, 23);
     this.btn_add.TabIndex = 143;
     this.btn_add.Text = "Adicionar";
     this.btn_add.ToolTip = "Adicionar";
     this.btn_add.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // btn_save
     //
     this.btn_save.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_save.Image = ((System.Drawing.Image)(resources.GetObject("btn_save.Image")));
     this.btn_save.Location = new System.Drawing.Point(341, 61);
     this.btn_save.Name = "btn_save";
     this.btn_save.Size = new System.Drawing.Size(70, 23);
     this.btn_save.TabIndex = 154;
     this.btn_save.Text = "&Aceptar";
     this.btn_save.ToolTip = "Grabar";
     this.btn_save.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
     //
     // precunit
     //
     this.precunit.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.precunit.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.precunit.Location = new System.Drawing.Point(366, 34);
     this.precunit.Name = "precunit";
     this.precunit.Size = new System.Drawing.Size(80, 21);
     this.precunit.TabIndex = 153;
     this.precunit.Text = "0.00";
     this.precunit.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // percdscto
     //
     this.percdscto.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.percdscto.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.percdscto.Location = new System.Drawing.Point(173, 34);
     this.percdscto.Name = "percdscto";
     this.percdscto.Size = new System.Drawing.Size(80, 21);
     this.percdscto.TabIndex = 152;
     this.percdscto.Text = "0.00";
     this.percdscto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.percdscto.KeyDown += new System.Windows.Forms.KeyEventHandler(this.precunit1_KeyDown);
     //
     // labelControl9
     //
     this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl9.Location = new System.Drawing.Point(304, 39);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(52, 13);
     this.labelControl9.TabIndex = 151;
     this.labelControl9.Text = "» Precio :";
     //
     // labelControl8
     //
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl8.Location = new System.Drawing.Point(111, 39);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(56, 13);
     this.labelControl8.TabIndex = 150;
     this.labelControl8.Text = "» % Dcto:";
     //
     // dgb_promodet
     //
     this.dgb_promodet.AllowUserToAddRows = false;
     this.dgb_promodet.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgb_promodet.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.@__promoid,
     this._articid,
     this._articidold,
     this._articname,
     this._es_dscto,
     this.@__percdscto,
     this._precunit,
     this.@__status,
     this.@__feact,
     this._usuarip,
     this._cantidad});
     this.dgb_promodet.EnableHeadersVisualStyles = false;
     this.dgb_promodet.Location = new System.Drawing.Point(2, 90);
     this.dgb_promodet.Name = "dgb_promodet";
     this.dgb_promodet.ReadOnly = true;
     this.dgb_promodet.RowHeadersVisible = false;
     dataGridViewCellStyle8.ForeColor = System.Drawing.Color.Black;
     this.dgb_promodet.RowsDefaultCellStyle = dataGridViewCellStyle8;
     this.dgb_promodet.Size = new System.Drawing.Size(562, 202);
     this.dgb_promodet.TabIndex = 149;
     this.dgb_promodet.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellClick);
     this.dgb_promodet.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellEnter);
     this.dgb_promodet.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgb_listaPrecios_KeyUp);
     //
     // __promoid
     //
     this.@__promoid.DataPropertyName = "promoid";
     this.@__promoid.HeaderText = "promoid";
     this.@__promoid.Name = "__promoid";
     this.@__promoid.ReadOnly = true;
     this.@__promoid.Visible = false;
     //
     // _articid
     //
     this._articid.DataPropertyName = "articid";
     this._articid.HeaderText = "articid";
     this._articid.Name = "_articid";
     this._articid.ReadOnly = true;
     this._articid.Visible = false;
     //
     // _articidold
     //
     this._articidold.DataPropertyName = "articidold";
     this._articidold.HeaderText = "Codigo";
     this._articidold.Name = "_articidold";
     this._articidold.ReadOnly = true;
     this._articidold.Width = 70;
     //
     // _articname
     //
     this._articname.DataPropertyName = "articname";
     this._articname.HeaderText = "Denominación";
     this._articname.Name = "_articname";
     this._articname.ReadOnly = true;
     this._articname.Width = 250;
     //
     // _es_dscto
     //
     this._es_dscto.DataPropertyName = "es_dscto";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this._es_dscto.DefaultCellStyle = dataGridViewCellStyle5;
     this._es_dscto.HeaderText = "Desc ?";
     this._es_dscto.Name = "_es_dscto";
     this._es_dscto.ReadOnly = true;
     this._es_dscto.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this._es_dscto.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this._es_dscto.Width = 65;
     //
     // __percdscto
     //
     this.@__percdscto.DataPropertyName = "percdscto";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N2";
     dataGridViewCellStyle6.NullValue = null;
     this.@__percdscto.DefaultCellStyle = dataGridViewCellStyle6;
     this.@__percdscto.HeaderText = "%";
     this.@__percdscto.Name = "__percdscto";
     this.@__percdscto.ReadOnly = true;
     this.@__percdscto.Width = 60;
     //
     // _precunit
     //
     this._precunit.DataPropertyName = "precunit";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = null;
     this._precunit.DefaultCellStyle = dataGridViewCellStyle7;
     this._precunit.HeaderText = "Precio";
     this._precunit.Name = "_precunit";
     this._precunit.ReadOnly = true;
     this._precunit.Width = 80;
     //
     // __status
     //
     this.@__status.DataPropertyName = "status";
     this.@__status.HeaderText = "status";
     this.@__status.Name = "__status";
     this.@__status.ReadOnly = true;
     this.@__status.Visible = false;
     //
     // __feact
     //
     this.@__feact.DataPropertyName = "feact";
     this.@__feact.HeaderText = "feact";
     this.@__feact.Name = "__feact";
     this.@__feact.ReadOnly = true;
     this.@__feact.Visible = false;
     //
     // _usuarip
     //
     this._usuarip.DataPropertyName = "usuarip";
     this._usuarip.HeaderText = "usuarip";
     this._usuarip.Name = "_usuarip";
     this._usuarip.ReadOnly = true;
     this._usuarip.Visible = false;
     //
     // _cantidad
     //
     this._cantidad.DataPropertyName = "cantidad";
     this._cantidad.HeaderText = "cantidad";
     this._cantidad.Name = "_cantidad";
     this._cantidad.ReadOnly = true;
     this._cantidad.Visible = false;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(12, 7);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(58, 13);
     this.labelControl2.TabIndex = 123;
     this.labelControl2.Text = "» Articulo:";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.Group_chks);
     this.groupControl1.Controls.Add(this.cmb_perianio);
     this.groupControl1.Controls.Add(this.cmb_grupopromocion2);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.labelControl10);
     this.groupControl1.Controls.Add(this.Mdi_dgv_promociones);
     this.groupControl1.Location = new System.Drawing.Point(0, 29);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(471, 571);
     this.groupControl1.TabIndex = 142;
     this.groupControl1.Text = "Promociónes";
     //
     // Group_chks
     //
     this.Group_chks.Location = new System.Drawing.Point(31, 47);
     this.Group_chks.MenuManager = this.barManager1;
     this.Group_chks.Name = "Group_chks";
     this.Group_chks.Properties.Appearance.BackColor = System.Drawing.Color.Teal;
     this.Group_chks.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Group_chks.Properties.Appearance.ForeColor = System.Drawing.Color.White;
     this.Group_chks.Properties.Appearance.Image = ((System.Drawing.Image)(resources.GetObject("Group_chks.Properties.Appearance.Image")));
     this.Group_chks.Properties.Appearance.Options.UseBackColor = true;
     this.Group_chks.Properties.Appearance.Options.UseFont = true;
     this.Group_chks.Properties.Appearance.Options.UseForeColor = true;
     this.Group_chks.Properties.Appearance.Options.UseImage = true;
     this.Group_chks.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.Group_chks.Properties.Columns = 3;
     this.Group_chks.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem("0", "Vigentes"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("1", "Culminados"),
     new DevExpress.XtraEditors.Controls.RadioGroupItem("2", "Todos")});
     this.Group_chks.Size = new System.Drawing.Size(399, 21);
     this.Group_chks.TabIndex = 151;
     this.Group_chks.SelectedIndexChanged += new System.EventHandler(this.Group_chks_SelectedIndexChanged);
     //
     // cmb_perianio
     //
     this.cmb_perianio.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_perianio.FormattingEnabled = true;
     this.cmb_perianio.Location = new System.Drawing.Point(52, 23);
     this.cmb_perianio.Name = "cmb_perianio";
     this.cmb_perianio.Size = new System.Drawing.Size(52, 21);
     this.cmb_perianio.TabIndex = 147;
     //
     // cmb_grupopromocion2
     //
     this.cmb_grupopromocion2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmb_grupopromocion2.FormattingEnabled = true;
     this.cmb_grupopromocion2.Location = new System.Drawing.Point(220, 23);
     this.cmb_grupopromocion2.Name = "cmb_grupopromocion2";
     this.cmb_grupopromocion2.Size = new System.Drawing.Size(201, 21);
     this.cmb_grupopromocion2.TabIndex = 146;
     //
     // labelControl11
     //
     this.labelControl11.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl11.Location = new System.Drawing.Point(133, 26);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(81, 13);
     this.labelControl11.TabIndex = 145;
     this.labelControl11.Text = "» Grupo Prom:";
     //
     // labelControl10
     //
     this.labelControl10.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl10.Location = new System.Drawing.Point(13, 26);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(36, 13);
     this.labelControl10.TabIndex = 144;
     this.labelControl10.Text = "» Año:";
     //
     // Mdi_dgv_promociones
     //
     this.Mdi_dgv_promociones.Location = new System.Drawing.Point(5, 71);
     this.Mdi_dgv_promociones.MainView = this.dgv_promociones;
     this.Mdi_dgv_promociones.Name = "Mdi_dgv_promociones";
     this.Mdi_dgv_promociones.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemTextEdit2,
     this.repositoryItemCheckEdit3});
     this.Mdi_dgv_promociones.Size = new System.Drawing.Size(461, 495);
     this.Mdi_dgv_promociones.TabIndex = 143;
     this.Mdi_dgv_promociones.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgv_promociones});
     this.Mdi_dgv_promociones.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Mdi_dgv_tiendalist_KeyUp);
     //
     // dgv_promociones
     //
     this.dgv_promociones.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgv_promociones.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.Empty.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgv_promociones.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_promociones.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgv_promociones.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_promociones.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgv_promociones.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_promociones.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgv_promociones.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgv_promociones.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_promociones.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_promociones.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgv_promociones.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_promociones.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupPanel.Options.UseFont = true;
     this.dgv_promociones.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgv_promociones.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgv_promociones.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_promociones.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgv_promociones.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgv_promociones.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_promociones.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgv_promociones.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgv_promociones.Appearance.Preview.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.Preview.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_promociones.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgv_promociones.Appearance.Row.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.Row.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_promociones.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgv_promociones.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_promociones.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgv_promociones.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgv_promociones.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgv_promociones.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_promociones.Appearance.VertLine.Options.UseBackColor = true;
     this.dgv_promociones.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this._promoid,
     this._prioridad,
     this._status,
     this._exclusivo,
     this._promoname,
     this._tiendalist,
     this._tarjgrupoid,
     this._tarjetaid,
     this._percdscto,
     this._al_docum,
     this._fechaini,
     this._fechafin,
     this._promotipoid,
     this._grupopromoid,
     this._campaniaid,
     this._usuar,
     this._fecre,
     this._feact,
     this._usuarap,
     this._fechap,
     this._solodias,
     this._dom,
     this._lun,
     this._mar,
     this._mie,
     this._jue,
     this._vie,
     this._sab,
     this._npack,
     this._impopack,
     this._aplicini,
     this._aplicfin,
     this._impodoc});
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.Teal;
     styleFormatCondition2.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition2.Expression = "Len(Trim([conceptoid])) == 2";
     this.dgv_promociones.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition2});
     this.dgv_promociones.GridControl = this.Mdi_dgv_promociones;
     this.dgv_promociones.Name = "dgv_promociones";
     this.dgv_promociones.OptionsSelection.MultiSelect = true;
     this.dgv_promociones.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.dgv_promociones.OptionsView.ShowGroupPanel = false;
     this.dgv_promociones.PaintStyleName = "Web";
     this.dgv_promociones.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgv_tiendalist_RowCellClick);
     //
     // _promoid
     //
     this._promoid.Caption = "ID";
     this._promoid.FieldName = "promoid";
     this._promoid.Name = "_promoid";
     this._promoid.OptionsColumn.AllowEdit = false;
     this._promoid.Visible = true;
     this._promoid.VisibleIndex = 0;
     this._promoid.Width = 34;
     //
     // _prioridad
     //
     this._prioridad.Caption = "prioridad";
     this._prioridad.FieldName = "prioridad";
     this._prioridad.Name = "_prioridad";
     this._prioridad.OptionsColumn.AllowEdit = false;
     this._prioridad.Width = 281;
     //
     // _status
     //
     this._status.Caption = "status";
     this._status.FieldName = "status";
     this._status.Name = "_status";
     //
     // _exclusivo
     //
     this._exclusivo.Caption = "exclusivo";
     this._exclusivo.FieldName = "exclusivo";
     this._exclusivo.Name = "_exclusivo";
     //
     // _promoname
     //
     this._promoname.Caption = "Denominación";
     this._promoname.FieldName = "promoname";
     this._promoname.Name = "_promoname";
     this._promoname.OptionsColumn.AllowEdit = false;
     this._promoname.Visible = true;
     this._promoname.VisibleIndex = 1;
     this._promoname.Width = 252;
     //
     // _tiendalist
     //
     this._tiendalist.Caption = "tiendalist";
     this._tiendalist.FieldName = "tiendalist";
     this._tiendalist.Name = "_tiendalist";
     //
     // _tarjgrupoid
     //
     this._tarjgrupoid.Caption = "tarjgrupoid";
     this._tarjgrupoid.FieldName = "tarjgrupoid";
     this._tarjgrupoid.Name = "_tarjgrupoid";
     //
     // _tarjetaid
     //
     this._tarjetaid.Caption = "tarjetaid";
     this._tarjetaid.FieldName = "tarjetaid";
     this._tarjetaid.Name = "_tarjetaid";
     //
     // _percdscto
     //
     this._percdscto.Caption = "percdscto";
     this._percdscto.FieldName = "percdscto";
     this._percdscto.Name = "_percdscto";
     //
     // _al_docum
     //
     this._al_docum.Caption = "al_docum";
     this._al_docum.FieldName = "al_docum";
     this._al_docum.Name = "_al_docum";
     //
     // _fechaini
     //
     this._fechaini.Caption = "F.Ini";
     this._fechaini.FieldName = "fechaini";
     this._fechaini.Name = "_fechaini";
     this._fechaini.OptionsColumn.AllowEdit = false;
     this._fechaini.Visible = true;
     this._fechaini.VisibleIndex = 2;
     //
     // _fechafin
     //
     this._fechafin.Caption = "F.Fin";
     this._fechafin.FieldName = "fechafin";
     this._fechafin.Name = "_fechafin";
     this._fechafin.OptionsColumn.AllowEdit = false;
     this._fechafin.Visible = true;
     this._fechafin.VisibleIndex = 3;
     this._fechafin.Width = 85;
     //
     // _promotipoid
     //
     this._promotipoid.Caption = "promotipoid";
     this._promotipoid.FieldName = "promotipoid";
     this._promotipoid.Name = "_promotipoid";
     //
     // _grupopromoid
     //
     this._grupopromoid.Caption = "grupopromoid";
     this._grupopromoid.FieldName = "grupopromoid";
     this._grupopromoid.Name = "_grupopromoid";
     //
     // _campaniaid
     //
     this._campaniaid.Caption = "campaniaid";
     this._campaniaid.FieldName = "campaniaid";
     this._campaniaid.Name = "_campaniaid";
     //
     // _usuar
     //
     this._usuar.Caption = "usuar";
     this._usuar.FieldName = "usuar";
     this._usuar.Name = "_usuar";
     //
     // _fecre
     //
     this._fecre.Caption = "fecre";
     this._fecre.FieldName = "fecre";
     this._fecre.Name = "_fecre";
     //
     // _feact
     //
     this._feact.Caption = "feact";
     this._feact.FieldName = "feact";
     this._feact.Name = "_feact";
     //
     // _usuarap
     //
     this._usuarap.Caption = "gridColumn8";
     this._usuarap.Name = "_usuarap";
     //
     // _fechap
     //
     this._fechap.Caption = "fechap";
     this._fechap.FieldName = "fechap";
     this._fechap.Name = "_fechap";
     //
     // _solodias
     //
     this._solodias.Caption = "solodias";
     this._solodias.FieldName = "solodias";
     this._solodias.Name = "_solodias";
     //
     // _dom
     //
     this._dom.Caption = "dom";
     this._dom.FieldName = "dom";
     this._dom.Name = "_dom";
     //
     // _lun
     //
     this._lun.Caption = "lun";
     this._lun.FieldName = "lun";
     this._lun.Name = "_lun";
     //
     // _mar
     //
     this._mar.Caption = "mar";
     this._mar.FieldName = "mar";
     this._mar.Name = "_mar";
     //
     // _mie
     //
     this._mie.Caption = "mie";
     this._mie.FieldName = "mie";
     this._mie.Name = "_mie";
     //
     // _jue
     //
     this._jue.Caption = "jue";
     this._jue.FieldName = "jue";
     this._jue.Name = "_jue";
     //
     // _vie
     //
     this._vie.Caption = "vie";
     this._vie.FieldName = "vie";
     this._vie.Name = "_vie";
     //
     // _sab
     //
     this._sab.Caption = "sab";
     this._sab.FieldName = "sab";
     this._sab.Name = "_sab";
     //
     // _npack
     //
     this._npack.Caption = "npack";
     this._npack.FieldName = "npack";
     this._npack.Name = "_npack";
     //
     // _impopack
     //
     this._impopack.Caption = "impopack";
     this._impopack.FieldName = "impopack";
     this._impopack.Name = "_impopack";
     //
     // _aplicini
     //
     this._aplicini.Caption = "aplicini";
     this._aplicini.FieldName = "aplicini";
     this._aplicini.Name = "_aplicini";
     //
     // _aplicfin
     //
     this._aplicfin.Caption = "aplicfin";
     this._aplicfin.FieldName = "aplicfin";
     this._aplicfin.Name = "_aplicfin";
     //
     // _impodoc
     //
     this._impodoc.Caption = "impodoc";
     this._impodoc.FieldName = "impodoc";
     this._impodoc.Name = "_impodoc";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.EditFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.EditMask = "###,##0.0000";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Caption = "Check";
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.repositoryItemTextEdit2.ReadOnly = true;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Caption = "Check";
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // Frm_promociones
     //
     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.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(1038, 595);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.pnlcontroldet);
     this.Controls.Add(this.pnl_01);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.DoubleBuffered = true;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_promociones";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "» Lista de Promociónes";
     this.Load += new System.EventHandler(this.Frm_articulo_tiendalist_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_articulo_tiendalist_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).EndInit();
     this.pnl_01.ResumeLayout(false);
     this.pnl_01.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.rdb_estado.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_dias)).EndInit();
     this.pnl_dias.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chk_sab.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_lun.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mar.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_dom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_mie.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_jue.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_vie.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_solodias.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldocum.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).EndInit();
     this.pnlcontroldet.ResumeLayout(false);
     this.pnlcontroldet.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_aldoc2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_promodet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Group_chks.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_promociones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_promociones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     this.ResumeLayout(false);
 }
Example #44
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.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition3 = new DevExpress.XtraGrid.StyleFormatCondition();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLogs));
     this.collevel = new DevExpress.XtraGrid.Columns.GridColumn();
     this.barManager = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.bntReload = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem5 = new DevExpress.XtraBars.BarStaticItem();
     this.btnSelectedDateStart = new DevExpress.XtraBars.BarButtonItem();
     this.btnSelectedDateEnd = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
     this.btnPreview = new DevExpress.XtraBars.BarButtonItem();
     this.btnPrint = new DevExpress.XtraBars.BarButtonItem();
     this.btnExpToExcel = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem3 = new DevExpress.XtraBars.BarStaticItem();
     this.bar3 = new DevExpress.XtraBars.Bar();
     this.siLevelStatus = new DevExpress.XtraBars.BarStaticItem();
     this.siLevel = new DevExpress.XtraBars.BarStaticItem();
     this.siAppStatus = new DevExpress.XtraBars.BarStaticItem();
     this.siApp = new DevExpress.XtraBars.BarStaticItem();
     this.siLastDayStatus = new DevExpress.XtraBars.BarStaticItem();
     this.siLastDay = new DevExpress.XtraBars.BarStaticItem();
     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.mFile = new DevExpress.XtraBars.BarSubItem();
     this.iNew = new DevExpress.XtraBars.BarButtonItem();
     this.iOpen = new DevExpress.XtraBars.BarButtonItem();
     this.iClose = new DevExpress.XtraBars.BarButtonItem();
     this.iSave = new DevExpress.XtraBars.BarButtonItem();
     this.iSaveAs = new DevExpress.XtraBars.BarButtonItem();
     this.iExit = new DevExpress.XtraBars.BarButtonItem();
     this.mHelp = new DevExpress.XtraBars.BarSubItem();
     this.iAbout = new DevExpress.XtraBars.BarButtonItem();
     this.mPaintStyle = new DevExpress.XtraBars.BarSubItem();
     this.mOldStyles = new DevExpress.XtraBars.BarSubItem();
     this.iWXP = new DevExpress.XtraBars.BarCheckItem();
     this.iOffXP = new DevExpress.XtraBars.BarCheckItem();
     this.iOff2K = new DevExpress.XtraBars.BarCheckItem();
     this.iOff2003 = new DevExpress.XtraBars.BarCheckItem();
     this.iDefault = new DevExpress.XtraBars.BarCheckItem();
     this.mOfficeSkins = new DevExpress.XtraBars.BarSubItem();
     this.mBonusSkins = new DevExpress.XtraBars.BarSubItem();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gridControl_Logs = new DevExpress.XtraGrid.GridControl();
     this.logItemBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView_Logs = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coltimestamp = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colthread = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coluserName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmessage = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colloggerName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldomain = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmachineName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colfileName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colmethod = new DevExpress.XtraGrid.Columns.GridColumn();
     this.collineNumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colclassName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.printingSystem = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem4 = new DevExpress.XtraBars.BarStaticItem();
     ((System.ComponentModel.ISupportInitialize)(this.barManager)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl_Logs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.logItemBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_Logs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem)).BeginInit();
     this.SuspendLayout();
     //
     // collevel
     //
     this.collevel.Caption = "Level";
     this.collevel.FieldName = "level";
     this.collevel.Name = "collevel";
     this.collevel.OptionsColumn.FixedWidth = true;
     this.collevel.Visible = true;
     this.collevel.VisibleIndex = 2;
     this.collevel.Width = 49;
     //
     // barManager
     //
     this.barManager.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2,
     this.bar3});
     this.barManager.DockControls.Add(this.barDockControlTop);
     this.barManager.DockControls.Add(this.barDockControlBottom);
     this.barManager.DockControls.Add(this.barDockControlLeft);
     this.barManager.DockControls.Add(this.barDockControlRight);
     this.barManager.Form = this;
     this.barManager.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.mFile,
     this.mHelp,
     this.iNew,
     this.iOpen,
     this.iClose,
     this.iSave,
     this.iSaveAs,
     this.iExit,
     this.iAbout,
     this.siLevelStatus,
     this.siLevel,
     this.mPaintStyle,
     this.mOldStyles,
     this.mOfficeSkins,
     this.mBonusSkins,
     this.iWXP,
     this.iOffXP,
     this.iOff2K,
     this.iOff2003,
     this.iDefault,
     this.siAppStatus,
     this.siApp,
     this.siLastDayStatus,
     this.siLastDay,
     this.bntReload,
     this.btnSelectedDateStart,
     this.btnSelectedDateEnd,
     this.btnPrint,
     this.btnExpToExcel,
     this.barButtonItem10,
     this.barStaticItem1,
     this.barStaticItem2,
     this.barStaticItem3,
     this.btnPreview,
     this.barStaticItem5});
     this.barManager.MaxItemId = 50;
     this.barManager.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.barManager.StatusBar = this.bar3;
     //
     // bar2
     //
     this.bar2.BarName = "Tools";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatLocation = new System.Drawing.Point(49, 157);
     this.bar2.FloatSize = new System.Drawing.Size(46, 29);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.bntReload),
     new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem10),
     new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem5),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnSelectedDateStart),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnSelectedDateEnd),
     new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnPreview),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnPrint),
     new DevExpress.XtraBars.LinkPersistInfo(this.btnExpToExcel),
     new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem3)});
     this.bar2.Text = "Tools";
     //
     // bntReload
     //
     this.bntReload.Caption = "ќбновить";
     this.bntReload.Glyph = global::BJ.MongoDB.ClientUI.Properties.Resources.reload_16;
     this.bntReload.Id = 34;
     this.bntReload.Name = "bntReload";
     this.bntReload.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bntReload.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bntReload_ItemClick);
     //
     // barStaticItem1
     //
     this.barStaticItem1.Id = 43;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barButtonItem10
     //
     this.barButtonItem10.Caption = "Ћог";
     this.barButtonItem10.Glyph = global::BJ.MongoDB.ClientUI.Properties.Resources.search_16;
     this.barButtonItem10.Id = 40;
     this.barButtonItem10.Name = "barButtonItem10";
     this.barButtonItem10.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem10.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem10_ItemClick);
     //
     // barStaticItem5
     //
     this.barStaticItem5.Id = 49;
     this.barStaticItem5.Name = "barStaticItem5";
     this.barStaticItem5.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // btnSelectedDateStart
     //
     this.btnSelectedDateStart.Caption = "00.00.0000";
     this.btnSelectedDateStart.Glyph = global::BJ.MongoDB.ClientUI.Properties.Resources.calendar_16;
     this.btnSelectedDateStart.Id = 36;
     this.btnSelectedDateStart.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.btnSelectedDateStart.ItemAppearance.Normal.Options.UseFont = true;
     this.btnSelectedDateStart.Name = "btnSelectedDateStart";
     this.btnSelectedDateStart.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.btnSelectedDateStart.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSelectedDateStart_ItemClick);
     //
     // btnSelectedDateEnd
     //
     this.btnSelectedDateEnd.Caption = "00.00.0000";
     this.btnSelectedDateEnd.Glyph = global::BJ.MongoDB.ClientUI.Properties.Resources.calendar_16;
     this.btnSelectedDateEnd.Id = 37;
     this.btnSelectedDateEnd.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.btnSelectedDateEnd.ItemAppearance.Normal.Options.UseFont = true;
     this.btnSelectedDateEnd.Name = "btnSelectedDateEnd";
     this.btnSelectedDateEnd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.btnSelectedDateEnd.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnSelectedDateEnd_ItemClick);
     //
     // barStaticItem2
     //
     this.barStaticItem2.Id = 44;
     this.barStaticItem2.Name = "barStaticItem2";
     this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // btnPreview
     //
     this.btnPreview.Caption = "ѕросмотр";
     this.btnPreview.Glyph = global::BJ.MongoDB.ClientUI.Properties.Resources.preview;
     this.btnPreview.Id = 48;
     this.btnPreview.Name = "btnPreview";
     this.btnPreview.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.btnPreview.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnPreview_ItemClick);
     //
     // btnPrint
     //
     this.btnPrint.Caption = "ѕечать";
     this.btnPrint.Glyph = global::BJ.MongoDB.ClientUI.Properties.Resources.print_16;
     this.btnPrint.Id = 38;
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.btnPrint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnPrint_ItemClick);
     //
     // btnExpToExcel
     //
     this.btnExpToExcel.Caption = "Excel";
     this.btnExpToExcel.Glyph = global::BJ.MongoDB.ClientUI.Properties.Resources.page_white_excel;
     this.btnExpToExcel.Id = 39;
     this.btnExpToExcel.Name = "btnExpToExcel";
     this.btnExpToExcel.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.btnExpToExcel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnExpToExcel_ItemClick);
     //
     // barStaticItem3
     //
     this.barStaticItem3.Id = 45;
     this.barStaticItem3.Name = "barStaticItem3";
     this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // bar3
     //
     this.bar3.BarName = "Status bar";
     this.bar3.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar3.DockCol = 0;
     this.bar3.DockRow = 0;
     this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.siLevelStatus),
     new DevExpress.XtraBars.LinkPersistInfo(this.siLevel),
     new DevExpress.XtraBars.LinkPersistInfo(this.siAppStatus),
     new DevExpress.XtraBars.LinkPersistInfo(this.siApp),
     new DevExpress.XtraBars.LinkPersistInfo(this.siLastDayStatus),
     new DevExpress.XtraBars.LinkPersistInfo(this.siLastDay)});
     this.bar3.OptionsBar.AllowQuickCustomization = false;
     this.bar3.OptionsBar.DrawDragBorder = false;
     this.bar3.OptionsBar.UseWholeRow = true;
     this.bar3.Text = "Status bar";
     //
     // siLevelStatus
     //
     this.siLevelStatus.Caption = "Level:";
     this.siLevelStatus.Id = 9;
     this.siLevelStatus.Name = "siLevelStatus";
     this.siLevelStatus.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // siLevel
     //
     this.siLevel.Caption = "...";
     this.siLevel.Id = 10;
     this.siLevel.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.siLevel.ItemAppearance.Normal.Options.UseFont = true;
     this.siLevel.Name = "siLevel";
     this.siLevel.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // siAppStatus
     //
     this.siAppStatus.Caption = "App:";
     this.siAppStatus.Id = 30;
     this.siAppStatus.Name = "siAppStatus";
     this.siAppStatus.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // siApp
     //
     this.siApp.Caption = "...";
     this.siApp.Id = 31;
     this.siApp.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.siApp.ItemAppearance.Normal.Options.UseFont = true;
     this.siApp.Name = "siApp";
     this.siApp.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // siLastDayStatus
     //
     this.siLastDayStatus.Caption = "Day:";
     this.siLastDayStatus.Id = 32;
     this.siLastDayStatus.Name = "siLastDayStatus";
     this.siLastDayStatus.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // siLastDay
     //
     this.siLastDay.Caption = "...";
     this.siLastDay.Id = 33;
     this.siLastDay.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.siLastDay.ItemAppearance.Normal.Options.UseFont = true;
     this.siLastDay.Name = "siLastDay";
     this.siLastDay.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // 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(1088, 31);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 525);
     this.barDockControlBottom.Size = new System.Drawing.Size(1088, 25);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 31);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 494);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1088, 31);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 494);
     //
     // mFile
     //
     this.mFile.Caption = "&File";
     this.mFile.Id = 0;
     this.mFile.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iNew),
     new DevExpress.XtraBars.LinkPersistInfo(this.iOpen),
     new DevExpress.XtraBars.LinkPersistInfo(this.iClose),
     new DevExpress.XtraBars.LinkPersistInfo(this.iSave),
     new DevExpress.XtraBars.LinkPersistInfo(this.iSaveAs),
     new DevExpress.XtraBars.LinkPersistInfo(this.iExit)});
     this.mFile.Name = "mFile";
     //
     // iNew
     //
     this.iNew.Caption = "&New";
     this.iNew.Id = 2;
     this.iNew.ImageIndex = 0;
     this.iNew.Name = "iNew";
     //
     // iOpen
     //
     this.iOpen.Caption = "&Open";
     this.iOpen.Id = 3;
     this.iOpen.ImageIndex = 1;
     this.iOpen.Name = "iOpen";
     //
     // iClose
     //
     this.iClose.Caption = "&Close";
     this.iClose.Id = 4;
     this.iClose.Name = "iClose";
     //
     // iSave
     //
     this.iSave.Caption = "&Save";
     this.iSave.Id = 5;
     this.iSave.ImageIndex = 2;
     this.iSave.Name = "iSave";
     //
     // iSaveAs
     //
     this.iSaveAs.Caption = "Save &As";
     this.iSaveAs.Id = 6;
     this.iSaveAs.ImageIndex = 3;
     this.iSaveAs.Name = "iSaveAs";
     //
     // iExit
     //
     this.iExit.Caption = "E&xit";
     this.iExit.Id = 7;
     this.iExit.Name = "iExit";
     //
     // mHelp
     //
     this.mHelp.Caption = "&Help";
     this.mHelp.Id = 1;
     this.mHelp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iAbout)});
     this.mHelp.Name = "mHelp";
     //
     // iAbout
     //
     this.iAbout.Caption = "&About";
     this.iAbout.Id = 8;
     this.iAbout.Name = "iAbout";
     //
     // mPaintStyle
     //
     this.mPaintStyle.Caption = "Paint Style";
     this.mPaintStyle.Id = 21;
     this.mPaintStyle.Name = "mPaintStyle";
     //
     // mOldStyles
     //
     this.mOldStyles.Caption = "Old Styles";
     this.mOldStyles.Id = 22;
     this.mOldStyles.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.iWXP),
     new DevExpress.XtraBars.LinkPersistInfo(this.iOffXP),
     new DevExpress.XtraBars.LinkPersistInfo(this.iOff2K),
     new DevExpress.XtraBars.LinkPersistInfo(this.iOff2003),
     new DevExpress.XtraBars.LinkPersistInfo(this.iDefault)});
     this.mOldStyles.Name = "mOldStyles";
     //
     // iWXP
     //
     this.iWXP.Caption = "WindowsXP";
     this.iWXP.Description = "WindowsXP";
     this.iWXP.Id = 25;
     this.iWXP.Name = "iWXP";
     //
     // iOffXP
     //
     this.iOffXP.Caption = "OfficeXP";
     this.iOffXP.Description = "OfficeXP";
     this.iOffXP.Id = 26;
     this.iOffXP.Name = "iOffXP";
     //
     // iOff2K
     //
     this.iOff2K.Caption = "Office2000";
     this.iOff2K.Description = "Office2000";
     this.iOff2K.Id = 27;
     this.iOff2K.Name = "iOff2K";
     //
     // iOff2003
     //
     this.iOff2003.Caption = "Office2003";
     this.iOff2003.Description = "Office2003";
     this.iOff2003.Id = 28;
     this.iOff2003.Name = "iOff2003";
     //
     // iDefault
     //
     this.iDefault.Caption = "Default";
     this.iDefault.Description = "Default";
     this.iDefault.Id = 29;
     this.iDefault.Name = "iDefault";
     //
     // mOfficeSkins
     //
     this.mOfficeSkins.Caption = "Office Skins";
     this.mOfficeSkins.Id = 23;
     this.mOfficeSkins.Name = "mOfficeSkins";
     //
     // mBonusSkins
     //
     this.mBonusSkins.Caption = "Bonus Skins";
     this.mBonusSkins.Id = 24;
     this.mBonusSkins.Name = "mBonusSkins";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // gridControl_Logs
     //
     this.gridControl_Logs.DataSource = this.logItemBindingSource;
     this.gridControl_Logs.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl_Logs.Location = new System.Drawing.Point(0, 31);
     this.gridControl_Logs.MainView = this.gridView_Logs;
     this.gridControl_Logs.Name = "gridControl_Logs";
     this.gridControl_Logs.Size = new System.Drawing.Size(1088, 494);
     this.gridControl_Logs.TabIndex = 5;
     this.gridControl_Logs.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView_Logs});
     this.gridControl_Logs.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.gridControl_Logs_KeyPress);
     //
     // logItemBindingSource
     //
     this.logItemBindingSource.DataSource = typeof(BJ.MongoDB.Logger.LogItem);
     //
     // gridView_Logs
     //
     this.gridView_Logs.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.gridView_Logs.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colId,
     this.coltimestamp,
     this.collevel,
     this.colthread,
     this.coluserName,
     this.colmessage,
     this.colloggerName,
     this.coldomain,
     this.colmachineName,
     this.colfileName,
     this.colmethod,
     this.collineNumber,
     this.colclassName});
     this.gridView_Logs.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.MistyRose;
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Column = this.collevel;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
     styleFormatCondition1.Value1 = "ERROR";
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.Tomato;
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Column = this.collevel;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
     styleFormatCondition2.Value1 = "FATAL";
     styleFormatCondition3.Appearance.BackColor = System.Drawing.Color.LemonChiffon;
     styleFormatCondition3.Appearance.Options.UseBackColor = true;
     styleFormatCondition3.ApplyToRow = true;
     styleFormatCondition3.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
     styleFormatCondition3.Value1 = "WARN";
     this.gridView_Logs.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1,
     styleFormatCondition2,
     styleFormatCondition3});
     this.gridView_Logs.GridControl = this.gridControl_Logs;
     this.gridView_Logs.Name = "gridView_Logs";
     this.gridView_Logs.OptionsBehavior.Editable = false;
     this.gridView_Logs.OptionsBehavior.ReadOnly = true;
     this.gridView_Logs.OptionsView.ShowAutoFilterRow = true;
     this.gridView_Logs.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.coltimestamp, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gridView_Logs.DoubleClick += new System.EventHandler(this.gridView_Logs_DoubleClick);
     //
     // colId
     //
     this.colId.FieldName = "Id";
     this.colId.Name = "colId";
     //
     // coltimestamp
     //
     this.coltimestamp.Caption = "DateTime";
     this.coltimestamp.DisplayFormat.FormatString = "dd.MM.yyyy H:mm:ss  FFF";
     this.coltimestamp.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.coltimestamp.FieldName = "timestamp.AsLocalTime";
     this.coltimestamp.Name = "coltimestamp";
     this.coltimestamp.OptionsColumn.FixedWidth = true;
     this.coltimestamp.SortMode = DevExpress.XtraGrid.ColumnSortMode.Custom;
     this.coltimestamp.Visible = true;
     this.coltimestamp.VisibleIndex = 0;
     this.coltimestamp.Width = 135;
     //
     // colthread
     //
     this.colthread.Caption = "Thread";
     this.colthread.FieldName = "thread";
     this.colthread.Name = "colthread";
     this.colthread.OptionsColumn.FixedWidth = true;
     this.colthread.Visible = true;
     this.colthread.VisibleIndex = 3;
     this.colthread.Width = 44;
     //
     // coluserName
     //
     this.coluserName.Caption = "User";
     this.coluserName.FieldName = "userName";
     this.coluserName.Name = "coluserName";
     this.coluserName.OptionsColumn.FixedWidth = true;
     this.coluserName.Visible = true;
     this.coluserName.VisibleIndex = 6;
     this.coluserName.Width = 105;
     //
     // colmessage
     //
     this.colmessage.Caption = "Message";
     this.colmessage.FieldName = "message";
     this.colmessage.Name = "colmessage";
     this.colmessage.Visible = true;
     this.colmessage.VisibleIndex = 4;
     this.colmessage.Width = 123;
     //
     // colloggerName
     //
     this.colloggerName.Caption = "Logger";
     this.colloggerName.FieldName = "loggerName";
     this.colloggerName.Name = "colloggerName";
     this.colloggerName.OptionsColumn.FixedWidth = true;
     this.colloggerName.Visible = true;
     this.colloggerName.VisibleIndex = 5;
     this.colloggerName.Width = 63;
     //
     // coldomain
     //
     this.coldomain.Caption = "App";
     this.coldomain.FieldName = "domain";
     this.coldomain.Name = "coldomain";
     this.coldomain.OptionsColumn.FixedWidth = true;
     this.coldomain.Visible = true;
     this.coldomain.VisibleIndex = 1;
     this.coldomain.Width = 132;
     //
     // colmachineName
     //
     this.colmachineName.Caption = "Machine";
     this.colmachineName.FieldName = "machineName";
     this.colmachineName.Name = "colmachineName";
     this.colmachineName.OptionsColumn.FixedWidth = true;
     this.colmachineName.Visible = true;
     this.colmachineName.VisibleIndex = 7;
     this.colmachineName.Width = 87;
     //
     // colfileName
     //
     this.colfileName.Caption = "File";
     this.colfileName.FieldName = "fileName";
     this.colfileName.Name = "colfileName";
     this.colfileName.OptionsColumn.FixedWidth = true;
     this.colfileName.Visible = true;
     this.colfileName.VisibleIndex = 11;
     this.colfileName.Width = 115;
     //
     // colmethod
     //
     this.colmethod.Caption = "Method";
     this.colmethod.FieldName = "method";
     this.colmethod.Name = "colmethod";
     this.colmethod.OptionsColumn.FixedWidth = true;
     this.colmethod.Visible = true;
     this.colmethod.VisibleIndex = 9;
     this.colmethod.Width = 76;
     //
     // collineNumber
     //
     this.collineNumber.Caption = "Line";
     this.collineNumber.FieldName = "lineNumber";
     this.collineNumber.Name = "collineNumber";
     this.collineNumber.OptionsColumn.FixedWidth = true;
     this.collineNumber.Visible = true;
     this.collineNumber.VisibleIndex = 10;
     this.collineNumber.Width = 52;
     //
     // colclassName
     //
     this.colclassName.Caption = "Class";
     this.colclassName.FieldName = "className";
     this.colclassName.Name = "colclassName";
     this.colclassName.OptionsColumn.FixedWidth = true;
     this.colclassName.Visible = true;
     this.colclassName.VisibleIndex = 8;
     this.colclassName.Width = 89;
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "ќбновить";
     this.barButtonItem2.Id = 34;
     this.barButtonItem2.ImageIndex = 3;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "ќбновить";
     this.barButtonItem3.Id = 34;
     this.barButtonItem3.ImageIndex = 3;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "ќбновить";
     this.barButtonItem4.Id = 34;
     this.barButtonItem4.ImageIndex = 3;
     this.barButtonItem4.Name = "barButtonItem4";
     this.barButtonItem4.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "ќбновить";
     this.barButtonItem5.Id = 34;
     this.barButtonItem5.ImageIndex = 3;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "ѕечать";
     this.barButtonItem1.Glyph = global::BJ.MongoDB.ClientUI.Properties.Resources.print_16;
     this.barButtonItem1.Id = 38;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "ѕечать";
     this.barButtonItem6.Glyph = global::BJ.MongoDB.ClientUI.Properties.Resources.print_16;
     this.barButtonItem6.Id = 38;
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "ѕечать";
     this.barButtonItem7.Glyph = global::BJ.MongoDB.ClientUI.Properties.Resources.print_16;
     this.barButtonItem7.Id = 38;
     this.barButtonItem7.Name = "barButtonItem7";
     this.barButtonItem7.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barStaticItem4
     //
     this.barStaticItem4.Id = 44;
     this.barStaticItem4.Name = "barStaticItem4";
     this.barStaticItem4.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // frmLogs
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1088, 550);
     this.Controls.Add(this.gridControl_Logs);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmLogs";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Logs Viewer";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmLogs_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl_Logs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.logItemBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView_Logs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem)).EndInit();
     this.ResumeLayout(false);
 }
Example #45
0
        public void loadcnh(CheckEdit cechd, string active, string role, DevExpress.XtraGrid.GridControl gridControl1, GridView gridView1, TextEdit txtsct, ComboBoxEdit cbldt, LookUpEdit ledv, DateEdit denct, DateEdit denht,
                            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit1, DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit tkco, DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit rpkh,
                            DevExpress.XtraEditors.Repository.RepositoryItemDateEdit nphhd, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit sotien, Frm_phieuthu F, LookUpEdit ledt, TextEdit txtnn, TextEdit txtldn, TextEdit txtctg,
                            ToolStripButton tsbtsua, ToolStripButton tsbtxoa, ToolStripButton tsbtcat, ToolStripButton tsbtboghi, ToolStripButton tsbtghiso, ToolStripButton tsbtnap, ToolStripButton tsbtin, string ngaychungtu, string tsbt, ComboBoxEdit cbthue, TextEdit txthtt, ToolStripSplitButton tsbttruoc, ToolStripSplitButton tsbtsau, DataTable khach, string userid, DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit rpmanganh, DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit rpmachiphi, SearchLookUpEdit danhmuc)
        {
            DataTable  dt  = new DataTable();
            phieuchitm ctm = new phieuchitm();

            ctm.loadstart(cechd, gridControl1, gridView1, cbldt, ledv, denct, denht, repositoryItemLookUpEdit1, tkco, rpkh, nphhd, sotien, ledt, tsbtsua, tsbtxoa, tsbtcat, tsbtboghi, tsbtghiso, tsbtnap, tsbtin, ngaychungtu, dt, tsbt, cbthue, khach, userid, rpmanganh, rpmachiphi, danhmuc);
            if (active == "1")
            {
                DataTable da = new DataTable();
                da = gen.GetTable("select  a.Description,DebitAccount,CreditAccount,Amount,AccountingObjectCode,InvDate,InvSeries,InvNo,CustomField5,CustomField4 from BATransferDetail a,AccountingObject b where a.AccountingObjectID=b.AccountingObjectID and RefID='" + role + "' order by SortOrder");
                for (int i = 0; i < da.Rows.Count; i++)
                {
                    DataRow dr = dt.NewRow();
                    dr[0] = da.Rows[i][1].ToString();
                    dr[1] = da.Rows[i][2].ToString();
                    if (da.Rows[i][5].ToString() != "")
                    {
                        dr[2]         = DateTime.Parse(da.Rows[i][5].ToString());
                        cechd.Checked = true;
                    }
                    dr[3] = da.Rows[i][7].ToString();
                    dr[4] = da.Rows[i][6].ToString();
                    dr[5] = da.Rows[i][8].ToString();
                    dr[6] = da.Rows[i][3].ToString();
                    dr[7] = da.Rows[i][4].ToString();
                    dr[8] = da.Rows[i][0].ToString();
                    dr[9] = da.Rows[i][9].ToString();
                    dt.Rows.Add(dr);
                }
                gridControl1.DataSource = dt;
                tsbtcat.Enabled         = false;

                F.Text = "Xem phiếu chi ngân hàng";
                da     = gen.GetTable("select AccountingObjectCode,a.Contactname,JournalMemo,DocumentIncluded,RefDate,PostedDate,RefNo,StockCode,Posted,AccountingObjectType,Cancel,Tax,ExDate,a.RefOrder  from BATransfer a, AccountingObject b,Stock c where a.AccountingObjectID=b.AccountingObjectID and a.StockID=c.StockID and RefID='" + role + "'");
                try
                {
                    cbldt.SelectedIndex = Int32.Parse(da.Rows[0][9].ToString());
                }
                catch { }
                try
                {
                    txthtt.EditValue = Double.Parse(da.Rows[0][12].ToString());
                }
                catch { txthtt.EditValue = 0; }
                ledv.EditValue    = da.Rows[0][7].ToString();
                ledt.EditValue    = da.Rows[0][0].ToString();
                txtnn.Text        = da.Rows[0][1].ToString();
                txtldn.Text       = da.Rows[0][2].ToString();
                txtctg.Text       = da.Rows[0][3].ToString();
                denct.EditValue   = DateTime.Parse(da.Rows[0][4].ToString());
                denht.EditValue   = DateTime.Parse(da.Rows[0][5].ToString());
                txtsct.Text       = da.Rows[0][6].ToString();
                cbthue.EditValue  = da.Rows[0][11].ToString();
                danhmuc.EditValue = da.Rows[0][13].ToString();
                if (da.Rows[0][8].ToString() == "True")
                {
                    tsbtghiso.Visible = false;
                    tsbtboghi.Visible = true;
                    tsbtsua.Enabled   = false;
                }
                else
                {
                    tsbtboghi.Visible = false;
                    tsbtghiso.Visible = true;
                }
                if (da.Rows[0][10].ToString() == "True")
                {
                    tsbtboghi.Enabled = false;
                    tsbtghiso.Enabled = false;
                }
                checktruocsau(tsbttruoc, tsbtsau, txtsct.Text, ngaychungtu, userid);
            }
            else
            {
                try
                {
                    F.Text           = "Thêm phiếu chi ngân hàng";
                    txthtt.EditValue = 0;
                    themsct(ngaychungtu, txtsct, tsbttruoc, tsbtsau, userid);

                    denct.EditValue = DateTime.Parse(ngaychungtu);
                    denht.EditValue = DateTime.Parse(ngaychungtu);
                    cechd.Checked   = true;
                    cechd.Checked   = false;
                }
                catch
                {
                    XtraMessageBox.Show("Vui lòng kiểm tra lại < Ngày chứng từ >.", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    F.Close();
                }
            }
        }
 /// <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(frmDanhBaQL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar2 = new DevExpress.XtraBars.Bar();
     this.barButtonItemThemNhom = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXoaNhom = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemSuaNhom = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDoiTenNhom = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemThemNguoiLL = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXoaNguoiLL = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemSuaNguoiLL = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemLuu = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemKhongLuu = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemIn = new DevExpress.XtraBars.BarButtonItem();
     this.standaloneBarDockControl1 = new DevExpress.XtraBars.StandaloneBarDockControl();
     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.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.gridControlThongtin = new DevExpress.XtraGrid.GridControl();
     this.gridViewThongtin = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_diachi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_dienthoai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_cmnd = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_fax = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_nguoidaidien = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_chucvu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_bophan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_loaidanhba = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_taikhoan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_email = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.navBarControl1 = new DevExpress.XtraNavBar.NavBarControl();
     this.navBarGroup1 = new DevExpress.XtraNavBar.NavBarGroup();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongtin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongtin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar2});
     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.DockControls.Add(this.standaloneBarDockControl1);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemThemNhom,
     this.barButtonItemXoaNhom,
     this.barButtonItemDoiTenNhom,
     this.barButtonItemThemNguoiLL,
     this.barButtonItemXoaNguoiLL,
     this.barButtonItemSuaNguoiLL,
     this.barButtonItemIn,
     this.barButtonItemLuu,
     this.barButtonItemKhongLuu,
     this.barButtonItemSuaNhom});
     this.barManager1.MaxItemId = 12;
     //
     // bar2
     //
     this.bar2.BarName = "Main menu";
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
     this.bar2.FloatLocation = new System.Drawing.Point(60, 179);
     this.bar2.FloatSize = new System.Drawing.Size(675, 24);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemThemNhom, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemXoaNhom, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSuaNhom),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemDoiTenNhom, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemThemNguoiLL, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemXoaNguoiLL, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemSuaNguoiLL, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemLuu, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemKhongLuu, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItemIn, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph)});
     this.bar2.OptionsBar.AllowQuickCustomization = false;
     this.bar2.OptionsBar.DrawDragBorder = false;
     this.bar2.OptionsBar.RotateWhenVertical = false;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.StandaloneBarDockControl = this.standaloneBarDockControl1;
     this.bar2.Text = "Main menu";
     //
     // barButtonItemThemNhom
     //
     this.barButtonItemThemNhom.Caption = "&Thêm nhóm";
     this.barButtonItemThemNhom.Id = 0;
     this.barButtonItemThemNhom.Name = "barButtonItemThemNhom";
     this.barButtonItemThemNhom.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemThemNhom_ItemClick);
     //
     // barButtonItemXoaNhom
     //
     this.barButtonItemXoaNhom.Caption = "&Xóa nhóm";
     this.barButtonItemXoaNhom.Id = 1;
     this.barButtonItemXoaNhom.Name = "barButtonItemXoaNhom";
     this.barButtonItemXoaNhom.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemXoaNhom_ItemClick);
     //
     // barButtonItemSuaNhom
     //
     this.barButtonItemSuaNhom.Caption = "&Sửa nhóm";
     this.barButtonItemSuaNhom.Id = 11;
     this.barButtonItemSuaNhom.Name = "barButtonItemSuaNhom";
     this.barButtonItemSuaNhom.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemSuaNhom.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemSuaNhom_ItemClick);
     //
     // barButtonItemDoiTenNhom
     //
     this.barButtonItemDoiTenNhom.Caption = "Đổi tên &nhóm";
     this.barButtonItemDoiTenNhom.Id = 2;
     this.barButtonItemDoiTenNhom.Name = "barButtonItemDoiTenNhom";
     this.barButtonItemDoiTenNhom.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemDoiTenNhom_ItemClick);
     //
     // barButtonItemThemNguoiLL
     //
     this.barButtonItemThemNguoiLL.Caption = "T&hêm người liên lạc";
     this.barButtonItemThemNguoiLL.Id = 3;
     this.barButtonItemThemNguoiLL.Name = "barButtonItemThemNguoiLL";
     this.barButtonItemThemNguoiLL.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemThemNguoiLL_ItemClick);
     //
     // barButtonItemXoaNguoiLL
     //
     this.barButtonItemXoaNguoiLL.Caption = "Xó&a người liên lạc";
     this.barButtonItemXoaNguoiLL.Id = 4;
     this.barButtonItemXoaNguoiLL.Name = "barButtonItemXoaNguoiLL";
     this.barButtonItemXoaNguoiLL.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemXoaNguoiLL_ItemClick);
     //
     // barButtonItemSuaNguoiLL
     //
     this.barButtonItemSuaNguoiLL.Caption = "Sửa n&gười liên lạc";
     this.barButtonItemSuaNguoiLL.Id = 5;
     this.barButtonItemSuaNguoiLL.Name = "barButtonItemSuaNguoiLL";
     this.barButtonItemSuaNguoiLL.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemSuaNguoiLL_ItemClick);
     //
     // barButtonItemLuu
     //
     this.barButtonItemLuu.Caption = "&Lưu";
     this.barButtonItemLuu.Id = 9;
     this.barButtonItemLuu.Name = "barButtonItemLuu";
     this.barButtonItemLuu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemLuu_ItemClick);
     //
     // barButtonItemKhongLuu
     //
     this.barButtonItemKhongLuu.Caption = "&Không Lưu";
     this.barButtonItemKhongLuu.Id = 10;
     this.barButtonItemKhongLuu.Name = "barButtonItemKhongLuu";
     this.barButtonItemKhongLuu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemKhongLuu_ItemClick);
     //
     // barButtonItemIn
     //
     this.barButtonItemIn.Caption = "In";
     this.barButtonItemIn.Id = 7;
     this.barButtonItemIn.Name = "barButtonItemIn";
     //
     // standaloneBarDockControl1
     //
     this.standaloneBarDockControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.standaloneBarDockControl1.Location = new System.Drawing.Point(0, 0);
     this.standaloneBarDockControl1.Name = "standaloneBarDockControl1";
     this.standaloneBarDockControl1.Size = new System.Drawing.Size(804, 30);
     this.standaloneBarDockControl1.Text = "standaloneBarDockControl1";
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "customer_size.gif");
     //
     // gridControlThongtin
     //
     this.gridControlThongtin.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlThongtin.BackgroundImage")));
     this.gridControlThongtin.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlThongtin.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.Append.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.First.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.Last.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.Next.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.NextPage.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.Prev.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.PrevPage.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlThongtin.EmbeddedNavigator.TextStringFormat = "Tổng số mẩu tin: {1}";
     this.gridControlThongtin.Location = new System.Drawing.Point(2, 2);
     this.gridControlThongtin.MainView = this.gridViewThongtin;
     this.gridControlThongtin.Name = "gridControlThongtin";
     this.gridControlThongtin.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.gridControlThongtin.Size = new System.Drawing.Size(598, 479);
     this.gridControlThongtin.TabIndex = 5;
     this.gridControlThongtin.UseEmbeddedNavigator = true;
     this.gridControlThongtin.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewThongtin});
     //
     // gridViewThongtin
     //
     this.gridViewThongtin.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewThongtin.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewThongtin.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.ID,
     this.cot_name,
     this.cot_diachi,
     this.cot_dienthoai,
     this.cot_cmnd,
     this.cot_fax,
     this.cot_nguoidaidien,
     this.cot_chucvu,
     this.cot_bophan,
     this.cot_loaidanhba,
     this.cot_taikhoan,
     this.cot_email});
     this.gridViewThongtin.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridViewThongtin.GridControl = this.gridControlThongtin;
     this.gridViewThongtin.GroupPanelText = "Chi tiết danh bạ";
     this.gridViewThongtin.IndicatorWidth = 40;
     this.gridViewThongtin.Name = "gridViewThongtin";
     this.gridViewThongtin.OptionsBehavior.Editable = false;
     this.gridViewThongtin.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewThongtin.OptionsLayout.Columns.StoreAllOptions = true;
     this.gridViewThongtin.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewThongtin.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewThongtin.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewThongtin.OptionsView.ColumnAutoWidth = false;
     this.gridViewThongtin.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewThongtin.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewThongtin.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewThongtin.OptionsView.ShowDetailButtons = false;
     this.gridViewThongtin.OptionsView.ShowGroupedColumns = true;
     this.gridViewThongtin.OptionsView.ShowGroupPanel = false;
     this.gridViewThongtin.OptionsView.ShowViewCaption = true;
     this.gridViewThongtin.ViewCaption = "DANH BẠ ĐỊA CHỈ";
     this.gridViewThongtin.DoubleClick += new System.EventHandler(this.gridViewThongtin_DoubleClick);
     this.gridViewThongtin.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewThongtin_ValidateRow);
     //
     // ID
     //
     this.ID.Caption = "ID";
     this.ID.Name = "ID";
     this.ID.Width = 23;
     //
     // cot_name
     //
     this.cot_name.Caption = "Tên";
     this.cot_name.Name = "cot_name";
     this.cot_name.Visible = true;
     this.cot_name.VisibleIndex = 0;
     this.cot_name.Width = 30;
     //
     // cot_diachi
     //
     this.cot_diachi.Caption = "Địa chỉ";
     this.cot_diachi.Name = "cot_diachi";
     this.cot_diachi.Visible = true;
     this.cot_diachi.VisibleIndex = 3;
     this.cot_diachi.Width = 44;
     //
     // cot_dienthoai
     //
     this.cot_dienthoai.Caption = "Điện thoại";
     this.cot_dienthoai.Name = "cot_dienthoai";
     this.cot_dienthoai.Visible = true;
     this.cot_dienthoai.VisibleIndex = 7;
     this.cot_dienthoai.Width = 61;
     //
     // cot_cmnd
     //
     this.cot_cmnd.Caption = "CMND";
     this.cot_cmnd.Name = "cot_cmnd";
     this.cot_cmnd.Visible = true;
     this.cot_cmnd.VisibleIndex = 6;
     this.cot_cmnd.Width = 41;
     //
     // cot_fax
     //
     this.cot_fax.Caption = "FAX";
     this.cot_fax.Name = "cot_fax";
     this.cot_fax.Visible = true;
     this.cot_fax.VisibleIndex = 8;
     this.cot_fax.Width = 31;
     //
     // cot_nguoidaidien
     //
     this.cot_nguoidaidien.Caption = "Người đại diện";
     this.cot_nguoidaidien.Name = "cot_nguoidaidien";
     this.cot_nguoidaidien.Visible = true;
     this.cot_nguoidaidien.VisibleIndex = 5;
     this.cot_nguoidaidien.Width = 80;
     //
     // cot_chucvu
     //
     this.cot_chucvu.Caption = "Chức vụ";
     this.cot_chucvu.Name = "cot_chucvu";
     this.cot_chucvu.Visible = true;
     this.cot_chucvu.VisibleIndex = 2;
     this.cot_chucvu.Width = 52;
     //
     // cot_bophan
     //
     this.cot_bophan.Caption = "Bộ phận";
     this.cot_bophan.Name = "cot_bophan";
     this.cot_bophan.Visible = true;
     this.cot_bophan.VisibleIndex = 1;
     this.cot_bophan.Width = 51;
     //
     // cot_loaidanhba
     //
     this.cot_loaidanhba.Caption = "Loại danh bạ";
     this.cot_loaidanhba.Name = "cot_loaidanhba";
     this.cot_loaidanhba.Visible = true;
     this.cot_loaidanhba.VisibleIndex = 10;
     this.cot_loaidanhba.Width = 73;
     //
     // cot_taikhoan
     //
     this.cot_taikhoan.Caption = "Tài Khoản";
     this.cot_taikhoan.Name = "cot_taikhoan";
     this.cot_taikhoan.Visible = true;
     this.cot_taikhoan.VisibleIndex = 9;
     this.cot_taikhoan.Width = 59;
     //
     // cot_email
     //
     this.cot_email.Caption = "Email";
     this.cot_email.Name = "cot_email";
     this.cot_email.Visible = true;
     this.cot_email.VisibleIndex = 4;
     this.cot_email.Width = 36;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Mask.IgnoreMaskBlank = false;
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.repositoryItemTextEdit1.Mask.SaveLiteral = false;
     this.repositoryItemTextEdit1.Mask.ShowPlaceHolders = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // navBarControl1
     //
     this.navBarControl1.ActiveGroup = this.navBarGroup1;
     this.navBarControl1.AllowSelectedLink = true;
     this.navBarControl1.ContentButtonHint = null;
     this.navBarControl1.Dock = System.Windows.Forms.DockStyle.Left;
     this.navBarControl1.Groups.AddRange(new DevExpress.XtraNavBar.NavBarGroup[] {
     this.navBarGroup1});
     this.navBarControl1.Location = new System.Drawing.Point(0, 30);
     this.navBarControl1.Name = "navBarControl1";
     this.navBarControl1.OptionsNavPane.ExpandedWidth = 140;
     this.navBarControl1.OptionsNavPane.ShowOverflowPanel = false;
     this.navBarControl1.OptionsNavPane.ShowSplitter = false;
     this.navBarControl1.Size = new System.Drawing.Size(196, 483);
     this.navBarControl1.TabIndex = 6;
     this.navBarControl1.Text = "navBarControl1";
     this.navBarControl1.View = new DevExpress.XtraNavBar.ViewInfo.SkinNavigationPaneViewInfoRegistrator();
     this.navBarControl1.SelectedLinkChanged += new DevExpress.XtraNavBar.ViewInfo.NavBarSelectedLinkChangedEventHandler(this.navBarControl1_SelectedLinkChanged);
     //
     // navBarGroup1
     //
     this.navBarGroup1.Caption = "Nhóm danh bạ";
     this.navBarGroup1.Expanded = true;
     this.navBarGroup1.GroupStyle = DevExpress.XtraNavBar.NavBarGroupStyle.LargeIconsText;
     this.navBarGroup1.Name = "navBarGroup1";
     this.navBarGroup1.NavigationPaneVisible = false;
     //
     // splitterControl1
     //
     this.splitterControl1.Location = new System.Drawing.Point(196, 30);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(6, 483);
     this.splitterControl1.TabIndex = 13;
     this.splitterControl1.TabStop = false;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.gridControlThongtin);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(202, 30);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(602, 483);
     this.panelControl1.TabIndex = 15;
     //
     // frmDanhBaQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(804, 513);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.splitterControl1);
     this.Controls.Add(this.navBarControl1);
     this.Controls.Add(this.standaloneBarDockControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.KeyPreview = true;
     this.Name = "frmDanhBaQL";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Danh bạ địa chỉ";
     this.Load += new System.EventHandler(this.frmDanhba_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlThongtin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewThongtin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.navBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     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_lista_precios));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem11 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem12 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem13 = new DevExpress.Utils.ToolTipTitleItem();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = 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();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.articid = new System.Windows.Forms.TextBox();
     this.articname = new System.Windows.Forms.TextBox();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.label11 = new System.Windows.Forms.Label();
     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_editar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_cancelar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_grabar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_eliminar = new DevExpress.XtraBars.BarButtonItem();
     this.btn_imprimir = new DevExpress.XtraBars.BarButtonItem();
     this.btn_log = new DevExpress.XtraBars.BarButtonItem();
     this.btn_clave = 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.pnl_01 = new DevExpress.XtraEditors.PanelControl();
     this.fechdocfin = new System.Windows.Forms.DateTimePicker();
     this.visible = new DevExpress.XtraEditors.CheckEdit();
     this.fechdocini = new System.Windows.Forms.DateTimePicker();
     this.tcamb = new System.Windows.Forms.TextBox();
     this.incigv = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.ctactelistname = new System.Windows.Forms.TextBox();
     this.ctactelist = new System.Windows.Forms.TextBox();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.tiendalistname = new System.Windows.Forms.TextBox();
     this.tiendalist = new System.Windows.Forms.TextBox();
     this.listaprecid = new System.Windows.Forms.TextBox();
     this.listaprecname = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.pnlcontroldet = new DevExpress.XtraEditors.PanelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.ExportCatalog = new DevExpress.XtraEditors.SimpleButton();
     this.btn_importar = new System.Windows.Forms.Button();
     this.btn_exportar = new System.Windows.Forms.Button();
     this.btn_del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_save = new DevExpress.XtraEditors.SimpleButton();
     this.precunit2 = new System.Windows.Forms.TextBox();
     this.precunit1 = new System.Windows.Forms.TextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.dgb_listaPrecios = new System.Windows.Forms.DataGridView();
     this.@__listaprecid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.codigo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.denominacion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._precunit1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._precunit2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.Mdi_dgv_precioslist = new DevExpress.XtraGrid.GridControl();
     this.dgv_precioslist = new DevExpress.XtraGrid.Views.Grid.GridView();
     this._listaprecid = new DevExpress.XtraGrid.Columns.GridColumn();
     this._listaprecname = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechaini = new DevExpress.XtraGrid.Columns.GridColumn();
     this._fechafin = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tiendalist = new DevExpress.XtraGrid.Columns.GridColumn();
     this._ctactelist = new DevExpress.XtraGrid.Columns.GridColumn();
     this._tcamb = new DevExpress.XtraGrid.Columns.GridColumn();
     this._incigv = new DevExpress.XtraGrid.Columns.GridColumn();
     this._visible = new DevExpress.XtraGrid.Columns.GridColumn();
     this._usuar = new DevExpress.XtraGrid.Columns.GridColumn();
     this._feact = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).BeginInit();
     this.pnl_01.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.visible.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.incigv.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).BeginInit();
     this.pnlcontroldet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_listaPrecios)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_precioslist)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_precioslist)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     this.SuspendLayout();
     //
     // articid
     //
     this.articid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.articid.Location = new System.Drawing.Point(76, 4);
     this.articid.MaxLength = 10;
     this.articid.Name = "articid";
     this.articid.Size = new System.Drawing.Size(100, 20);
     this.articid.TabIndex = 11;
     this.articid.Text = "0000000000000";
     this.articid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.articid_KeyDown);
     //
     // articname
     //
     this.articname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.articname.Location = new System.Drawing.Point(177, 4);
     this.articname.Name = "articname";
     this.articname.Size = new System.Drawing.Size(300, 21);
     this.articname.TabIndex = 12;
     //
     // panelControl2
     //
     this.panelControl2.Appearance.BackColor = System.Drawing.Color.Teal;
     this.panelControl2.Appearance.ForeColor = System.Drawing.Color.White;
     this.panelControl2.Appearance.Options.UseBackColor = true;
     this.panelControl2.Appearance.Options.UseForeColor = true;
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.label11);
     this.panelControl2.Location = new System.Drawing.Point(-12, 26);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(990, 26);
     this.panelControl2.TabIndex = 113;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(408, 2);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(158, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "Lista de Precios";
     //
     // 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_editar,
     this.btn_grabar,
     this.btn_cancelar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnLoad,
     this.btn_log,
     this.btnInicio,
     this.btnAnterior,
     this.btnSiguiente,
     this.btnUltimo,
     this.btn_salir,
     this.btn_clave});
     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_editar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_cancelar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_grabar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_eliminar),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_imprimir),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_log),
     new DevExpress.XtraBars.LinkPersistInfo(this.btn_clave),
     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";
     superToolTip1.Items.Add(toolTipTitleItem1);
     this.btn_nuevo.SuperTip = superToolTip1;
     this.btn_nuevo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_nuevo_ItemClick);
     //
     // btn_editar
     //
     this.btn_editar.Caption = "btnEdit";
     this.btn_editar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.Glyph")));
     this.btn_editar.Id = 3;
     this.btn_editar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_editar.LargeGlyph")));
     this.btn_editar.Name = "btn_editar";
     toolTipTitleItem2.Text = "Editar";
     superToolTip2.Items.Add(toolTipTitleItem2);
     this.btn_editar.SuperTip = superToolTip2;
     this.btn_editar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_editar_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";
     toolTipTitleItem3.Text = "Cancelar";
     superToolTip3.Items.Add(toolTipTitleItem3);
     this.btn_cancelar.SuperTip = superToolTip3;
     this.btn_cancelar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_cancelar_ItemClick);
     //
     // btn_grabar
     //
     this.btn_grabar.Caption = "btnSave";
     this.btn_grabar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Glyph")));
     this.btn_grabar.Id = 4;
     this.btn_grabar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_grabar.LargeGlyph")));
     this.btn_grabar.Name = "btn_grabar";
     toolTipTitleItem4.Text = "Guardar";
     superToolTip4.Items.Add(toolTipTitleItem4);
     this.btn_grabar.SuperTip = superToolTip4;
     this.btn_grabar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_grabar_ItemClick);
     //
     // btn_eliminar
     //
     this.btn_eliminar.Caption = "btnDelete";
     this.btn_eliminar.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Glyph")));
     this.btn_eliminar.Id = 6;
     this.btn_eliminar.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.LargeGlyph")));
     this.btn_eliminar.Name = "btn_eliminar";
     toolTipTitleItem5.Text = "Elimar Registro";
     superToolTip5.Items.Add(toolTipTitleItem5);
     this.btn_eliminar.SuperTip = superToolTip5;
     this.btn_eliminar.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_eliminar_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";
     toolTipTitleItem6.Text = "Imprimir";
     superToolTip6.Items.Add(toolTipTitleItem6);
     this.btn_imprimir.SuperTip = superToolTip6;
     //
     // btn_log
     //
     this.btn_log.Caption = "btnLog";
     this.btn_log.Glyph = ((System.Drawing.Image)(resources.GetObject("btn_log.Glyph")));
     this.btn_log.Id = 9;
     this.btn_log.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("btn_log.LargeGlyph")));
     this.btn_log.Name = "btn_log";
     toolTipTitleItem7.Text = "Log";
     superToolTip7.Items.Add(toolTipTitleItem7);
     this.btn_log.SuperTip = superToolTip7;
     //
     // btn_clave
     //
     this.btn_clave.Caption = "btnLock";
     this.btn_clave.Glyph = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.Id = 15;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btn_clave_ItemClick);
     //
     // 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";
     toolTipTitleItem8.Text = "Salir";
     superToolTip8.Items.Add(toolTipTitleItem8);
     this.btn_salir.SuperTip = superToolTip8;
     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(978, 28);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 440);
     this.barDockControlBottom.Size = new System.Drawing.Size(978, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 28);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 412);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(978, 28);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 412);
     //
     // 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";
     toolTipTitleItem9.Text = "Actualizar";
     superToolTip9.Items.Add(toolTipTitleItem9);
     this.btnLoad.SuperTip = superToolTip9;
     //
     // 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";
     toolTipTitleItem10.Text = "Primer Registro";
     superToolTip10.Items.Add(toolTipTitleItem10);
     this.btnInicio.SuperTip = superToolTip10;
     //
     // 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";
     toolTipTitleItem11.Text = "Anterior Registro";
     superToolTip11.Items.Add(toolTipTitleItem11);
     this.btnAnterior.SuperTip = superToolTip11;
     //
     // 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";
     toolTipTitleItem12.Text = "Siguiente Registro";
     superToolTip12.Items.Add(toolTipTitleItem12);
     this.btnSiguiente.SuperTip = superToolTip12;
     //
     // 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";
     toolTipTitleItem13.Text = "Ultimo Registro";
     superToolTip13.Items.Add(toolTipTitleItem13);
     this.btnUltimo.SuperTip = superToolTip13;
     //
     // pnl_01
     //
     this.pnl_01.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnl_01.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnl_01.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.pnl_01.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnl_01.Appearance.Options.UseBackColor = true;
     this.pnl_01.Appearance.Options.UseFont = true;
     this.pnl_01.Appearance.Options.UseForeColor = true;
     this.pnl_01.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnl_01.Controls.Add(this.fechdocfin);
     this.pnl_01.Controls.Add(this.visible);
     this.pnl_01.Controls.Add(this.fechdocini);
     this.pnl_01.Controls.Add(this.tcamb);
     this.pnl_01.Controls.Add(this.incigv);
     this.pnl_01.Controls.Add(this.labelControl7);
     this.pnl_01.Controls.Add(this.labelControl6);
     this.pnl_01.Controls.Add(this.labelControl5);
     this.pnl_01.Controls.Add(this.ctactelistname);
     this.pnl_01.Controls.Add(this.ctactelist);
     this.pnl_01.Controls.Add(this.labelControl4);
     this.pnl_01.Controls.Add(this.tiendalistname);
     this.pnl_01.Controls.Add(this.tiendalist);
     this.pnl_01.Controls.Add(this.listaprecid);
     this.pnl_01.Controls.Add(this.listaprecname);
     this.pnl_01.Controls.Add(this.labelControl3);
     this.pnl_01.Controls.Add(this.labelControl1);
     this.pnl_01.Location = new System.Drawing.Point(350, 58);
     this.pnl_01.Name = "pnl_01";
     this.pnl_01.Size = new System.Drawing.Size(626, 131);
     this.pnl_01.TabIndex = 120;
     //
     // fechdocfin
     //
     this.fechdocfin.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdocfin.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdocfin.Location = new System.Drawing.Point(306, 79);
     this.fechdocfin.Name = "fechdocfin";
     this.fechdocfin.Size = new System.Drawing.Size(80, 20);
     this.fechdocfin.TabIndex = 125;
     //
     // visible
     //
     this.visible.Location = new System.Drawing.Point(300, 102);
     this.visible.Name = "visible";
     this.visible.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.visible.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.visible.Properties.Appearance.Options.UseFont = true;
     this.visible.Properties.Appearance.Options.UseForeColor = true;
     this.visible.Properties.Caption = "Visible ?";
     this.visible.Size = new System.Drawing.Size(71, 19);
     this.visible.TabIndex = 139;
     //
     // fechdocini
     //
     this.fechdocini.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdocini.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdocini.Location = new System.Drawing.Point(109, 79);
     this.fechdocini.Name = "fechdocini";
     this.fechdocini.Size = new System.Drawing.Size(80, 20);
     this.fechdocini.TabIndex = 124;
     //
     // tcamb
     //
     this.tcamb.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.tcamb.Location = new System.Drawing.Point(109, 102);
     this.tcamb.Name = "tcamb";
     this.tcamb.Size = new System.Drawing.Size(80, 21);
     this.tcamb.TabIndex = 138;
     this.tcamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // incigv
     //
     this.incigv.Location = new System.Drawing.Point(198, 102);
     this.incigv.Name = "incigv";
     this.incigv.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.incigv.Properties.Appearance.ForeColor = System.Drawing.Color.Black;
     this.incigv.Properties.Appearance.Options.UseFont = true;
     this.incigv.Properties.Appearance.Options.UseForeColor = true;
     this.incigv.Properties.Caption = "Inlcuye Igv";
     this.incigv.Size = new System.Drawing.Size(94, 19);
     this.incigv.TabIndex = 137;
     //
     // labelControl7
     //
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl7.Location = new System.Drawing.Point(13, 105);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(83, 13);
     this.labelControl7.TabIndex = 136;
     this.labelControl7.Text = "» Tipo Cambio:";
     //
     // labelControl6
     //
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl6.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl6.Location = new System.Drawing.Point(234, 82);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(66, 13);
     this.labelControl6.TabIndex = 135;
     this.labelControl6.Text = "» Fecha Fin:";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Location = new System.Drawing.Point(13, 82);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(81, 13);
     this.labelControl5.TabIndex = 134;
     this.labelControl5.Text = "» Fecha Inicio:";
     //
     // ctactelistname
     //
     this.ctactelistname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.ctactelistname.Location = new System.Drawing.Point(132, 53);
     this.ctactelistname.Name = "ctactelistname";
     this.ctactelistname.Size = new System.Drawing.Size(303, 21);
     this.ctactelistname.TabIndex = 133;
     //
     // ctactelist
     //
     this.ctactelist.AccessibleDescription = "";
     this.ctactelist.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ctactelist.Location = new System.Drawing.Point(110, 53);
     this.ctactelist.MaxLength = 4;
     this.ctactelist.Name = "ctactelist";
     this.ctactelist.Size = new System.Drawing.Size(21, 20);
     this.ctactelist.TabIndex = 132;
     this.ctactelist.Text = "0";
     this.ctactelist.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.ctactelist.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctactelist_KeyDown);
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Location = new System.Drawing.Point(11, 57);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(91, 13);
     this.labelControl4.TabIndex = 131;
     this.labelControl4.Text = "» Lista-Clientes:";
     //
     // tiendalistname
     //
     this.tiendalistname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.tiendalistname.Location = new System.Drawing.Point(132, 30);
     this.tiendalistname.Name = "tiendalistname";
     this.tiendalistname.Size = new System.Drawing.Size(287, 21);
     this.tiendalistname.TabIndex = 130;
     //
     // tiendalist
     //
     this.tiendalist.AccessibleDescription = "";
     this.tiendalist.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tiendalist.Location = new System.Drawing.Point(110, 30);
     this.tiendalist.MaxLength = 4;
     this.tiendalist.Name = "tiendalist";
     this.tiendalist.Size = new System.Drawing.Size(21, 20);
     this.tiendalist.TabIndex = 129;
     this.tiendalist.Text = "0";
     this.tiendalist.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.tiendalist.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tiendalist_KeyDown);
     //
     // listaprecid
     //
     this.listaprecid.AccessibleDescription = "";
     this.listaprecid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.listaprecid.Location = new System.Drawing.Point(110, 6);
     this.listaprecid.MaxLength = 4;
     this.listaprecid.Name = "listaprecid";
     this.listaprecid.Size = new System.Drawing.Size(21, 20);
     this.listaprecid.TabIndex = 128;
     this.listaprecid.Text = "0";
     this.listaprecid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // listaprecname
     //
     this.listaprecname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.listaprecname.Location = new System.Drawing.Point(132, 6);
     this.listaprecname.Name = "listaprecname";
     this.listaprecname.Size = new System.Drawing.Size(303, 21);
     this.listaprecname.TabIndex = 124;
     this.listaprecname.KeyDown += new System.Windows.Forms.KeyEventHandler(this.listaprecname_KeyDown);
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Location = new System.Drawing.Point(11, 32);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(90, 13);
     this.labelControl3.TabIndex = 123;
     this.labelControl3.Text = "» Lista-Tiendas:";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(11, 9);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 13);
     this.labelControl1.TabIndex = 122;
     this.labelControl1.Text = "» Codigo:";
     //
     // pnlcontroldet
     //
     this.pnlcontroldet.Appearance.BackColor = System.Drawing.Color.Teal;
     this.pnlcontroldet.Appearance.BackColor2 = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.ForeColor = System.Drawing.Color.White;
     this.pnlcontroldet.Appearance.Options.UseBackColor = true;
     this.pnlcontroldet.Appearance.Options.UseForeColor = true;
     this.pnlcontroldet.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlcontroldet.Controls.Add(this.labelControl10);
     this.pnlcontroldet.Controls.Add(this.ExportCatalog);
     this.pnlcontroldet.Controls.Add(this.btn_importar);
     this.pnlcontroldet.Controls.Add(this.btn_exportar);
     this.pnlcontroldet.Controls.Add(this.btn_del);
     this.pnlcontroldet.Controls.Add(this.btn_add);
     this.pnlcontroldet.Controls.Add(this.btn_save);
     this.pnlcontroldet.Controls.Add(this.precunit2);
     this.pnlcontroldet.Controls.Add(this.precunit1);
     this.pnlcontroldet.Controls.Add(this.labelControl9);
     this.pnlcontroldet.Controls.Add(this.labelControl8);
     this.pnlcontroldet.Controls.Add(this.dgb_listaPrecios);
     this.pnlcontroldet.Controls.Add(this.labelControl2);
     this.pnlcontroldet.Controls.Add(this.articid);
     this.pnlcontroldet.Controls.Add(this.articname);
     this.pnlcontroldet.Location = new System.Drawing.Point(349, 193);
     this.pnlcontroldet.Name = "pnlcontroldet";
     this.pnlcontroldet.Size = new System.Drawing.Size(627, 245);
     this.pnlcontroldet.TabIndex = 121;
     //
     // labelControl10
     //
     this.labelControl10.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl10.Appearance.ForeColor = System.Drawing.Color.Black;
     this.labelControl10.Location = new System.Drawing.Point(547, 103);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(70, 13);
     this.labelControl10.TabIndex = 158;
     this.labelControl10.Text = "__________";
     //
     // ExportCatalog
     //
     this.ExportCatalog.Cursor = System.Windows.Forms.Cursors.Hand;
     this.ExportCatalog.Image = ((System.Drawing.Image)(resources.GetObject("ExportCatalog.Image")));
     this.ExportCatalog.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.ExportCatalog.Location = new System.Drawing.Point(543, 78);
     this.ExportCatalog.Name = "ExportCatalog";
     this.ExportCatalog.Size = new System.Drawing.Size(74, 23);
     this.ExportCatalog.TabIndex = 157;
     this.ExportCatalog.Text = "Productos";
     this.ExportCatalog.ToolTip = "Exportar Productos";
     this.ExportCatalog.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.ExportCatalog.Click += new System.EventHandler(this.ExportCatalog_Click);
     //
     // btn_importar
     //
     this.btn_importar.BackColor = System.Drawing.Color.Transparent;
     this.btn_importar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_importar.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.btn_importar.ForeColor = System.Drawing.Color.Black;
     this.btn_importar.Image = global::BapFormulariosNet.Properties.Resources.go_import2;
     this.btn_importar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_importar.Location = new System.Drawing.Point(543, 187);
     this.btn_importar.Name = "btn_importar";
     this.btn_importar.Size = new System.Drawing.Size(81, 35);
     this.btn_importar.TabIndex = 155;
     this.btn_importar.Text = "&Importar";
     this.btn_importar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_importar.UseVisualStyleBackColor = false;
     this.btn_importar.Click += new System.EventHandler(this.btn_importar_Click);
     //
     // btn_exportar
     //
     this.btn_exportar.BackColor = System.Drawing.Color.Transparent;
     this.btn_exportar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_exportar.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.btn_exportar.ForeColor = System.Drawing.Color.Black;
     this.btn_exportar.Image = global::BapFormulariosNet.Properties.Resources.go_export;
     this.btn_exportar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_exportar.Location = new System.Drawing.Point(541, 146);
     this.btn_exportar.Name = "btn_exportar";
     this.btn_exportar.Size = new System.Drawing.Size(83, 35);
     this.btn_exportar.TabIndex = 156;
     this.btn_exportar.Text = "&Exportar";
     this.btn_exportar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_exportar.UseVisualStyleBackColor = false;
     this.btn_exportar.Click += new System.EventHandler(this.btn_exportar_Click);
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.Image = ((System.Drawing.Image)(resources.GetObject("btn_del.Image")));
     this.btn_del.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_del.Location = new System.Drawing.Point(407, 52);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(65, 23);
     this.btn_del.TabIndex = 144;
     this.btn_del.Text = "Eliminar";
     this.btn_del.ToolTip = "Eliminar";
     this.btn_del.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.Image = ((System.Drawing.Image)(resources.GetObject("btn_add.Image")));
     this.btn_add.ImageLocation = DevExpress.XtraEditors.ImageLocation.MiddleLeft;
     this.btn_add.Location = new System.Drawing.Point(330, 52);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(71, 23);
     this.btn_add.TabIndex = 143;
     this.btn_add.Text = "Adicionar";
     this.btn_add.ToolTip = "Adicionar";
     this.btn_add.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // btn_save
     //
     this.btn_save.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_save.Image = ((System.Drawing.Image)(resources.GetObject("btn_save.Image")));
     this.btn_save.Location = new System.Drawing.Point(256, 52);
     this.btn_save.Name = "btn_save";
     this.btn_save.Size = new System.Drawing.Size(68, 23);
     this.btn_save.TabIndex = 154;
     this.btn_save.Text = "&Aceptar";
     this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
     //
     // precunit2
     //
     this.precunit2.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.precunit2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.precunit2.Location = new System.Drawing.Point(166, 51);
     this.precunit2.Name = "precunit2";
     this.precunit2.Size = new System.Drawing.Size(80, 21);
     this.precunit2.TabIndex = 153;
     this.precunit2.Text = "00.000.00";
     this.precunit2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // precunit1
     //
     this.precunit1.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.precunit1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.precunit1.Location = new System.Drawing.Point(166, 28);
     this.precunit1.Name = "precunit1";
     this.precunit1.Size = new System.Drawing.Size(80, 21);
     this.precunit1.TabIndex = 152;
     this.precunit1.Text = "00.000.00";
     this.precunit1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.precunit1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.precunit1_KeyDown);
     //
     // labelControl9
     //
     this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl9.Location = new System.Drawing.Point(14, 56);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(122, 13);
     this.labelControl9.TabIndex = 151;
     this.labelControl9.Text = "» Precio Moneda US$:";
     //
     // labelControl8
     //
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl8.Location = new System.Drawing.Point(14, 32);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(129, 13);
     this.labelControl8.TabIndex = 150;
     this.labelControl8.Text = "» Precio Moneda Local:";
     //
     // dgb_listaPrecios
     //
     this.dgb_listaPrecios.AllowUserToAddRows = false;
     this.dgb_listaPrecios.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgb_listaPrecios.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.@__listaprecid,
     this.codigo,
     this.denominacion,
     this._precunit1,
     this._precunit2,
     this.usuar,
     this.feact});
     this.dgb_listaPrecios.EnableHeadersVisualStyles = false;
     this.dgb_listaPrecios.Location = new System.Drawing.Point(4, 78);
     this.dgb_listaPrecios.Name = "dgb_listaPrecios";
     this.dgb_listaPrecios.ReadOnly = true;
     this.dgb_listaPrecios.RowHeadersVisible = false;
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
     this.dgb_listaPrecios.RowsDefaultCellStyle = dataGridViewCellStyle3;
     this.dgb_listaPrecios.Size = new System.Drawing.Size(536, 164);
     this.dgb_listaPrecios.TabIndex = 149;
     this.dgb_listaPrecios.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellClick);
     this.dgb_listaPrecios.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_listaPrecios_CellEnter);
     this.dgb_listaPrecios.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgb_listaPrecios_KeyUp);
     //
     // __listaprecid
     //
     this.@__listaprecid.DataPropertyName = "listaprecid";
     this.@__listaprecid.HeaderText = "listaprecid";
     this.@__listaprecid.Name = "__listaprecid";
     this.@__listaprecid.ReadOnly = true;
     this.@__listaprecid.Visible = false;
     //
     // codigo
     //
     this.codigo.DataPropertyName = "codigo";
     this.codigo.HeaderText = "Codigo";
     this.codigo.Name = "codigo";
     this.codigo.ReadOnly = true;
     this.codigo.Width = 80;
     //
     // denominacion
     //
     this.denominacion.DataPropertyName = "denominacion";
     this.denominacion.HeaderText = "Denominación";
     this.denominacion.Name = "denominacion";
     this.denominacion.ReadOnly = true;
     this.denominacion.Width = 300;
     //
     // _precunit1
     //
     this._precunit1.DataPropertyName = "precunit1";
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle1.Format = "N2";
     dataGridViewCellStyle1.NullValue = null;
     this._precunit1.DefaultCellStyle = dataGridViewCellStyle1;
     this._precunit1.HeaderText = "S/.";
     this._precunit1.Name = "_precunit1";
     this._precunit1.ReadOnly = true;
     this._precunit1.Width = 70;
     //
     // _precunit2
     //
     this._precunit2.DataPropertyName = "precunit2";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle2.Format = "N2";
     dataGridViewCellStyle2.NullValue = null;
     this._precunit2.DefaultCellStyle = dataGridViewCellStyle2;
     this._precunit2.HeaderText = "US$";
     this._precunit2.Name = "_precunit2";
     this._precunit2.ReadOnly = true;
     this._precunit2.Width = 70;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "usuar";
     this.usuar.Name = "usuar";
     this.usuar.ReadOnly = true;
     this.usuar.Visible = false;
     //
     // feact
     //
     this.feact.DataPropertyName = "feact";
     this.feact.HeaderText = "feact";
     this.feact.Name = "feact";
     this.feact.ReadOnly = true;
     this.feact.Visible = false;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(13, 7);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(58, 13);
     this.labelControl2.TabIndex = 123;
     this.labelControl2.Text = "» Articulo:";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.Mdi_dgv_precioslist);
     this.groupControl1.Location = new System.Drawing.Point(2, 56);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(342, 382);
     this.groupControl1.TabIndex = 142;
     this.groupControl1.Text = "Lista de Precios";
     //
     // Mdi_dgv_precioslist
     //
     this.Mdi_dgv_precioslist.Location = new System.Drawing.Point(6, 24);
     this.Mdi_dgv_precioslist.MainView = this.dgv_precioslist;
     this.Mdi_dgv_precioslist.Name = "Mdi_dgv_precioslist";
     this.Mdi_dgv_precioslist.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemTextEdit2,
     this.repositoryItemCheckEdit3});
     this.Mdi_dgv_precioslist.Size = new System.Drawing.Size(329, 353);
     this.Mdi_dgv_precioslist.TabIndex = 143;
     this.Mdi_dgv_precioslist.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgv_precioslist});
     this.Mdi_dgv_precioslist.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Mdi_dgv_tiendalist_KeyUp);
     //
     // dgv_precioslist
     //
     this.dgv_precioslist.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgv_precioslist.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.Empty.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_precioslist.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgv_precioslist.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_precioslist.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_precioslist.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgv_precioslist.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_precioslist.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgv_precioslist.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgv_precioslist.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_precioslist.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgv_precioslist.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgv_precioslist.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_precioslist.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgv_precioslist.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgv_precioslist.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_precioslist.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.GroupPanel.Options.UseFont = true;
     this.dgv_precioslist.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgv_precioslist.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgv_precioslist.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgv_precioslist.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgv_precioslist.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgv_precioslist.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgv_precioslist.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgv_precioslist.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgv_precioslist.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgv_precioslist.Appearance.Preview.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.Preview.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgv_precioslist.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgv_precioslist.Appearance.Row.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.Row.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgv_precioslist.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgv_precioslist.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgv_precioslist.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgv_precioslist.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgv_precioslist.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgv_precioslist.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgv_precioslist.Appearance.VertLine.Options.UseBackColor = true;
     this.dgv_precioslist.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this._listaprecid,
     this._listaprecname,
     this._fechaini,
     this._fechafin,
     this._tiendalist,
     this._ctactelist,
     this._tcamb,
     this._incigv,
     this._visible,
     this._usuar,
     this._feact});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.Teal;
     styleFormatCondition1.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Expression;
     styleFormatCondition1.Expression = "Len(Trim([conceptoid])) == 2";
     this.dgv_precioslist.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.dgv_precioslist.GridControl = this.Mdi_dgv_precioslist;
     this.dgv_precioslist.Name = "dgv_precioslist";
     this.dgv_precioslist.OptionsSelection.MultiSelect = true;
     this.dgv_precioslist.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.dgv_precioslist.OptionsView.ShowGroupPanel = false;
     this.dgv_precioslist.PaintStyleName = "Web";
     this.dgv_precioslist.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgv_tiendalist_RowCellClick);
     //
     // _listaprecid
     //
     this._listaprecid.Caption = "ID";
     this._listaprecid.FieldName = "listaprecid";
     this._listaprecid.Name = "_listaprecid";
     this._listaprecid.OptionsColumn.AllowEdit = false;
     this._listaprecid.Visible = true;
     this._listaprecid.VisibleIndex = 0;
     this._listaprecid.Width = 39;
     //
     // _listaprecname
     //
     this._listaprecname.Caption = "Denominación";
     this._listaprecname.FieldName = "listaprecname";
     this._listaprecname.Name = "_listaprecname";
     this._listaprecname.OptionsColumn.AllowEdit = false;
     this._listaprecname.Visible = true;
     this._listaprecname.VisibleIndex = 1;
     this._listaprecname.Width = 152;
     //
     // _fechaini
     //
     this._fechaini.Caption = "fechaini";
     this._fechaini.FieldName = "fechaini";
     this._fechaini.Name = "_fechaini";
     //
     // _fechafin
     //
     this._fechafin.Caption = "fechafin";
     this._fechafin.FieldName = "fechafin";
     this._fechafin.Name = "_fechafin";
     //
     // _tiendalist
     //
     this._tiendalist.Caption = "tiendalist";
     this._tiendalist.FieldName = "tiendalist";
     this._tiendalist.Name = "_tiendalist";
     //
     // _ctactelist
     //
     this._ctactelist.Caption = "ctactelist";
     this._ctactelist.FieldName = "ctactelist";
     this._ctactelist.Name = "_ctactelist";
     //
     // _tcamb
     //
     this._tcamb.Caption = "tcamb";
     this._tcamb.FieldName = "tcamb";
     this._tcamb.Name = "_tcamb";
     //
     // _incigv
     //
     this._incigv.Caption = "incigv";
     this._incigv.FieldName = "incigv";
     this._incigv.Name = "_incigv";
     //
     // _visible
     //
     this._visible.Caption = "visible";
     this._visible.FieldName = "visible";
     this._visible.Name = "_visible";
     //
     // _usuar
     //
     this._usuar.Caption = "usuar";
     this._usuar.FieldName = "usuar";
     this._usuar.Name = "_usuar";
     //
     // _feact
     //
     this._feact.Caption = "feact";
     this._feact.FieldName = "feact";
     this._feact.Name = "_feact";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.EditFormat.FormatString = "###,##0.0000";
     this.repositoryItemTextEdit1.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.EditMask = "###,##0.0000";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Caption = "Check";
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.repositoryItemTextEdit2.ReadOnly = true;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Caption = "Check";
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // Frm_lista_precios
     //
     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.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(978, 440);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.pnlcontroldet);
     this.Controls.Add(this.pnl_01);
     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_lista_precios";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "» Lista de Precios";
     this.Load += new System.EventHandler(this.Frm_articulo_tiendalist_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_articulo_tiendalist_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnl_01)).EndInit();
     this.pnl_01.ResumeLayout(false);
     this.pnl_01.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.visible.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.incigv.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlcontroldet)).EndInit();
     this.pnlcontroldet.ResumeLayout(false);
     this.pnlcontroldet.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_listaPrecios)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Mdi_dgv_precioslist)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_precioslist)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     this.ResumeLayout(false);
 }
Example #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(StrategiesCollectionForm));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.siAdd = new DevExpress.XtraBars.BarSubItem();
     this.biRemove = new DevExpress.XtraBars.BarButtonItem();
     this.biEdit = new DevExpress.XtraBars.BarButtonItem();
     this.biStart = new DevExpress.XtraBars.BarButtonItem();
     this.biStop = new DevExpress.XtraBars.BarButtonItem();
     this.biSimulation = new DevExpress.XtraBars.BarButtonItem();
     this.biOptimizeParams = new DevExpress.XtraBars.BarButtonItem();
     this.btShowData = new DevExpress.XtraBars.BarButtonItem();
     this.bcShowLog = new DevExpress.XtraBars.BarCheckItem();
     this.biSettings = new DevExpress.XtraBars.BarButtonItem();
     this.bar3 = new DevExpress.XtraBars.Bar();
     this.siStatus = new DevExpress.XtraBars.BarStaticItem();
     this.beSimulationProgress = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemProgressBar1 = new DevExpress.XtraEditors.Repository.RepositoryItemProgressBar();
     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.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dpLogPanel = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.logMessagesControl = new CryptoMarketClient.LogMessagesControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.strategyBaseBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colEnabled = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colDemoMode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.colName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStateText = new DevExpress.XtraGrid.Columns.GridColumn();
     this.riTextEditState = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.colEarned = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEnableNotifications = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.behaviorManager1 = new DevExpress.Utils.Behaviors.BehaviorManager(this.components);
     this.toastNotificationsManager1 = new DevExpress.XtraBars.ToastNotifications.ToastNotificationsManager(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dpLogPanel.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.strategyBaseBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riTextEditState)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.behaviorManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.toastNotificationsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.AllowHtmlText = true;
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1,
     this.bar3});
     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.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.siAdd,
     this.biRemove,
     this.biEdit,
     this.siStatus,
     this.biStart,
     this.biStop,
     this.btShowData,
     this.biSimulation,
     this.bcShowLog,
     this.biOptimizeParams,
     this.beSimulationProgress,
     this.biSettings});
     this.barManager1.MaxItemId = 15;
     this.barManager1.OptionsStubGlyphs.AllowStubGlyphs = DevExpress.Utils.DefaultBoolean.True;
     this.barManager1.OptionsStubGlyphs.CaseMode = DevExpress.Utils.Drawing.GlyphTextCaseMode.UpperCase;
     this.barManager1.OptionsStubGlyphs.CornerRadius = 3;
     this.barManager1.OptionsStubGlyphs.Font = new System.Drawing.Font("Segoe UI", 12F);
     this.barManager1.OptionsStubGlyphs.LetterCount = DevExpress.Utils.Drawing.GlyphTextSymbolCount.Two;
     this.barManager1.OptionsStubGlyphs.UseFont = true;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemProgressBar1});
     //
     // bar1
     //
     this.bar1.BarAppearance.Hovered.FontStyleDelta = System.Drawing.FontStyle.Bold;
     this.bar1.BarAppearance.Hovered.Options.UseFont = true;
     this.bar1.BarAppearance.Normal.FontStyleDelta = System.Drawing.FontStyle.Bold;
     this.bar1.BarAppearance.Normal.Options.UseFont = true;
     this.bar1.BarAppearance.Pressed.FontStyleDelta = System.Drawing.FontStyle.Bold;
     this.bar1.BarAppearance.Pressed.Options.UseFont = true;
     this.bar1.BarName = "Tools";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.siAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.biRemove),
     new DevExpress.XtraBars.LinkPersistInfo(this.biEdit),
     new DevExpress.XtraBars.LinkPersistInfo(this.biStart, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.biStop),
     new DevExpress.XtraBars.LinkPersistInfo(this.biSimulation),
     new DevExpress.XtraBars.LinkPersistInfo(this.biOptimizeParams),
     new DevExpress.XtraBars.LinkPersistInfo(this.btShowData, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.bcShowLog),
     new DevExpress.XtraBars.LinkPersistInfo(this.biSettings)});
     this.bar1.OptionsBar.DrawBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Tools";
     //
     // siAdd
     //
     this.siAdd.Caption = "New";
     this.siAdd.Id = 0;
     this.siAdd.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("siAdd.ImageOptions.SvgImage")));
     this.siAdd.Name = "siAdd";
     this.siAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // biRemove
     //
     this.biRemove.Caption = "Remove Selected";
     this.biRemove.Id = 1;
     this.biRemove.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biRemove.ImageOptions.SvgImage")));
     this.biRemove.Name = "biRemove";
     this.biRemove.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biRemove.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biRemove_ItemClick);
     //
     // biEdit
     //
     this.biEdit.Caption = "Edit";
     this.biEdit.Id = 2;
     this.biEdit.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biEdit.ImageOptions.SvgImage")));
     this.biEdit.Name = "biEdit";
     this.biEdit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biEdit.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biEdit_ItemClick);
     //
     // biStart
     //
     this.biStart.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     this.biStart.Caption = "<b>Run!</b>";
     this.biStart.Id = 4;
     this.biStart.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biStart.ImageOptions.SvgImage")));
     this.biStart.ItemAppearance.Normal.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Information;
     this.biStart.ItemAppearance.Normal.Options.UseForeColor = true;
     this.biStart.Name = "biStart";
     this.biStart.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biStart.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biStart_ItemClick);
     //
     // biStop
     //
     this.biStop.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     this.biStop.Caption = "<b>Stop</b>";
     this.biStop.Id = 5;
     this.biStop.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biStop.ImageOptions.SvgImage")));
     this.biStop.ItemAppearance.Normal.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Critical;
     this.biStop.ItemAppearance.Normal.Options.UseForeColor = true;
     this.biStop.Name = "biStop";
     this.biStop.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biStop.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biStop_ItemClick);
     //
     // biSimulation
     //
     this.biSimulation.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     this.biSimulation.Caption = "<b>Simulation</b>";
     this.biSimulation.Id = 8;
     this.biSimulation.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biSimulation.ImageOptions.SvgImage")));
     this.biSimulation.ItemAppearance.Hovered.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Question;
     this.biSimulation.ItemAppearance.Hovered.Options.UseForeColor = true;
     this.biSimulation.ItemAppearance.Normal.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Question;
     this.biSimulation.ItemAppearance.Normal.Options.UseForeColor = true;
     this.biSimulation.ItemAppearance.Pressed.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Question;
     this.biSimulation.ItemAppearance.Pressed.Options.UseForeColor = true;
     this.biSimulation.Name = "biSimulation";
     this.biSimulation.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biSimulation.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biSimulation_ItemClick);
     //
     // biOptimizeParams
     //
     this.biOptimizeParams.Caption = "Optimize Params";
     this.biOptimizeParams.Id = 11;
     this.biOptimizeParams.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biOptimizeParams.ImageOptions.SvgImage")));
     this.biOptimizeParams.ItemAppearance.Normal.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Question;
     this.biOptimizeParams.ItemAppearance.Normal.Options.UseForeColor = true;
     this.biOptimizeParams.Name = "biOptimizeParams";
     this.biOptimizeParams.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biOptimizeParams.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biOptimizeParams_ItemClick);
     //
     // btShowData
     //
     this.btShowData.Caption = "<b>Show Data</b>";
     this.btShowData.Id = 6;
     this.btShowData.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("btShowData.ImageOptions.SvgImage")));
     this.btShowData.Name = "btShowData";
     this.btShowData.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.btShowData.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btShowData_ItemClick);
     //
     // bcShowLog
     //
     this.bcShowLog.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.bcShowLog.Caption = "<b>Show Log</b>";
     this.bcShowLog.Id = 10;
     this.bcShowLog.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("bcShowLog.ImageOptions.SvgImage")));
     this.bcShowLog.Name = "bcShowLog";
     this.bcShowLog.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.bcShowLog.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.bcShowLog_CheckedChanged);
     //
     // biSettings
     //
     this.biSettings.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.biSettings.Caption = "Settings";
     this.biSettings.Id = 14;
     this.biSettings.ImageOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("biSettings.ImageOptions.SvgImage")));
     this.biSettings.Name = "biSettings";
     this.biSettings.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.biSettings.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.biSettings_ItemClick);
     //
     // bar3
     //
     this.bar3.BarName = "Status bar";
     this.bar3.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar3.DockCol = 0;
     this.bar3.DockRow = 0;
     this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.siStatus),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Width, this.beSimulationProgress, "", false, true, true, 210)});
     this.bar3.OptionsBar.AllowQuickCustomization = false;
     this.bar3.OptionsBar.DrawDragBorder = false;
     this.bar3.OptionsBar.UseWholeRow = true;
     this.bar3.Text = "Status bar";
     //
     // siStatus
     //
     this.siStatus.AllowHtmlText = DevExpress.Utils.DefaultBoolean.True;
     this.siStatus.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.siStatus.Caption = "    ";
     this.siStatus.Id = 3;
     this.siStatus.ItemAppearance.Normal.ForeColor = DevExpress.LookAndFeel.DXSkinColors.ForeColors.Information;
     this.siStatus.ItemAppearance.Normal.Options.UseForeColor = true;
     this.siStatus.Name = "siStatus";
     //
     // beSimulationProgress
     //
     this.beSimulationProgress.AutoFillWidth = true;
     this.beSimulationProgress.Caption = "barEditItem1";
     this.beSimulationProgress.Edit = this.repositoryItemProgressBar1;
     this.beSimulationProgress.Id = 13;
     this.beSimulationProgress.Name = "beSimulationProgress";
     this.beSimulationProgress.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // repositoryItemProgressBar1
     //
     this.repositoryItemProgressBar1.Maximum = 100000;
     this.repositoryItemProgressBar1.Name = "repositoryItemProgressBar1";
     this.repositoryItemProgressBar1.ShowTitle = true;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Manager = this.barManager1;
     this.barDockControlTop.Size = new System.Drawing.Size(1667, 60);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 974);
     this.barDockControlBottom.Manager = this.barManager1;
     this.barDockControlBottom.Size = new System.Drawing.Size(1667, 52);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 60);
     this.barDockControlLeft.Manager = this.barManager1;
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 914);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1667, 60);
     this.barDockControlRight.Manager = this.barManager1;
     this.barDockControlRight.Size = new System.Drawing.Size(0, 914);
     //
     // dockManager1
     //
     this.dockManager1.Form = this;
     this.dockManager1.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dpLogPanel});
     this.dockManager1.MenuManager = this.barManager1;
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "System.Windows.Forms.MenuStrip",
     "System.Windows.Forms.StatusStrip",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl",
     "DevExpress.XtraBars.Navigation.OfficeNavigationBar",
     "DevExpress.XtraBars.Navigation.TileNavPane",
     "DevExpress.XtraBars.TabFormControl",
     "DevExpress.XtraBars.FluentDesignSystem.FluentDesignFormControl",
     "DevExpress.XtraBars.ToolbarForm.ToolbarFormControl"});
     //
     // dpLogPanel
     //
     this.dpLogPanel.Controls.Add(this.dockPanel1_Container);
     this.dpLogPanel.Dock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.dpLogPanel.ID = new System.Guid("10bbb36d-c4c6-4135-83c3-42595d23e751");
     this.dpLogPanel.Location = new System.Drawing.Point(0, 526);
     this.dpLogPanel.Name = "dpLogPanel";
     this.dpLogPanel.OriginalSize = new System.Drawing.Size(200, 441);
     this.dpLogPanel.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Bottom;
     this.dpLogPanel.SavedIndex = 0;
     this.dpLogPanel.Size = new System.Drawing.Size(1667, 441);
     this.dpLogPanel.Text = "Log";
     this.dpLogPanel.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.logMessagesControl);
     this.dockPanel1_Container.Location = new System.Drawing.Point(8, 51);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(1651, 382);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // logMessagesControl
     //
     this.logMessagesControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.logMessagesControl.Location = new System.Drawing.Point(0, 0);
     this.logMessagesControl.Name = "logMessagesControl";
     this.logMessagesControl.Size = new System.Drawing.Size(1651, 382);
     this.logMessagesControl.TabIndex = 0;
     //
     // gridControl1
     //
     this.gridControl1.DataSource = this.strategyBaseBindingSource;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Location = new System.Drawing.Point(0, 60);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.MenuManager = this.barManager1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemCheckEdit1,
     this.repositoryItemCheckEdit2,
     this.repositoryItemCheckEdit3,
     this.riTextEditState});
     this.gridControl1.Size = new System.Drawing.Size(1667, 914);
     this.gridControl1.TabIndex = 4;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     this.gridControl1.Click += new System.EventHandler(this.gridControl1_Click);
     //
     // strategyBaseBindingSource
     //
     this.strategyBaseBindingSource.DataSource = typeof(Crypto.Core.Strategies.StrategyBase);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colEnabled,
     this.colDemoMode,
     this.colDescription,
     this.colName,
     this.colStateText,
     this.colEarned,
     this.colEnableNotifications});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFullFocus;
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsDetail.EnableMasterViewMode = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.BestFitMode = DevExpress.XtraGrid.Views.Grid.GridBestFitMode.Full;
     this.gridView1.OptionsView.ShowHorizontalLines = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.OptionsView.ShowVerticalLines = DevExpress.Utils.DefaultBoolean.False;
     this.gridView1.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridView1_RowStyle);
     //
     // colEnabled
     //
     this.colEnabled.ColumnEdit = this.repositoryItemCheckEdit1;
     this.colEnabled.FieldName = "Enabled";
     this.colEnabled.MinWidth = 40;
     this.colEnabled.Name = "colEnabled";
     this.colEnabled.Visible = true;
     this.colEnabled.VisibleIndex = 0;
     this.colEnabled.Width = 160;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.CheckBoxOptions.Style = DevExpress.XtraEditors.Controls.CheckBoxStyle.SvgToggle1;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.EditValueChanged += new System.EventHandler(this.repositoryItemCheckEdit1_EditValueChanged);
     //
     // colDemoMode
     //
     this.colDemoMode.ColumnEdit = this.repositoryItemCheckEdit2;
     this.colDemoMode.FieldName = "DemoMode";
     this.colDemoMode.MinWidth = 40;
     this.colDemoMode.Name = "colDemoMode";
     this.colDemoMode.Visible = true;
     this.colDemoMode.VisibleIndex = 1;
     this.colDemoMode.Width = 195;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.CheckBoxOptions.Style = DevExpress.XtraEditors.Controls.CheckBoxStyle.SvgToggle1;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.EditValueChanged += new System.EventHandler(this.repositoryItemCheckEdit2_EditValueChanged);
     //
     // colDescription
     //
     this.colDescription.ColumnEdit = this.repositoryItemTextEdit1;
     this.colDescription.FieldName = "Description";
     this.colDescription.MinWidth = 40;
     this.colDescription.Name = "colDescription";
     this.colDescription.OptionsColumn.AllowEdit = false;
     this.colDescription.Width = 554;
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     this.repositoryItemTextEdit1.Padding = new System.Windows.Forms.Padding(0, 3, 0, 3);
     //
     // colName
     //
     this.colName.FieldName = "Name";
     this.colName.MinWidth = 40;
     this.colName.Name = "colName";
     this.colName.OptionsColumn.AllowEdit = false;
     this.colName.OptionsColumn.ReadOnly = true;
     this.colName.Visible = true;
     this.colName.VisibleIndex = 3;
     this.colName.Width = 361;
     //
     // colStateText
     //
     this.colStateText.ColumnEdit = this.riTextEditState;
     this.colStateText.FieldName = "StateText";
     this.colStateText.MinWidth = 40;
     this.colStateText.Name = "colStateText";
     this.colStateText.OptionsColumn.AllowEdit = false;
     this.colStateText.Visible = true;
     this.colStateText.VisibleIndex = 4;
     this.colStateText.Width = 366;
     //
     // riTextEditState
     //
     this.riTextEditState.AllowHtmlDraw = DevExpress.Utils.DefaultBoolean.True;
     this.riTextEditState.AutoHeight = false;
     this.riTextEditState.Name = "riTextEditState";
     //
     // colEarned
     //
     this.colEarned.DisplayFormat.FormatString = "0.0000000";
     this.colEarned.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colEarned.FieldName = "Earned";
     this.colEarned.MinWidth = 40;
     this.colEarned.Name = "colEarned";
     this.colEarned.OptionsColumn.AllowEdit = false;
     this.colEarned.Visible = true;
     this.colEarned.VisibleIndex = 5;
     this.colEarned.Width = 412;
     //
     // colEnableNotifications
     //
     this.colEnableNotifications.Caption = "Notifications";
     this.colEnableNotifications.ColumnEdit = this.repositoryItemCheckEdit3;
     this.colEnableNotifications.FieldName = "EnableNotifications";
     this.colEnableNotifications.MinWidth = 40;
     this.colEnableNotifications.Name = "colEnableNotifications";
     this.colEnableNotifications.Visible = true;
     this.colEnableNotifications.VisibleIndex = 2;
     this.colEnableNotifications.Width = 137;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.CheckBoxOptions.Style = DevExpress.XtraEditors.Controls.CheckBoxStyle.SvgToggle1;
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     this.repositoryItemCheckEdit3.EditValueChanged += new System.EventHandler(this.repositoryItemCheckEdit3_EditValueChanged);
     //
     // toastNotificationsManager1
     //
     this.toastNotificationsManager1.ApplicationId = "ab6decea-81d2-4ad9-b8b7-45653fe59087";
     this.toastNotificationsManager1.Notifications.AddRange(new DevExpress.XtraBars.ToastNotifications.IToastNotificationProperties[] {
     new DevExpress.XtraBars.ToastNotifications.ToastNotification("404ef86f-183c-4fea-960b-86f54e52ea76", global::Crypto.UI.Properties.Resources.notification_image2, "Strategies Simulator", "Strategy simulation finished!", "", DevExpress.XtraBars.ToastNotifications.ToastNotificationSound.Default, DevExpress.XtraBars.ToastNotifications.ToastNotificationDuration.Long, DevExpress.XtraBars.ToastNotifications.ToastNotificationTemplate.ImageAndText01)});
     //
     // StrategiesCollectionForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1667, 1026);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "StrategiesCollectionForm";
     this.Text = "Active Strategies";
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemProgressBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dpLogPanel.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.strategyBaseBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riTextEditState)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.behaviorManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.toastNotificationsManager1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMain));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
     this.rbcMain = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.imgCollection = new DevExpress.Utils.ImageCollection(this.components);
     this.bbiKhachHang = new DevExpress.XtraBars.BarButtonItem();
     this.bbiHangHoa = new DevExpress.XtraBars.BarButtonItem();
     this.bbiNhomHang = new DevExpress.XtraBars.BarButtonItem();
     this.bbiKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiAuthor = new DevExpress.XtraBars.BarButtonItem();
     this.bbiKhuVuc = new DevExpress.XtraBars.BarButtonItem();
     this.bbiNhapKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTonKho = new DevExpress.XtraBars.BarButtonItem();
     this.lblServer = new DevExpress.XtraBars.BarStaticItem();
     this.lblDatabase = new DevExpress.XtraBars.BarStaticItem();
     this.ISystem = new DevExpress.XtraBars.BarButtonItem();
     this.IInit = new DevExpress.XtraBars.BarButtonItem();
     this.IInward = new DevExpress.XtraBars.BarButtonItem();
     this.IOutward = new DevExpress.XtraBars.BarButtonItem();
     this.ITransfer = new DevExpress.XtraBars.BarButtonItem();
     this.IAdjustment = new DevExpress.XtraBars.BarButtonItem();
     this.IInventory = new DevExpress.XtraBars.BarButtonItem();
     this.IPacket = new DevExpress.XtraBars.BarButtonItem();
     this.bbiClose = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUserGroup = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUsers = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUpdateOnline = new DevExpress.XtraBars.BarButtonItem();
     this.bbiUpdateOffline = new DevExpress.XtraBars.BarButtonItem();
     this.biiHelpNormal = new DevExpress.XtraBars.BarButtonItem();
     this.biiHelpVideo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiSaoLuu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiPhucHoi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiXuatNhapTon = new DevExpress.XtraBars.BarButtonItem();
     this.bbiLichSu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTheKho = new DevExpress.XtraBars.BarButtonItem();
     this.bbiNhanVien = new DevExpress.XtraBars.BarButtonItem();
     this.bbiCuaHang = new DevExpress.XtraBars.BarButtonItem();
     this.bbiThuChi = new DevExpress.XtraBars.BarButtonItem();
     this.bbiCongNo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiTheNo = new DevExpress.XtraBars.BarButtonItem();
     this.bbiDoanhThu = new DevExpress.XtraBars.BarButtonItem();
     this.bbiCongNoChungTu = new DevExpress.XtraBars.BarButtonItem();
     this.rbpHeThong = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbpgDong = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpDanhMuc = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbpgDoiTac = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpgKhoHang = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpgThongTinCuaHang = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpKhoHang = new DevExpress.XtraBars.Ribbon.RibbonPage();
     this.rbpgQuanLyKho = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rbpgBaoCao = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rpbgCongNo = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.rpbgDoanhThu = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.rbsMain = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.tabMdi = new DevExpress.XtraTabbedMdi.XtraTabbedMdiManager(this.components);
     this.ImgSmall = new DevExpress.Utils.ImageCollection(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.rbcMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgCollection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMdi)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgSmall)).BeginInit();
     this.SuspendLayout();
     //
     // rbcMain
     //
     this.rbcMain.ApplicationCaption = "Phần Mềm Quản Lý Kho";
     this.rbcMain.ApplicationIcon = global::Do_An_Quan_Ly_Kho.Properties.Resources._1438776525_deliverables;
     this.rbcMain.AutoSizeItems = true;
     this.rbcMain.ExpandCollapseItem.Id = 0;
     this.rbcMain.Images = this.imgCollection;
     this.rbcMain.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.rbcMain.ExpandCollapseItem,
     this.bbiKhachHang,
     this.bbiHangHoa,
     this.bbiNhomHang,
     this.bbiKho,
     this.bbiAuthor,
     this.bbiKhuVuc,
     this.bbiNhapKho,
     this.bbiXuatKho,
     this.bbiTonKho,
     this.lblServer,
     this.lblDatabase,
     this.ISystem,
     this.IInit,
     this.IInward,
     this.IOutward,
     this.ITransfer,
     this.IAdjustment,
     this.IInventory,
     this.IPacket,
     this.bbiClose,
     this.bbiUserGroup,
     this.bbiUsers,
     this.bbiUpdateOnline,
     this.bbiUpdateOffline,
     this.biiHelpNormal,
     this.biiHelpVideo,
     this.bbiSaoLuu,
     this.bbiPhucHoi,
     this.bbiXuatNhapTon,
     this.bbiLichSu,
     this.bbiTheKho,
     this.bbiNhanVien,
     this.bbiCuaHang,
     this.bbiThuChi,
     this.bbiCongNo,
     this.bbiTheNo,
     this.bbiDoanhThu,
     this.bbiCongNoChungTu});
     this.rbcMain.LargeImages = this.imgCollection;
     this.rbcMain.Location = new System.Drawing.Point(0, 0);
     this.rbcMain.MaxItemId = 330;
     this.rbcMain.MdiMergeStyle = DevExpress.XtraBars.Ribbon.RibbonMdiMergeStyle.Always;
     this.rbcMain.Name = "rbcMain";
     this.rbcMain.PageHeaderItemLinks.Add(this.lblServer);
     this.rbcMain.PageHeaderItemLinks.Add(this.lblDatabase);
     this.rbcMain.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
     this.rbpHeThong,
     this.rbpDanhMuc,
     this.rbpKhoHang});
     this.rbcMain.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     this.rbcMain.ShowCategoryInCaption = false;
     this.rbcMain.Size = new System.Drawing.Size(1016, 144);
     this.rbcMain.StatusBar = this.rbsMain;
     this.rbcMain.TransparentEditors = true;
     //
     // imgCollection
     //
     this.imgCollection.ImageSize = new System.Drawing.Size(32, 32);
     this.imgCollection.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imgCollection.ImageStream")));
     this.imgCollection.Images.SetKeyName(0, "Ket Thuc.png");
     this.imgCollection.Images.SetKeyName(1, "Nguoi Dung.png");
     this.imgCollection.Images.SetKeyName(2, "Phan Quyen.png");
     this.imgCollection.Images.SetKeyName(3, "Thay Doi Mat Khau.png");
     this.imgCollection.Images.SetKeyName(4, "Thong Tin.png");
     this.imgCollection.Images.SetKeyName(5, "Ton Kho.png");
     this.imgCollection.Images.SetKeyName(6, "Tuy Chon.png");
     this.imgCollection.Images.SetKeyName(7, "Import.png");
     this.imgCollection.Images.SetKeyName(8, "Khoa So.png");
     this.imgCollection.Images.SetKeyName(9, "Bo Phan.png");
     this.imgCollection.Images.SetKeyName(10, "Dinh Muc.png");
     this.imgCollection.Images.SetKeyName(11, "Don Vi Tinh.png");
     this.imgCollection.Images.SetKeyName(12, "Hang Hoa.png");
     this.imgCollection.Images.SetKeyName(13, "Khach Hang.png");
     this.imgCollection.Images.SetKeyName(14, "Kho.png");
     this.imgCollection.Images.SetKeyName(15, "Nha Phan Phoi.png");
     this.imgCollection.Images.SetKeyName(16, "Nhan Vien.png");
     this.imgCollection.Images.SetKeyName(17, "Nhom Hang.png");
     this.imgCollection.Images.SetKeyName(18, "Loai Doi Tac.png");
     this.imgCollection.Images.SetKeyName(19, "Nhom Doi Tac.png");
     this.imgCollection.Images.SetKeyName(20, "Bang Ke Chuyen Kho.png");
     this.imgCollection.Images.SetKeyName(21, "Bang Ke Kiem Ke.png");
     this.imgCollection.Images.SetKeyName(22, "Bang Ke Xuat Kho.png");
     this.imgCollection.Images.SetKeyName(23, "Bang KeNhap Kho.png");
     this.imgCollection.Images.SetKeyName(24, "Canh Bao Ton Kho.png");
     this.imgCollection.Images.SetKeyName(25, "Chuyen Kho.png");
     this.imgCollection.Images.SetKeyName(26, "Dong Goi BTP.png");
     this.imgCollection.Images.SetKeyName(27, "Kiem Ke.png");
     this.imgCollection.Images.SetKeyName(28, "Nhap Kho.png");
     this.imgCollection.Images.SetKeyName(29, "ReportWithChart256.png");
     this.imgCollection.Images.SetKeyName(30, "Ton Kho.png");
     this.imgCollection.Images.SetKeyName(31, "Xuat Kho.png");
     this.imgCollection.Images.SetKeyName(32, "Xuat Va Dong Goi.png");
     this.imgCollection.Images.SetKeyName(33, "Yeu Cau Dat Hang.png");
     this.imgCollection.Images.SetKeyName(34, "Yeu Cau Dat Hang.png");
     this.imgCollection.Images.SetKeyName(35, "Bang Ke Lap Rap.png");
     this.imgCollection.Images.SetKeyName(36, "Bang Len Ke Hoach.png");
     this.imgCollection.Images.SetKeyName(37, "Ke Hoach.png");
     this.imgCollection.Images.SetKeyName(38, "Lap Rap.png");
     this.imgCollection.Images.SetKeyName(39, "Tinh Gia Ban.png");
     this.imgCollection.Images.SetKeyName(40, "Bao Cao The Kho.png");
     this.imgCollection.Images.SetKeyName(41, "Bao Cao Ton Kho.png");
     this.imgCollection.Images.SetKeyName(42, "Duoi Dinh Muc.png");
     this.imgCollection.Images.SetKeyName(43, "Khac.png");
     this.imgCollection.Images.SetKeyName(44, "So Chi Tiet.png");
     this.imgCollection.Images.SetKeyName(45, "Vuot Dinh Muc.png");
     this.imgCollection.Images.SetKeyName(46, "Han Su Dung.png");
     this.imgCollection.Images.SetKeyName(47, "Dong Goi Thanh Pham.png");
     this.imgCollection.Images.SetKeyName(48, "Cap Nhat.png");
     this.imgCollection.Images.SetKeyName(49, "Dang Ky.png");
     this.imgCollection.Images.SetKeyName(50, "Huong Dan Su Dung.png");
     this.imgCollection.Images.SetKeyName(51, "Lien He.png");
     this.imgCollection.Images.SetKeyName(52, "Thong Tin.png");
     this.imgCollection.Images.SetKeyName(53, "Trang Chu.png");
     this.imgCollection.Images.SetKeyName(54, "Dang Ky.png");
     this.imgCollection.Images.SetKeyName(55, "databasebackup.png");
     this.imgCollection.Images.SetKeyName(56, "databaserestore.png");
     this.imgCollection.Images.SetKeyName(57, "Ban Ke Xuat Kho.png");
     this.imgCollection.Images.SetKeyName(58, "Bang Ke Nhap Kho.png");
     this.imgCollection.Images.SetKeyName(59, "Bang Ke Chuyen kho1.png");
     this.imgCollection.Images.SetKeyName(60, "Trang Chu.ico");
     this.imgCollection.Images.SetKeyName(61, "Cap Nhap Truc Tuyen.ico");
     this.imgCollection.Images.SetKeyName(62, "Huong Dan Su Dung.ico");
     this.imgCollection.Images.SetKeyName(63, "Lien He.ico");
     this.imgCollection.Images.SetKeyName(64, "Dang Xuat.png");
     this.imgCollection.Images.SetKeyName(65, "Copy of Stop.png");
     this.imgCollection.Images.SetKeyName(66, "Copy of Sync.png");
     this.imgCollection.Images.SetKeyName(67, "SuaChua.png");
     this.imgCollection.Images.SetKeyName(68, "NhatKyHeThong.png");
     this.imgCollection.Images.SetKeyName(69, "TimKiemChungTu.png");
     this.imgCollection.Images.SetKeyName(70, "16.ico");
     this.imgCollection.Images.SetKeyName(71, "database.ico");
     this.imgCollection.Images.SetKeyName(72, "StockPNG.png");
     this.imgCollection.Images.SetKeyName(73, "RibbonPrintPreview_DocumentMapLarge.png");
     this.imgCollection.Images.SetKeyName(74, "RibbonPrintPreview_CustomizeLarge.png");
     this.imgCollection.Images.SetKeyName(75, "plugin.ico");
     this.imgCollection.Images.SetKeyName(76, "Cau Hinh.png");
     this.imgCollection.Images.SetKeyName(77, "Sua Chua.png");
     this.imgCollection.Images.SetKeyName(78, "System868632.png");
     this.imgCollection.Images.SetKeyName(79, "Dossier fichier compressé32.png");
     this.imgCollection.Images.SetKeyName(80, "Barcode32.png");
     this.imgCollection.Images.SetKeyName(81, "PhanQuyen.png");
     this.imgCollection.Images.SetKeyName(82, "PhanQuyen.png");
     this.imgCollection.Images.SetKeyName(83, "1285643018_gnutella.png");
     this.imgCollection.Images.SetKeyName(84, "1285643049_network-offline.png");
     this.imgCollection.Images.SetKeyName(85, "1285643131_network-offline.png");
     this.imgCollection.Images.SetKeyName(86, "1285643150_gnutella.png");
     this.imgCollection.Images.SetKeyName(87, "1284429314_import.png");
     this.imgCollection.Images.SetKeyName(88, "1287538982_help-contents.png");
     this.imgCollection.Images.SetKeyName(89, "1287539858_page_white_world.png");
     this.imgCollection.Images.SetKeyName(90, "1287540090_video.png");
     this.imgCollection.Images.SetKeyName(91, "Lap Rap.png");
     this.imgCollection.Images.SetKeyName(92, "Yeu Cau Dat Hang.png");
     this.imgCollection.Images.SetKeyName(93, "Noi Ha.png");
     this.imgCollection.Images.SetKeyName(94, "1316226941_currencyexchange.png");
     this.imgCollection.Images.SetKeyName(95, "1323220185_home_page.png");
     this.imgCollection.Images.SetKeyName(96, "1323224048_home.png");
     this.imgCollection.Images.SetKeyName(97, "1323224110_1 - Home.png");
     this.imgCollection.Images.SetKeyName(98, "6_barcode_box.gif");
     this.imgCollection.Images.SetKeyName(99, "20-512.png");
     this.imgCollection.Images.SetKeyName(100, "1438422363_receipt.png");
     this.imgCollection.Images.SetKeyName(101, "1438776229_product.png");
     this.imgCollection.Images.SetKeyName(102, "1438776525_deliverables.png");
     this.imgCollection.Images.SetKeyName(103, "1438776535_Box_Empty.png");
     this.imgCollection.Images.SetKeyName(104, "1438776543_package-x-generic.png");
     this.imgCollection.Images.SetKeyName(105, "Address_Book.png");
     this.imgCollection.Images.SetKeyName(106, "barcode_icon (1).jpg");
     this.imgCollection.Images.SetKeyName(107, "barcode_icon.jpg");
     this.imgCollection.Images.SetKeyName(108, "connect_creating.png");
     this.imgCollection.Images.SetKeyName(109, "connect_no (1).png");
     this.imgCollection.Images.SetKeyName(110, "connect_no (2).png");
     this.imgCollection.Images.SetKeyName(111, "connect_no.png");
     this.imgCollection.Images.SetKeyName(112, "default_logo.png");
     this.imgCollection.Images.SetKeyName(113, "document-excel-icon - Copy - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(114, "document-excel-icon - Copy - Copy (2).png");
     this.imgCollection.Images.SetKeyName(115, "document-excel-icon - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(116, "document-excel-icon - Copy (2) - Copy.png");
     this.imgCollection.Images.SetKeyName(117, "document-excel-icon - Copy (2).png");
     this.imgCollection.Images.SetKeyName(118, "document-excel-icon - Copy (3).png");
     this.imgCollection.Images.SetKeyName(119, "document-excel-icon - Copy.png");
     this.imgCollection.Images.SetKeyName(120, "document-excel-icon.png");
     this.imgCollection.Images.SetKeyName(121, "Dust_factory_gas_industry_oil_plant_pollution_building_company_production_smoke-5" +
     "12 - Copy.png");
     this.imgCollection.Images.SetKeyName(122, "Dust_factory_gas_industry_oil_plant_pollution_building_company_production_smoke-5" +
     "12.png");
     this.imgCollection.Images.SetKeyName(123, "Excel-icon (1) - Copy - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(124, "Excel-icon (1) - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(125, "Excel-icon (1) - Copy.png");
     this.imgCollection.Images.SetKeyName(126, "Excel-icon (1).png");
     this.imgCollection.Images.SetKeyName(127, "Excel-icon (2) - Copy - Copy.png");
     this.imgCollection.Images.SetKeyName(128, "Excel-icon (2) - Copy.png");
     this.imgCollection.Images.SetKeyName(129, "Excel-icon (2).png");
     this.imgCollection.Images.SetKeyName(130, "Excel-icon.png");
     this.imgCollection.Images.SetKeyName(131, "file-complete-icon.png");
     this.imgCollection.Images.SetKeyName(132, "general_options.png");
     this.imgCollection.Images.SetKeyName(133, "Group-icon.png");
     this.imgCollection.Images.SetKeyName(134, "icon_company.png");
     this.imgCollection.Images.SetKeyName(135, "icon-companies.png");
     this.imgCollection.Images.SetKeyName(136, "icon-company-incorporation.png");
     this.imgCollection.Images.SetKeyName(137, "Icon-Printer.png");
     this.imgCollection.Images.SetKeyName(138, "Icon-Printer02-Black.png");
     this.imgCollection.Images.SetKeyName(139, "images.jpg");
     this.imgCollection.Images.SetKeyName(140, "location-icon-map-map-pin-icon.png");
     this.imgCollection.Images.SetKeyName(141, "map.png");
     this.imgCollection.Images.SetKeyName(142, "Multimedia_communication_flat_mobile_Technology-08-31-512.png");
     this.imgCollection.Images.SetKeyName(143, "point-512.png");
     this.imgCollection.Images.SetKeyName(144, "printer (1).png");
     this.imgCollection.Images.SetKeyName(145, "printer.png");
     this.imgCollection.Images.SetKeyName(146, "printer-icon-clip-art.jpg");
     this.imgCollection.Images.SetKeyName(147, "Receipt-2-icon.png");
     this.imgCollection.Images.SetKeyName(148, "Receipt-4-icon.png");
     this.imgCollection.Images.SetKeyName(149, "Receipt-icon.png");
     this.imgCollection.Images.SetKeyName(150, "redlaser-icon.png");
     this.imgCollection.Images.SetKeyName(151, "unnamed.png");
     this.imgCollection.Images.SetKeyName(152, "usb_port_2-512.png");
     this.imgCollection.Images.SetKeyName(153, "users-icon.png");
     this.imgCollection.Images.SetKeyName(154, "vector-printer-icon-14574274.jpg");
     this.imgCollection.Images.SetKeyName(155, "vspc-icon-256.png");
     this.imgCollection.Images.SetKeyName(156, "24-7.png");
     this.imgCollection.Images.SetKeyName(157, "A-baby-cot.png");
     this.imgCollection.Images.SetKeyName(158, "Account.png");
     this.imgCollection.Images.SetKeyName(159, "Add Event.png");
     this.imgCollection.Images.SetKeyName(160, "Alarm-clock.png");
     this.imgCollection.Images.SetKeyName(161, "A-rollaway-bed.png");
     this.imgCollection.Images.SetKeyName(162, "Autoship.png");
     this.imgCollection.Images.SetKeyName(163, "Baby.png");
     this.imgCollection.Images.SetKeyName(164, "Binary-tree.png");
     this.imgCollection.Images.SetKeyName(165, "Breakfast.png");
     this.imgCollection.Images.SetKeyName(166, "Business-info.png");
     this.imgCollection.Images.SetKeyName(167, "Calendar-selection-all.png");
     this.imgCollection.Images.SetKeyName(168, "Calendar-selection-day.png");
     this.imgCollection.Images.SetKeyName(169, "calendar-selection-month.png");
     this.imgCollection.Images.SetKeyName(170, "Calendar-selection-week.png");
     this.imgCollection.Images.SetKeyName(171, "Contact.png");
     this.imgCollection.Images.SetKeyName(172, "Couple.png");
     this.imgCollection.Images.SetKeyName(173, "Create-ticket.png");
     this.imgCollection.Images.SetKeyName(174, "Direct-walkway.png");
     this.imgCollection.Images.SetKeyName(175, "Distributor-report.png");
     this.imgCollection.Images.SetKeyName(176, "Download.png");
     this.imgCollection.Images.SetKeyName(177, "Drive.png");
     this.imgCollection.Images.SetKeyName(178, "Earning-statement.png");
     this.imgCollection.Images.SetKeyName(179, "Event-search.png");
     this.imgCollection.Images.SetKeyName(180, "Female-user-accept.png");
     this.imgCollection.Images.SetKeyName(181, "Female-user-add.png");
     this.imgCollection.Images.SetKeyName(182, "Female-user-edit.png");
     this.imgCollection.Images.SetKeyName(183, "Female-user-help.png");
     this.imgCollection.Images.SetKeyName(184, "Female-user-info.png");
     this.imgCollection.Images.SetKeyName(185, "Female-user-remove.png");
     this.imgCollection.Images.SetKeyName(186, "Female-user-search.png");
     this.imgCollection.Images.SetKeyName(187, "Female-user-warning.png");
     this.imgCollection.Images.SetKeyName(188, "Geology-view.png");
     this.imgCollection.Images.SetKeyName(189, "Globe-download.png");
     this.imgCollection.Images.SetKeyName(190, "Globe-warning.png");
     this.imgCollection.Images.SetKeyName(191, "Gift.png");
     this.imgCollection.Images.SetKeyName(192, "Insert-hyperlink.png");
     this.imgCollection.Images.SetKeyName(193, "Library.png");
     this.imgCollection.Images.SetKeyName(194, "Library2.png");
     this.imgCollection.Images.SetKeyName(195, "Link.png");
     this.imgCollection.Images.SetKeyName(196, "Mail-search.png");
     this.imgCollection.Images.SetKeyName(197, "Message-already-read.png");
     this.imgCollection.Images.SetKeyName(198, "My-tickets.png");
     this.imgCollection.Images.SetKeyName(199, "Order-history.png");
     this.imgCollection.Images.SetKeyName(200, "Ordering.png");
     this.imgCollection.Images.SetKeyName(201, "Packing1.png");
     this.imgCollection.Images.SetKeyName(202, "Payment-card.png");
     this.imgCollection.Images.SetKeyName(203, "Product-sale-report.png");
     this.imgCollection.Images.SetKeyName(204, "Rank History.png");
     this.imgCollection.Images.SetKeyName(205, "Reports.png");
     this.imgCollection.Images.SetKeyName(206, "Sales-by-payment-method.png");
     this.imgCollection.Images.SetKeyName(207, "Sales-report.png");
     this.imgCollection.Images.SetKeyName(208, "Search-globe.png");
     this.imgCollection.Images.SetKeyName(209, "Select-language.png");
     this.imgCollection.Images.SetKeyName(210, "Upline.png");
     this.imgCollection.Images.SetKeyName(211, "Upload.png");
     this.imgCollection.Images.SetKeyName(212, "Web-management.png");
     this.imgCollection.Images.SetKeyName(213, "Woman.png");
     this.imgCollection.Images.SetKeyName(214, "Zoom-in.png");
     this.imgCollection.Images.SetKeyName(215, "Zoom-out.png");
     this.imgCollection.Images.SetKeyName(216, "addons256.png");
     this.imgCollection.Images.SetKeyName(217, "analysis256.png");
     this.imgCollection.Images.SetKeyName(218, "announcements256.png");
     this.imgCollection.Images.SetKeyName(219, "attachment256.png");
     this.imgCollection.Images.SetKeyName(220, "Autocomplete256.png");
     this.imgCollection.Images.SetKeyName(221, "billboard256.png");
     this.imgCollection.Images.SetKeyName(222, "calendar-selection-all256.png");
     this.imgCollection.Images.SetKeyName(223, "calendar-selection-day256.png");
     this.imgCollection.Images.SetKeyName(224, "calendar-selection-month256.png");
     this.imgCollection.Images.SetKeyName(225, "calendar-selection-week256.png");
     this.imgCollection.Images.SetKeyName(226, "catalog256.png");
     this.imgCollection.Images.SetKeyName(227, "content256.png");
     this.imgCollection.Images.SetKeyName(228, "content-reorder256.png");
     this.imgCollection.Images.SetKeyName(229, "content-tree256.png");
     this.imgCollection.Images.SetKeyName(230, "continue256.png");
     this.imgCollection.Images.SetKeyName(231, "examples256.png");
     this.imgCollection.Images.SetKeyName(232, "file-explorer256.png");
     this.imgCollection.Images.SetKeyName(233, "Folder-Accept256.png");
     this.imgCollection.Images.SetKeyName(234, "Folder-Add256.png");
     this.imgCollection.Images.SetKeyName(235, "Folder-Delete256.png");
     this.imgCollection.Images.SetKeyName(236, "Folder-Info256.png");
     this.imgCollection.Images.SetKeyName(237, "Folder-Warning256.png");
     this.imgCollection.Images.SetKeyName(238, "glossary256.png");
     this.imgCollection.Images.SetKeyName(239, "go-into256.png");
     this.imgCollection.Images.SetKeyName(240, "hide-left256.png");
     this.imgCollection.Images.SetKeyName(241, "hide-right256.png");
     this.imgCollection.Images.SetKeyName(242, "key256.png");
     this.imgCollection.Images.SetKeyName(243, "keys256.png");
     this.imgCollection.Images.SetKeyName(244, "layout256.png");
     this.imgCollection.Images.SetKeyName(245, "locked256.png");
     this.imgCollection.Images.SetKeyName(246, "mailbox256.png");
     this.imgCollection.Images.SetKeyName(247, "maintenance256.png");
     this.imgCollection.Images.SetKeyName(248, "navigate-down256.png");
     this.imgCollection.Images.SetKeyName(249, "navigate-left256.png");
     this.imgCollection.Images.SetKeyName(250, "navigate-right256.png");
     this.imgCollection.Images.SetKeyName(251, "navigate-up256.png");
     this.imgCollection.Images.SetKeyName(252, "options256.png");
     this.imgCollection.Images.SetKeyName(253, "1438776229_product.png");
     this.imgCollection.Images.SetKeyName(254, "1438776525_deliverables.png");
     this.imgCollection.Images.SetKeyName(255, "1438776535_Box_Empty.png");
     this.imgCollection.Images.SetKeyName(256, "1438776543_package-x-generic.png");
     this.imgCollection.Images.SetKeyName(257, "1438862627_vector_65_04.png");
     this.imgCollection.Images.SetKeyName(258, "1438862630_atm-money-machine.png");
     this.imgCollection.Images.SetKeyName(259, "1438862633_atm-machine.png");
     this.imgCollection.Images.SetKeyName(260, "1438862635_Emblem-Money-64.png");
     this.imgCollection.Images.SetKeyName(261, "1438862637_safe.png");
     this.imgCollection.Images.SetKeyName(262, "1438862639_money_bag.png");
     this.imgCollection.Images.SetKeyName(263, "1438862738_7.png");
     this.imgCollection.Images.SetKeyName(264, "1438862746_list.png");
     this.imgCollection.Images.SetKeyName(265, "1438862750_download box seule.png");
     this.imgCollection.Images.SetKeyName(266, "1438862755_inventory-maintenance.png");
     this.imgCollection.Images.SetKeyName(267, "1438862762_Box.png");
     this.imgCollection.Images.SetKeyName(268, "1438862828_floppy-disk.png");
     this.imgCollection.Images.SetKeyName(269, "1438862828_vector_66_12.png");
     this.imgCollection.Images.SetKeyName(270, "1438862829_Black-Drive-Backup.png");
     this.imgCollection.Images.SetKeyName(271, "1438862831_backup.png");
     this.imgCollection.Images.SetKeyName(272, "1438862832__Drive_Restore.png");
     this.imgCollection.Images.SetKeyName(273, "1438862834_restore.png");
     this.imgCollection.Images.SetKeyName(274, "1438862836_restore_window.png");
     this.imgCollection.Images.SetKeyName(275, "Address_Book.png");
     this.imgCollection.Images.SetKeyName(276, "1438863911_box-in.png");
     this.imgCollection.Images.SetKeyName(277, "1438863913_03_In.png");
     this.imgCollection.Images.SetKeyName(278, "1438863914_open_in_browser.png");
     this.imgCollection.Images.SetKeyName(279, "1438863917_sign-out.png");
     this.imgCollection.Images.SetKeyName(280, "1438863919_sign-out.png");
     this.imgCollection.Images.SetKeyName(281, "1438863921_box-out.png");
     this.imgCollection.Images.SetKeyName(282, "1438863924_02_Out.png");
     //
     // bbiKhachHang
     //
     this.bbiKhachHang.Caption = "Khách Hàng";
     this.bbiKhachHang.Id = 25;
     this.bbiKhachHang.ImageIndex = 13;
     this.bbiKhachHang.LargeImageIndex = 198;
     this.bbiKhachHang.Name = "bbiKhachHang";
     toolTipItem1.Text = "Quản lý khách hàng";
     superToolTip1.Items.Add(toolTipItem1);
     this.bbiKhachHang.SuperTip = superToolTip1;
     this.bbiKhachHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKhachHang_ItemClick);
     //
     // bbiHangHoa
     //
     this.bbiHangHoa.Caption = "Hàng Hoá";
     this.bbiHangHoa.Id = 27;
     this.bbiHangHoa.ImageIndex = 47;
     this.bbiHangHoa.LargeImageIndex = 158;
     this.bbiHangHoa.Name = "bbiHangHoa";
     toolTipItem2.Text = "Quản lý hàng hoá, dịch vụ";
     superToolTip2.Items.Add(toolTipItem2);
     this.bbiHangHoa.SuperTip = superToolTip2;
     this.bbiHangHoa.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiHangHoa_ItemClick);
     //
     // bbiNhomHang
     //
     this.bbiNhomHang.Caption = "Nhóm Hàng";
     this.bbiNhomHang.Id = 29;
     this.bbiNhomHang.ImageIndex = 75;
     this.bbiNhomHang.LargeImageIndex = 188;
     this.bbiNhomHang.Name = "bbiNhomHang";
     toolTipItem3.Text = "Nhóm sản phẩm";
     superToolTip3.Items.Add(toolTipItem3);
     this.bbiNhomHang.SuperTip = superToolTip3;
     this.bbiNhomHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhomHang_ItemClick);
     //
     // bbiKho
     //
     this.bbiKho.Caption = "Kho";
     this.bbiKho.Id = 30;
     this.bbiKho.ImageIndex = 14;
     this.bbiKho.LargeImageIndex = 201;
     this.bbiKho.Name = "bbiKho";
     toolTipItem4.Text = "Quản lý kho hàng";
     superToolTip4.Items.Add(toolTipItem4);
     this.bbiKho.SuperTip = superToolTip4;
     this.bbiKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKho_ItemClick);
     //
     // bbiAuthor
     //
     this.bbiAuthor.Caption = "Tác giả";
     this.bbiAuthor.Id = 38;
     this.bbiAuthor.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("bbiAuthor.LargeGlyph")));
     this.bbiAuthor.Name = "bbiAuthor";
     //
     // bbiKhuVuc
     //
     this.bbiKhuVuc.Caption = "Khu Vực";
     this.bbiKhuVuc.Id = 133;
     this.bbiKhuVuc.ImageIndex = 19;
     this.bbiKhuVuc.LargeImageIndex = 172;
     this.bbiKhuVuc.Name = "bbiKhuVuc";
     this.bbiKhuVuc.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiKhuVuc_ItemClick);
     //
     // bbiNhapKho
     //
     this.bbiNhapKho.Caption = "Nhập";
     this.bbiNhapKho.Description = "Quản lý nhập kho";
     this.bbiNhapKho.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiNhapKho.Glyph")));
     this.bbiNhapKho.Hint = "Quản lý nhập kho";
     this.bbiNhapKho.Id = 136;
     this.bbiNhapKho.LargeImageIndex = 276;
     this.bbiNhapKho.Name = "bbiNhapKho";
     toolTipItem5.Text = "Quản lý nhập kho";
     superToolTip5.Items.Add(toolTipItem5);
     this.bbiNhapKho.SuperTip = superToolTip5;
     this.bbiNhapKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhapKho_ItemClick);
     //
     // bbiXuatKho
     //
     this.bbiXuatKho.Caption = "Xuất";
     this.bbiXuatKho.Description = "Quản lý xuất kho";
     this.bbiXuatKho.Glyph = ((System.Drawing.Image)(resources.GetObject("bbiXuatKho.Glyph")));
     this.bbiXuatKho.Hint = "Quản lý xuất kho";
     this.bbiXuatKho.Id = 138;
     this.bbiXuatKho.LargeImageIndex = 281;
     this.bbiXuatKho.Name = "bbiXuatKho";
     toolTipItem6.Text = "Quản lý xuất kho\r\n";
     superToolTip6.Items.Add(toolTipItem6);
     this.bbiXuatKho.SuperTip = superToolTip6;
     this.bbiXuatKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatKho_ItemClick);
     //
     // bbiTonKho
     //
     this.bbiTonKho.Caption = "Tồn Kho";
     this.bbiTonKho.Id = 187;
     this.bbiTonKho.ImageIndex = 30;
     this.bbiTonKho.LargeImageIndex = 267;
     this.bbiTonKho.Name = "bbiTonKho";
     this.bbiTonKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTonKho_ItemClick);
     //
     // lblServer
     //
     this.lblServer.Caption = "Máy Chủ: ";
     this.lblServer.Id = 227;
     this.lblServer.ImageIndex = 233;
     this.lblServer.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblServer.ItemAppearance.Normal.Options.UseFont = true;
     this.lblServer.Name = "lblServer";
     toolTipTitleItem1.Text = "Nhấn đúp chuột vào để mở phần mềm quản lý cơ sở dữ liệu";
     toolTipItem7.LeftIndent = 6;
     toolTipItem7.Text = "Chú ý: mọi thao tác trên trên phần mềm quản lý cơ sở dữ liệu đều phải sao lưu dữ " +
     "liệu trước, phòng trường hợp thao tác nhằm, hoặc lỗi do sự cố ngoài ý muốn...";
     superToolTip7.Items.Add(toolTipTitleItem1);
     superToolTip7.Items.Add(toolTipItem7);
     this.lblServer.SuperTip = superToolTip7;
     this.lblServer.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // lblDatabase
     //
     this.lblDatabase.Caption = "CSDL:";
     this.lblDatabase.Id = 237;
     this.lblDatabase.ImageIndex = 273;
     this.lblDatabase.ItemAppearance.Normal.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.lblDatabase.ItemAppearance.Normal.Options.UseFont = true;
     this.lblDatabase.Name = "lblDatabase";
     toolTipTitleItem2.Text = "Nhấn đúp chuột vào đây để sử dụng một cơ sở dữ liệu khác.";
     toolTipItem8.LeftIndent = 6;
     toolTipItem8.Text = "Chú ý: Sau khi cấu hình thành công, khởi động lại phần mềm để nạp cấu hình mới.";
     superToolTip8.Items.Add(toolTipTitleItem2);
     superToolTip8.Items.Add(toolTipItem8);
     this.lblDatabase.SuperTip = superToolTip8;
     this.lblDatabase.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // ISystem
     //
     this.ISystem.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.ISystem.Caption = "Hệ Thống";
     this.ISystem.Id = 255;
     this.ISystem.ImageIndex = 78;
     this.ISystem.LargeImageIndex = 78;
     this.ISystem.Name = "ISystem";
     this.ISystem.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInit
     //
     this.IInit.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInit.Caption = "Nhập Số Dư Ban Đầu";
     this.IInit.Id = 256;
     this.IInit.ImageIndex = 79;
     this.IInit.LargeImageIndex = 79;
     this.IInit.Name = "IInit";
     this.IInit.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInward
     //
     this.IInward.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInward.Caption = "Nhập Kho";
     this.IInward.Id = 257;
     this.IInward.ImageIndex = 28;
     this.IInward.LargeImageIndex = 28;
     this.IInward.Name = "IInward";
     this.IInward.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IOutward
     //
     this.IOutward.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IOutward.Caption = "Xuất Kho";
     this.IOutward.Id = 258;
     this.IOutward.ImageIndex = 31;
     this.IOutward.LargeImageIndex = 31;
     this.IOutward.Name = "IOutward";
     this.IOutward.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // ITransfer
     //
     this.ITransfer.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.ITransfer.Caption = "Chuyển Kho";
     this.ITransfer.Id = 259;
     this.ITransfer.ImageIndex = 25;
     this.ITransfer.LargeImageIndex = 25;
     this.ITransfer.Name = "ITransfer";
     this.ITransfer.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IAdjustment
     //
     this.IAdjustment.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IAdjustment.Caption = "Kiểm Kê";
     this.IAdjustment.Id = 260;
     this.IAdjustment.ImageIndex = 27;
     this.IAdjustment.LargeImageIndex = 27;
     this.IAdjustment.Name = "IAdjustment";
     this.IAdjustment.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IInventory
     //
     this.IInventory.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IInventory.Caption = "Tồn Kho";
     this.IInventory.Id = 261;
     this.IInventory.ImageIndex = 30;
     this.IInventory.LargeImageIndex = 30;
     this.IInventory.Name = "IInventory";
     this.IInventory.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonItemStyles.SmallWithText;
     //
     // IPacket
     //
     this.IPacket.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.IPacket.Caption = "Đóng Gói";
     this.IPacket.Id = 264;
     this.IPacket.ImageIndex = 26;
     this.IPacket.LargeImageIndex = 26;
     this.IPacket.Name = "IPacket";
     //
     // bbiClose
     //
     this.bbiClose.Caption = "Kết Thúc";
     this.bbiClose.Description = "Kết thúc";
     this.bbiClose.Hint = "Kết thúc";
     this.bbiClose.Id = 132;
     this.bbiClose.ImageIndex = 0;
     this.bbiClose.LargeImageIndex = 239;
     this.bbiClose.Name = "bbiClose";
     this.bbiClose.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.BbiCloseItemClick);
     //
     // bbiUserGroup
     //
     this.bbiUserGroup.Caption = "Vai Trò && Quyền Hạn";
     this.bbiUserGroup.Id = 295;
     this.bbiUserGroup.ImageIndex = 2;
     this.bbiUserGroup.LargeImageIndex = 2;
     this.bbiUserGroup.Name = "bbiUserGroup";
     this.bbiUserGroup.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiUsers
     //
     this.bbiUsers.Caption = "Người Dùng";
     this.bbiUsers.Id = 296;
     this.bbiUsers.ImageIndex = 1;
     this.bbiUsers.LargeImageIndex = 1;
     this.bbiUsers.Name = "bbiUsers";
     this.bbiUsers.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // bbiUpdateOnline
     //
     this.bbiUpdateOnline.Caption = "Cập Nhật Trực Tuyến";
     this.bbiUpdateOnline.Id = 300;
     this.bbiUpdateOnline.ImageIndex = 86;
     this.bbiUpdateOnline.Name = "bbiUpdateOnline";
     //
     // bbiUpdateOffline
     //
     this.bbiUpdateOffline.Caption = "Cập Nhật Thông Thường";
     this.bbiUpdateOffline.Id = 301;
     this.bbiUpdateOffline.ImageIndex = 85;
     this.bbiUpdateOffline.Name = "bbiUpdateOffline";
     //
     // biiHelpNormal
     //
     this.biiHelpNormal.Caption = "Tài Liệu Hướng Dẫn";
     this.biiHelpNormal.Id = 306;
     this.biiHelpNormal.ImageIndex = 89;
     this.biiHelpNormal.LargeImageIndex = 89;
     this.biiHelpNormal.Name = "biiHelpNormal";
     //
     // biiHelpVideo
     //
     this.biiHelpVideo.Caption = "Video Hướng Dẫn";
     this.biiHelpVideo.Id = 307;
     this.biiHelpVideo.ImageIndex = 90;
     this.biiHelpVideo.LargeImageIndex = 90;
     this.biiHelpVideo.Name = "biiHelpVideo";
     //
     // bbiSaoLuu
     //
     this.bbiSaoLuu.Caption = "Sao Lưu";
     this.bbiSaoLuu.Id = 315;
     this.bbiSaoLuu.ImageIndex = 55;
     this.bbiSaoLuu.LargeImageIndex = 177;
     this.bbiSaoLuu.Name = "bbiSaoLuu";
     this.bbiSaoLuu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiBackUp_ItemClick);
     //
     // bbiPhucHoi
     //
     this.bbiPhucHoi.Caption = "Phục Hồi";
     this.bbiPhucHoi.Id = 316;
     this.bbiPhucHoi.ImageIndex = 56;
     this.bbiPhucHoi.LargeImageIndex = 271;
     this.bbiPhucHoi.Name = "bbiPhucHoi";
     this.bbiPhucHoi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiPhucHoi_ItemClick);
     //
     // bbiXuatNhapTon
     //
     this.bbiXuatNhapTon.Caption = "Xuất Nhập Tồn";
     this.bbiXuatNhapTon.Id = 318;
     this.bbiXuatNhapTon.ImageIndex = 33;
     this.bbiXuatNhapTon.LargeImageIndex = 103;
     this.bbiXuatNhapTon.Name = "bbiXuatNhapTon";
     this.bbiXuatNhapTon.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiXuatNhapTon_ItemClick);
     //
     // bbiLichSu
     //
     this.bbiLichSu.Caption = "Lịch Sử";
     this.bbiLichSu.Id = 319;
     this.bbiLichSu.ImageIndex = 68;
     this.bbiLichSu.LargeImageIndex = 238;
     this.bbiLichSu.Name = "bbiLichSu";
     this.bbiLichSu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiLichSu_ItemClick);
     //
     // bbiTheKho
     //
     this.bbiTheKho.Caption = "Thẻ Kho";
     this.bbiTheKho.Id = 320;
     this.bbiTheKho.ImageIndex = 26;
     this.bbiTheKho.LargeImageIndex = 218;
     this.bbiTheKho.Name = "bbiTheKho";
     this.bbiTheKho.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTheKho_ItemClick);
     //
     // bbiNhanVien
     //
     this.bbiNhanVien.Caption = "Nhân Viên";
     this.bbiNhanVien.Id = 322;
     this.bbiNhanVien.LargeImageIndex = 163;
     this.bbiNhanVien.Name = "bbiNhanVien";
     this.bbiNhanVien.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiNhanVien_ItemClick);
     //
     // bbiCuaHang
     //
     this.bbiCuaHang.Caption = "Cửa Hàng";
     this.bbiCuaHang.Id = 323;
     this.bbiCuaHang.LargeImageIndex = 246;
     this.bbiCuaHang.Name = "bbiCuaHang";
     this.bbiCuaHang.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCuaHang_ItemClick);
     //
     // bbiThuChi
     //
     this.bbiThuChi.Caption = "Thu Chi";
     this.bbiThuChi.Id = 324;
     this.bbiThuChi.ImageIndex = 39;
     this.bbiThuChi.LargeImageIndex = 147;
     this.bbiThuChi.Name = "bbiThuChi";
     this.bbiThuChi.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiThuChi_ItemClick);
     //
     // bbiCongNo
     //
     this.bbiCongNo.Caption = "Công Nợ";
     this.bbiCongNo.Id = 325;
     this.bbiCongNo.LargeImageIndex = 262;
     this.bbiCongNo.Name = "bbiCongNo";
     this.bbiCongNo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCongNo_ItemClick);
     //
     // bbiTheNo
     //
     this.bbiTheNo.Caption = "Thẻ Nợ";
     this.bbiTheNo.Id = 326;
     this.bbiTheNo.LargeImageIndex = 257;
     this.bbiTheNo.Name = "bbiTheNo";
     this.bbiTheNo.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiTheNo_ItemClick);
     //
     // bbiDoanhThu
     //
     this.bbiDoanhThu.Caption = "Doanh Thu";
     this.bbiDoanhThu.Id = 328;
     this.bbiDoanhThu.LargeImageIndex = 263;
     this.bbiDoanhThu.Name = "bbiDoanhThu";
     this.bbiDoanhThu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiDoanhThu_ItemClick);
     //
     // bbiCongNoChungTu
     //
     this.bbiCongNoChungTu.Caption = "Công Nợ Chứng Từ";
     this.bbiCongNoChungTu.Id = 329;
     this.bbiCongNoChungTu.LargeImageIndex = 93;
     this.bbiCongNoChungTu.Name = "bbiCongNoChungTu";
     this.bbiCongNoChungTu.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bbiCongNoChungTu_ItemClick);
     //
     // rbpHeThong
     //
     this.rbpHeThong.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.rbpgDong});
     this.rbpHeThong.Name = "rbpHeThong";
     this.rbpHeThong.Text = "Hệ Thống";
     //
     // rbpgDong
     //
     this.rbpgDong.ItemLinks.Add(this.bbiClose);
     this.rbpgDong.ItemLinks.Add(this.bbiSaoLuu);
     this.rbpgDong.ItemLinks.Add(this.bbiPhucHoi);
     this.rbpgDong.KeyTip = "KE";
     this.rbpgDong.Name = "rbpgDong";
     this.rbpgDong.ShowCaptionButton = false;
     this.rbpgDong.Text = "Hệ Thống";
     //
     // rbpDanhMuc
     //
     this.rbpDanhMuc.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.rbpgDoiTac,
     this.rbpgKhoHang,
     this.rbpgThongTinCuaHang});
     this.rbpDanhMuc.Name = "rbpDanhMuc";
     this.rbpDanhMuc.Text = "Danh Mục";
     //
     // rbpgDoiTac
     //
     this.rbpgDoiTac.ItemLinks.Add(this.bbiKhuVuc);
     this.rbpgDoiTac.ItemLinks.Add(this.bbiKhachHang);
     this.rbpgDoiTac.Name = "rbpgDoiTac";
     this.rbpgDoiTac.ShowCaptionButton = false;
     this.rbpgDoiTac.Text = "Đối Tác";
     //
     // rbpgKhoHang
     //
     this.rbpgKhoHang.ItemLinks.Add(this.bbiKho);
     this.rbpgKhoHang.ItemLinks.Add(this.bbiNhomHang);
     this.rbpgKhoHang.ItemLinks.Add(this.bbiHangHoa);
     this.rbpgKhoHang.Name = "rbpgKhoHang";
     this.rbpgKhoHang.ShowCaptionButton = false;
     this.rbpgKhoHang.Text = "Kho Hàng";
     //
     // rbpgThongTinCuaHang
     //
     this.rbpgThongTinCuaHang.ItemLinks.Add(this.bbiNhanVien);
     this.rbpgThongTinCuaHang.ItemLinks.Add(this.bbiCuaHang);
     this.rbpgThongTinCuaHang.Name = "rbpgThongTinCuaHang";
     this.rbpgThongTinCuaHang.Text = "Thông Tin Cửa Hàng";
     //
     // rbpKhoHang
     //
     this.rbpKhoHang.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
     this.rbpgQuanLyKho,
     this.rbpgBaoCao,
     this.rpbgCongNo,
     this.rpbgDoanhThu});
     this.rbpKhoHang.Name = "rbpKhoHang";
     this.rbpKhoHang.Text = "Kho Hàng";
     //
     // rbpgQuanLyKho
     //
     this.rbpgQuanLyKho.ItemLinks.Add(this.bbiNhapKho);
     this.rbpgQuanLyKho.ItemLinks.Add(this.bbiXuatKho);
     this.rbpgQuanLyKho.Name = "rbpgQuanLyKho";
     this.rbpgQuanLyKho.ShowCaptionButton = false;
     this.rbpgQuanLyKho.Text = "Quản Lý Kho";
     //
     // rbpgBaoCao
     //
     this.rbpgBaoCao.ItemLinks.Add(this.bbiTonKho);
     this.rbpgBaoCao.ItemLinks.Add(this.bbiXuatNhapTon);
     this.rbpgBaoCao.ItemLinks.Add(this.bbiTheKho);
     this.rbpgBaoCao.ItemLinks.Add(this.bbiLichSu);
     this.rbpgBaoCao.Name = "rbpgBaoCao";
     this.rbpgBaoCao.Text = "Báo Cáo";
     //
     // rpbgCongNo
     //
     this.rpbgCongNo.ItemLinks.Add(this.bbiThuChi);
     this.rpbgCongNo.ItemLinks.Add(this.bbiCongNo);
     this.rpbgCongNo.ItemLinks.Add(this.bbiTheNo);
     this.rpbgCongNo.ItemLinks.Add(this.bbiCongNoChungTu);
     this.rpbgCongNo.Name = "rpbgCongNo";
     this.rpbgCongNo.Text = "Công Nợ";
     //
     // rpbgDoanhThu
     //
     this.rpbgDoanhThu.ItemLinks.Add(this.bbiDoanhThu);
     this.rpbgDoanhThu.Name = "rpbgDoanhThu";
     this.rpbgDoanhThu.Text = "Doanh Thu";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // rbsMain
     //
     this.rbsMain.Location = new System.Drawing.Point(0, 736);
     this.rbsMain.Name = "rbsMain";
     this.rbsMain.Ribbon = this.rbcMain;
     this.rbsMain.Size = new System.Drawing.Size(1016, 31);
     //
     // tabMdi
     //
     this.tabMdi.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPagesAndTabControlHeader;
     this.tabMdi.HeaderButtons = ((DevExpress.XtraTab.TabButtons)((((DevExpress.XtraTab.TabButtons.Prev | DevExpress.XtraTab.TabButtons.Next)
     | DevExpress.XtraTab.TabButtons.Close)
     | DevExpress.XtraTab.TabButtons.Default)));
     this.tabMdi.HeaderButtonsShowMode = DevExpress.XtraTab.TabButtonShowMode.Always;
     this.tabMdi.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Horizontal;
     this.tabMdi.MdiParent = this;
     this.tabMdi.SetNextMdiChildMode = DevExpress.XtraTabbedMdi.SetNextMdiChildMode.Windows;
     this.tabMdi.ShowHeaderFocus = DevExpress.Utils.DefaultBoolean.True;
     this.tabMdi.ShowToolTips = DevExpress.Utils.DefaultBoolean.True;
     //
     // ImgSmall
     //
     this.ImgSmall.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("ImgSmall.ImageStream")));
     this.ImgSmall.Images.SetKeyName(0, "Ket Thuc.png");
     this.ImgSmall.Images.SetKeyName(1, "1285643018_gnutella.png");
     this.ImgSmall.Images.SetKeyName(2, "1285643049_network-offline.png");
     this.ImgSmall.Images.SetKeyName(3, "1284429314_import.png");
     this.ImgSmall.Images.SetKeyName(4, "1287538982_help-contents.png");
     //
     // FrmMain
     //
     this.ClientSize = new System.Drawing.Size(1016, 767);
     this.Controls.Add(this.rbsMain);
     this.Controls.Add(this.rbcMain);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "FrmMain";
     this.Ribbon = this.rbcMain;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.StatusBar = this.rbsMain;
     this.Text = "Phần Mềm Quản Lý Kho";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.rbcMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imgCollection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tabMdi)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImgSmall)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #50
0
        public void loadstart(DevExpress.XtraGrid.GridControl gridControl1, GridView gridView1, ComboBoxEdit cbldt, LookUpEdit ledv, DateEdit denct, DateEdit denht,
                              DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit mahang, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit soluong, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit soluongqd, LookUpEdit ledt, ToolStripButton tsbtsua, ToolStripButton tsbtxoa, ToolStripButton tsbtcat,
                              ToolStripButton tsbtboghi, ToolStripButton tsbtghiso, ToolStripButton tsbtnap, ToolStripSplitButton tsbtin, string ngaychungtu, string userid, string branchid, string active, DataTable dt, DataTable dt1, DevExpress.XtraGrid.GridControl gridControl2, GridView gridView2, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit dongia, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit thanhtien, LookUpEdit lenv)
        {
            cbldt.Properties.Items.Clear();
            cbldt.Properties.Items.Add("Khách hàng");
            cbldt.Properties.Items.Add("Nhà cung cấp");
            cbldt.Properties.Items.Add("Nhân viên");
            cbldt.SelectedIndex = 0;

            DataTable da   = new DataTable();
            DataTable temp = new DataTable();

            temp.Columns.Add("Mã kho");
            temp.Columns.Add("Tên kho");
            da = gen.GetTable("select * from Stock where StockID in (select StockID from MSC_UserJoinStock where UserID='" + userid + "') order by StockCode");
            for (int i = 0; i < da.Rows.Count; i++)
            {
                DataRow dr = temp.NewRow();
                dr[0] = da.Rows[i][1].ToString();
                dr[1] = da.Rows[i][2].ToString();
                temp.Rows.Add(dr);
            }
            ledv.Properties.DataSource    = temp;
            ledv.Properties.DisplayMember = "Mã kho";
            ledv.Properties.ValueMember   = "Mã kho";
            ledv.Properties.PopupWidth    = 300;

            da = gen.GetTable("select InventoryItemCode,InventoryItemName from InventoryItem where InventoryItemID in (select Parent from InventoryItem ) order by InventoryItemCode");
            DataTable temp3 = new DataTable();

            temp3.Columns.Add("Mã hàng");
            temp3.Columns.Add("Tên hàng");
            for (int i = 0; i < da.Rows.Count; i++)
            {
                DataRow dr = temp3.NewRow();
                dr[0] = da.Rows[i][0].ToString();
                dr[1] = da.Rows[i][1].ToString();
                temp3.Rows.Add(dr);
            }
            mahang.DataSource    = temp3;
            mahang.DisplayMember = "Mã hàng";
            mahang.ValueMember   = "Mã hàng";

            da = gen.GetTable("select AccountingObjectCode,AccountingObjectName from AccountingObject a, Branch b where a.BranchID=b.BranchID and b.BranchID='" + branchid + "' and IsEmployee='True' order by AccountingObjectCode");
            DataTable temp4 = new DataTable();

            temp4.Columns.Add("Mã nhân viên");
            temp4.Columns.Add("Tên nhân viên");
            for (int i = 0; i < da.Rows.Count; i++)
            {
                DataRow dr = temp4.NewRow();
                dr[0] = da.Rows[i][0].ToString();
                dr[1] = da.Rows[i][1].ToString();
                temp4.Rows.Add(dr);
            }
            lenv.Properties.DataSource    = temp4;
            lenv.Properties.DisplayMember = "Mã nhân viên";
            lenv.Properties.ValueMember   = "Mã nhân viên";
            lenv.Properties.PopupWidth    = 300;

            dt.Columns.Add("Mã hàng", Type.GetType("System.String"));
            dt.Columns.Add("Tên hàng");
            dt.Columns.Add("Số lượng", Type.GetType("System.Double"));
            dt.Columns.Add("Số lượng quy đổi", Type.GetType("System.Double"));
            dt.Columns.Add("Diễn giải");
            gridControl1.DataSource = dt;
            gridView1.Columns["Mã hàng"].ColumnEdit          = mahang;
            gridView1.Columns["Số lượng"].ColumnEdit         = soluong;
            gridView1.Columns["Số lượng quy đổi"].ColumnEdit = soluongqd;

            gridView1.Columns["Diễn giải"].Width = 300;

            gridView1.Columns["Số lượng"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView1.Columns["Số lượng"].DisplayFormat.FormatString = "{0:n0}";

            gridView1.Columns["Số lượng quy đổi"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView1.Columns["Số lượng quy đổi"].DisplayFormat.FormatString = "{0:n2}";

            gridView1.Columns["Số lượng"].SummaryItem.SummaryType           = DevExpress.Data.SummaryItemType.Sum;
            gridView1.Columns["Số lượng"].SummaryItem.DisplayFormat         = "{0:n0}";
            gridView1.Columns["Số lượng quy đổi"].SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Sum;
            gridView1.Columns["Số lượng quy đổi"].SummaryItem.DisplayFormat = "{0:n2}";

            gridView1.Columns[0].SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Count;
            gridView1.Columns[0].SummaryItem.DisplayFormat = "Số dòng = {0}";


            dt1.Columns.Add("Mã hàng", Type.GetType("System.String"));
            dt1.Columns.Add("Tên hàng");
            dt1.Columns.Add("Số lượng", Type.GetType("System.Double"));
            dt1.Columns.Add("Đơn giá", Type.GetType("System.Double"));
            dt1.Columns.Add("Thành tiền", Type.GetType("System.Double"));
            dt1.Columns.Add("Diễn giải");
            gridControl2.DataSource = dt1;
            gridView2.Columns["Đơn giá"].ColumnEdit    = dongia;
            gridView2.Columns["Thành tiền"].ColumnEdit = thanhtien;

            gridView2.Columns["Số lượng"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView2.Columns["Số lượng"].DisplayFormat.FormatString = "{0:n0}";

            gridView2.Columns["Số lượng"].SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Sum;
            gridView2.Columns["Số lượng"].SummaryItem.DisplayFormat = "{0:n0}";

            gridView2.Columns["Đơn giá"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView2.Columns["Đơn giá"].DisplayFormat.FormatString = "{0:n2}";
            gridView2.Columns["Đơn giá"].SummaryItem.SummaryType    = DevExpress.Data.SummaryItemType.Sum;
            gridView2.Columns["Đơn giá"].SummaryItem.DisplayFormat  = "{0:n2}";

            gridView2.Columns["Thành tiền"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView2.Columns["Thành tiền"].DisplayFormat.FormatString = "{0:n0}";
            gridView2.Columns["Thành tiền"].SummaryItem.SummaryType    = DevExpress.Data.SummaryItemType.Sum;
            gridView2.Columns["Thành tiền"].SummaryItem.DisplayFormat  = "{0:n0}";

            gridView2.Columns[0].SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Count;
            gridView2.Columns[0].SummaryItem.DisplayFormat = "Số dòng = {0}";

            gridView2.Columns["Mã hàng"].OptionsColumn.AllowEdit  = false;
            gridView2.Columns["Tên hàng"].OptionsColumn.AllowEdit = false;
            gridView2.Columns["Số lượng"].OptionsColumn.AllowEdit = false;
        }
        public void LlenarGridConsulta2()
        {
            DgvGeneral.Columns.Clear();
            DgvGeneral.OptionsView.ColumnAutoWidth = false;
            DataViewManager dvm    = new DataViewManager(dsConsulta2);
            DataView        dvMain = dvm.CreateDataView(dsConsulta2.Tables[0]);

            DgvGeneral.OptionsBehavior.AutoPopulateColumns = false;
            GctrlGeneral.DataSource = dvMain;

            string[] captions = new[] { "CodArea", "Area", "CodMateria", "Materia", "Nota P1", "Porc. P1", "Nota P2", "Porc. P2",
                                        "Nota P3", "Porc. P3", "Nota P4", "Porc. P4", "Acumulado", "Fallas" };

            GridColumn[] col = new GridColumn[dsConsulta2.Tables[0].Columns.Count];
            for (int i = 0; i < dsConsulta2.Tables[0].Columns.Count; i++)
            {
                col[i] = DgvGeneral.Columns.AddField(dsConsulta2.Tables[0].Columns[i].Caption.Trim());
                col[i].VisibleIndex = i;
                col[i].Caption      = captions[i];
                col[i].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;

                if (i == 0 || i == 2)
                {
                    col[i].Visible = false;
                }
            }

            DevExpress.XtraEditors.Repository.RepositoryItemTextEdit numerico = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            //numerico.ReadOnly = true;
            numerico.Mask.EditMask = "n0";
            numerico.Mask.UseMaskAsDisplayFormat = true;
            numerico.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;

            DevExpress.XtraEditors.Repository.RepositoryItemTextEdit numerico1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            //numerico2.ReadOnly = true;
            numerico1.Mask.EditMask = "n1";
            numerico1.Mask.UseMaskAsDisplayFormat = true;
            numerico1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;

            DevExpress.XtraEditors.Repository.RepositoryItemTextEdit numerico2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            //numerico2.ReadOnly = true;
            numerico2.Mask.EditMask = "n";
            numerico2.Mask.UseMaskAsDisplayFormat = true;
            numerico2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;

            DgvGeneral.Columns[4].ColumnEdit  = numerico2;
            DgvGeneral.Columns[5].ColumnEdit  = numerico2;
            DgvGeneral.Columns[6].ColumnEdit  = numerico2;
            DgvGeneral.Columns[7].ColumnEdit  = numerico2;
            DgvGeneral.Columns[8].ColumnEdit  = numerico2;
            DgvGeneral.Columns[9].ColumnEdit  = numerico2;
            DgvGeneral.Columns[10].ColumnEdit = numerico2;
            DgvGeneral.Columns[11].ColumnEdit = numerico2;
            DgvGeneral.Columns[12].ColumnEdit = numerico2;


            DgvGeneral.Columns[13].ColumnEdit = numerico;


            //DgvGeneral.Columns[0].AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;

            Font fuenteNegrita = new Font("Tahoma", 8.25F, FontStyle.Bold);

            DgvGeneral.Columns[1].AppearanceCell.Font = fuenteNegrita;
            //DgvGeneral.Columns[4].AppearanceCell.Font = fuenteNegrita;
            //DgvGeneral.Columns[5].AppearanceCell.Font = fuenteNegrita;
            //DgvGeneral.Columns[6].AppearanceCell.Font = fuenteNegrita;
            //DgvGeneral.Columns[7].AppearanceCell.Font = fuenteNegrita;
            //DgvGeneral.Columns[8].AppearanceCell.Font = fuenteNegrita;
            //DgvGeneral.Columns[9].AppearanceCell.Font = fuenteNegrita;
            //DgvGeneral.Columns[10].AppearanceCell.Font = fuenteNegrita;
            //DgvGeneral.Columns[11].AppearanceCell.Font = fuenteNegrita;
            DgvGeneral.Columns[12].AppearanceCell.Font = fuenteNegrita;
            DgvGeneral.Columns[13].AppearanceCell.Font = fuenteNegrita;



            DgvGeneral.Columns[4].AppearanceCell.BackColor  = Color.FromArgb(0xFE, 0xF0, 0xE7);
            DgvGeneral.Columns[5].AppearanceCell.BackColor  = Color.FromArgb(0xFC, 0xED, 0xE3);
            DgvGeneral.Columns[6].AppearanceCell.BackColor  = Color.FromArgb(0xE2, 0xFA, 0xE7);
            DgvGeneral.Columns[7].AppearanceCell.BackColor  = Color.FromArgb(0xDD, 0xF6, 0xE2);
            DgvGeneral.Columns[8].AppearanceCell.BackColor  = Color.FromArgb(0xF9, 0xE3, 0xFA);
            DgvGeneral.Columns[9].AppearanceCell.BackColor  = Color.FromArgb(0xF2, 0xDD, 0xF6);
            DgvGeneral.Columns[10].AppearanceCell.BackColor = Color.FromArgb(0xEA, 0xEA, 0xFD);
            DgvGeneral.Columns[11].AppearanceCell.BackColor = Color.FromArgb(0xE1, 0xE1, 0xFF);
            DgvGeneral.Columns[12].AppearanceCell.BackColor = Color.FromArgb(0xBF, 0xD4, 0xEF);
            DgvGeneral.Columns[13].AppearanceCell.BackColor = Color.FromArgb(0xF8, 0xC6, 0xC6);

            //DgvGeneral.Columns[10].AppearanceCell.BackColor = Color.FromArgb(0xCA, 0xE6, 0xCF);
            //DgvGeneral.Columns[11].AppearanceCell.BackColor = Color.FromArgb(0xCA, 0xE6, 0xCF);
            //DgvGeneral.Columns[12].AppearanceCell.BackColor = Color.FromArgb(0xCA, 0xE6, 0xCF);
            //DgvGeneral.Columns[13].AppearanceCell.BackColor = Color.FromArgb(0xCA, 0xE6, 0xCF);
            //DgvGeneral.Columns[14].AppearanceCell.BackColor = Color.FromArgb(0xCA, 0xE6, 0xCF);
            //DgvGeneral.Columns[15].AppearanceCell.BackColor = Color.FromArgb(0xE6, 0xBB, 0xBB);

            DgvGeneral.Columns[0].Width = 70;
            DgvGeneral.Columns[1].Width = 365;
            DgvGeneral.Columns[2].Width = 70;
            DgvGeneral.Columns[3].Width = 365;

            DgvGeneral.Columns[4].Width  = 75;
            DgvGeneral.Columns[5].Width  = 75;
            DgvGeneral.Columns[6].Width  = 75;
            DgvGeneral.Columns[7].Width  = 75;
            DgvGeneral.Columns[8].Width  = 75;
            DgvGeneral.Columns[9].Width  = 75;
            DgvGeneral.Columns[10].Width = 75;
            DgvGeneral.Columns[11].Width = 75;
            DgvGeneral.Columns[12].Width = 75;

            DgvGeneral.Columns[13].Width = 60;

            Funciones.getInstancia().Configurar_Grid(DgvGeneral);
            DgvGeneral.OptionsBehavior.Editable       = false;
            DgvGeneral.OptionsCustomization.AllowSort = false;
            DgvGeneral.OptionsView.ColumnAutoWidth    = false;

            DgvGeneral.OptionsCustomization.AllowGroup = true;

            DgvGeneral.OptionsView.ShowGroupPanel = false;

            DgvGeneral.Columns["NombreArea"].GroupIndex = 0;
            DgvGeneral.ExpandAllGroups();
        }
Example #52
0
        public void loadpnk(string active, string role, DevExpress.XtraGrid.GridControl gridControl1, GridView gridView1, TextEdit txtsct, ComboBoxEdit cbldt, LookUpEdit ledv, DateEdit denct, DateEdit denht,
                            DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit mahang, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit soluong, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit soluongqd, Frm_phieunhapgas F, LookUpEdit ledt, TextEdit txtldn, TextEdit txtctg,
                            ToolStripButton tsbtsua, ToolStripButton tsbtxoa, ToolStripButton tsbtcat, ToolStripButton tsbtboghi, ToolStripButton tsbtghiso, ToolStripButton tsbtnap, ToolStripSplitButton tsbtin, string ngaychungtu, string userid, string branchid, TextEdit txtngh, TextEdit txtptvc, DevExpress.XtraGrid.GridControl gridControl2, GridView gridView2, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit dongia, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit thanhtien, TextEdit txtpnv, LookUpEdit lenv, ToolStripSplitButton tsbttruoc, ToolStripSplitButton tsbtsau)
        {
            DataTable dt  = new DataTable();
            DataTable dt1 = new DataTable();

            loadstart(gridControl1, gridView1, cbldt, ledv, denct, denht, mahang, soluong, soluongqd, ledt, tsbtsua, tsbtxoa, tsbtcat, tsbtboghi, tsbtghiso, tsbtnap, tsbtin, ngaychungtu, userid, branchid, active, dt, dt1, gridControl2, gridView2, dongia, thanhtien, lenv);
            if (active == "1")
            {
                DataTable da = new DataTable();
                da = gen.GetTable("select  InventoryItemCode,Quantity,QuantityConvert,Description,InventoryItemName from INInwardDetail a,InventoryItem b where a.InventoryItemID=b.InventoryItemID and RefID='" + role + "' order by SortOrder");
                for (int i = 0; i < da.Rows.Count; i++)
                {
                    DataRow dr = dt.NewRow();
                    dr[0] = da.Rows[i][0].ToString();
                    dr[1] = da.Rows[i][4].ToString();
                    dr[2] = da.Rows[i][1].ToString();
                    dr[3] = da.Rows[i][2].ToString();
                    dr[4] = da.Rows[i][3].ToString();
                    dt.Rows.Add(dr);
                }
                gridControl1.DataSource = dt;

                da = gen.GetTable("select  InventoryItemCode,Quantity,QuantityConvert,Description,InventoryItemName,a.UnitPrice,a.Amount from INInwardSUDetail a,InventoryItem b where a.InventoryItemID=b.InventoryItemID and RefID in (select refSUID from INInward where refID='" + role + "') order by SortOrder");
                for (int i = 0; i < da.Rows.Count; i++)
                {
                    DataRow dr = dt1.NewRow();
                    dr[0] = da.Rows[i][0].ToString();
                    dr[1] = da.Rows[i][4].ToString();
                    dr[2] = da.Rows[i][1].ToString();
                    dr[3] = da.Rows[i][5].ToString();
                    dr[4] = da.Rows[i][6].ToString();
                    dr[5] = da.Rows[i][3].ToString();
                    dt1.Rows.Add(dr);
                }
                gridControl2.DataSource = dt1;

                tsbtcat.Enabled = false;

                F.Text = "Xem phiếu nhập kho Gas";
                da     = gen.GetTable("select AccountingObjectCode,a.Contactname,JournalMemo,DocumentIncluded,RefDate,PostedDate,RefNo,StockCode,Posted,AccountingObjectType,Cancel,ShippingNo,EmployeeIDPU  from INInward a, AccountingObject b,Stock c where a.AccountingObjectID=b.AccountingObjectID and a.StockID=c.StockID and RefID='" + role + "'");
                string No = gen.GetString("select a.refNo from INInwardSU a, INInward b where b.RefID='" + role + "' and a.RefID=b.refSUID");
                try
                {
                    cbldt.SelectedIndex = Int32.Parse(da.Rows[0][9].ToString());
                }
                catch { }
                ledv.EditValue = da.Rows[0][7].ToString();
                ledt.EditValue = da.Rows[0][0].ToString();
                try
                {
                    txtldn.Text = da.Rows[0][2].ToString();
                }
                catch { }
                txtctg.Text     = da.Rows[0][3].ToString();
                denct.EditValue = DateTime.Parse(da.Rows[0][4].ToString());
                denht.EditValue = DateTime.Parse(da.Rows[0][5].ToString());
                txtsct.Text     = da.Rows[0][6].ToString();
                txtpnv.Text     = No;
                txtngh.Text     = da.Rows[0][1].ToString();
                txtptvc.Text    = da.Rows[0][11].ToString();
                if (da.Rows[0][8].ToString() == "True")
                {
                    tsbtghiso.Visible = false;
                    tsbtboghi.Visible = true;
                    tsbtsua.Enabled   = false;
                }
                else
                {
                    tsbtboghi.Visible = false;
                    tsbtghiso.Visible = true;
                }
                if (da.Rows[0][10].ToString() == "True")
                {
                    tsbtboghi.Enabled = false;
                    tsbtghiso.Enabled = false;
                }

                try
                {
                    string nv = gen.GetString("select AccountingObjectCode from AccountingObject where AccountingObjectID='" + da.Rows[0][12].ToString() + "'");
                    lenv.EditValue = nv;
                }
                catch
                {
                    lenv.EditValue = "3";
                }
                checktruocsau(tsbttruoc, tsbtsau, ledv.EditValue.ToString(), txtsct.Text, ngaychungtu);
            }
            else
            {
                F.Text = "Thêm phiếu nhập kho LPG";
                if (role == null)
                {
                    ledv.ItemIndex = 0;
                }
                else
                {
                    ledv.EditValue = role;
                }
                denht.EditValue = DateTime.Parse(ngaychungtu);
                denct.EditValue = DateTime.Parse(ngaychungtu);
            }
        }
 /// <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);
 }
Example #54
0
        public void loadstart(DevExpress.XtraGrid.GridControl gridControl1, GridView gridView1, LookUpEdit ledv, DateEdit denct, DateEdit denht, DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit mahang,
                              DevExpress.XtraEditors.Repository.RepositoryItemTextEdit soluong, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit soluongqd, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit dongia, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit chiphi, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit thanhtien, LookUpEdit ledt, ToolStripButton tsbtsua, ToolStripButton tsbtxoa,
                              ToolStripButton tsbtcat, ToolStripButton tsbtboghi, ToolStripButton tsbtghiso, ToolStripButton tsbtnap, ToolStripButton tsbtin, string ngaychungtu, DataTable dt, string tsbt, string userid, ComboBoxEdit cbthue, DataTable khach, DataTable hang)
        {
            cbthue.Properties.Items.Clear();
            cbthue.Properties.Items.Add("0");
            cbthue.Properties.Items.Add("5");
            cbthue.Properties.Items.Add("10");

            DataTable da   = new DataTable();
            DataTable temp = new DataTable();

            temp.Columns.Add("Mã kho");
            temp.Columns.Add("Tên kho");
            temp.Columns.Add("Tên đơn vị");
            da = gen.GetTable("select StockCode, StockName,BranchName from Stock a, Branch b where a.BranchID=b.BranchID and StockID in (select StockID from MSC_UserJoinStock where UserID='" + userid + "') order by BranchName,StockCode");
            for (int i = 0; i < da.Rows.Count; i++)
            {
                DataRow dr = temp.NewRow();
                dr[0] = da.Rows[i][0].ToString();
                dr[1] = da.Rows[i][1].ToString();
                dr[2] = da.Rows[i][2].ToString();
                temp.Rows.Add(dr);
            }
            ledv.Properties.DataSource    = temp;
            ledv.Properties.DisplayMember = "Mã kho";
            ledv.Properties.ValueMember   = "Mã kho";
            ledv.Properties.PopupWidth    = 400;


            /* DataTable temp4 = new DataTable();
             * temp4.Columns.Add("Mã đối tượng");
             * temp4.Columns.Add("Tên đối tượng");
             * da = gen.GetTable("select * from AccountingObject order by AccountingObjectCode");
             * for (int i = 0; i < da.Rows.Count; i++)
             * {
             *   DataRow dr = temp4.NewRow();
             *   dr[0] = da.Rows[i][1].ToString();
             *   dr[1] = da.Rows[i][2].ToString();
             *   temp4.Rows.Add(dr);
             * }
             * ledt.Properties.DataSource = temp4;
             * ledt.Properties.DisplayMember = "Mã đối tượng";
             * ledt.Properties.ValueMember = "Mã đối tượng";
             * ledt.Properties.PopupWidth = 400;*/
            DataTable temp4 = new DataTable();

            temp4.Columns.Add("Mã đối tượng");
            temp4.Columns.Add("Tên đối tượng");
            for (int i = 0; i < khach.Rows.Count; i++)
            {
                DataRow dr = temp4.NewRow();
                dr[0] = khach.Rows[i][1].ToString();
                dr[1] = khach.Rows[i][2].ToString();
                temp4.Rows.Add(dr);
            }
            ledt.Properties.DataSource    = temp4;
            ledt.Properties.DisplayMember = "Mã đối tượng";
            ledt.Properties.ValueMember   = "Mã đối tượng";
            ledt.Properties.PopupWidth    = 400;

            dt.Columns.Add("Mã hàng", Type.GetType("System.String"));
            dt.Columns.Add("Tên hàng", Type.GetType("System.String"));
            dt.Columns.Add("Số lượng", Type.GetType("System.Double"));
            dt.Columns.Add("Số lượng quy đổi", Type.GetType("System.Double"));
            dt.Columns.Add("Đơn giá", Type.GetType("System.Double"));
            dt.Columns.Add("Đơn giá phí", Type.GetType("System.Double"));
            dt.Columns.Add("Thành tiền", Type.GetType("System.Double"));
            gridControl1.DataSource = dt;

            gridView1.Columns["Số lượng"].ColumnEdit         = soluong;
            gridView1.Columns["Đơn giá phí"].ColumnEdit      = chiphi;
            gridView1.Columns["Số lượng quy đổi"].ColumnEdit = soluongqd;
            gridView1.Columns["Đơn giá"].ColumnEdit          = dongia;
            gridView1.Columns["Thành tiền"].ColumnEdit       = thanhtien;
            gridView1.Columns["Thành tiền"].Width            = 200;

            gridView1.Columns["Số lượng"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView1.Columns["Số lượng"].DisplayFormat.FormatString = "{0:n0}";
            gridView1.Columns["Số lượng"].SummaryItem.SummaryType    = DevExpress.Data.SummaryItemType.Sum;
            gridView1.Columns["Số lượng"].SummaryItem.DisplayFormat  = "{0:n0}";

            gridView1.Columns["Số lượng quy đổi"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView1.Columns["Số lượng quy đổi"].DisplayFormat.FormatString = "{0:n2}";
            gridView1.Columns["Số lượng quy đổi"].SummaryItem.SummaryType    = DevExpress.Data.SummaryItemType.Sum;
            gridView1.Columns["Số lượng quy đổi"].SummaryItem.DisplayFormat  = "{0:n2}";

            gridView1.Columns["Đơn giá"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView1.Columns["Đơn giá"].DisplayFormat.FormatString = "{0:n2}";
            gridView1.Columns["Đơn giá"].SummaryItem.SummaryType    = DevExpress.Data.SummaryItemType.Sum;
            gridView1.Columns["Đơn giá"].SummaryItem.DisplayFormat  = "{0:n2}";

            gridView1.Columns["Thành tiền"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView1.Columns["Thành tiền"].DisplayFormat.FormatString = "{0:n0}";
            gridView1.Columns["Thành tiền"].SummaryItem.SummaryType    = DevExpress.Data.SummaryItemType.Sum;
            gridView1.Columns["Thành tiền"].SummaryItem.DisplayFormat  = "{0:n0}";

            gridView1.Columns["Đơn giá phí"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView1.Columns["Đơn giá phí"].DisplayFormat.FormatString = "{0:n2}";
            gridView1.Columns["Đơn giá phí"].SummaryItem.SummaryType    = DevExpress.Data.SummaryItemType.Sum;
            gridView1.Columns["Đơn giá phí"].SummaryItem.DisplayFormat  = "{0:n2}";

            gridView1.Columns[0].SummaryItem.SummaryType          = DevExpress.Data.SummaryItemType.Count;
            gridView1.Columns[0].SummaryItem.DisplayFormat        = "Số dòng = {0}";
            gridView1.Columns["Mã hàng"].OptionsColumn.AllowEdit  = false;
            gridView1.Columns["Tên hàng"].OptionsColumn.AllowEdit = false;

            gridView1.Columns[5].Visible = false;
        }
Example #55
0
        public void loadstart(DevExpress.XtraGrid.GridControl gridControl1, GridView gridView1, ComboBoxEdit cbldt, LookUpEdit ledv, DateEdit denct, DateEdit denht,
                              DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit mahang, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit soluong, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit dongia, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit thanhtien, LookUpEdit ledt, ToolStripButton tsbtsua, ToolStripButton tsbtxoa, ToolStripButton tsbtcat,
                              ToolStripButton tsbtboghi, ToolStripButton tsbtghiso, ToolStripButton tsbtnap, ToolStripSplitButton tsbtin, string ngaychungtu, string userid, string branchid, string active, DataTable dt, DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit taikhoan, DataTable khach, DataTable hang)
        {
            cbldt.Properties.Items.Clear();
            cbldt.Properties.Items.Add("Khách hàng");
            cbldt.Properties.Items.Add("Nhà cung cấp");
            cbldt.Properties.Items.Add("Nhân viên");
            cbldt.SelectedIndex = 0;

            DataTable da   = new DataTable();
            DataTable temp = new DataTable();

            temp.Columns.Add("Mã kho");
            temp.Columns.Add("Tên kho");
            da = gen.GetTable("select * from Stock where StockID in (select StockID from MSC_UserJoinStock where UserID='" + userid + "') order by StockCode");
            for (int i = 0; i < da.Rows.Count; i++)
            {
                DataRow dr = temp.NewRow();
                dr[0] = da.Rows[i][1].ToString();
                dr[1] = da.Rows[i][2].ToString();
                temp.Rows.Add(dr);
            }
            ledv.Properties.DataSource    = temp;
            ledv.Properties.DisplayMember = "Mã kho";
            ledv.Properties.ValueMember   = "Mã kho";
            ledv.Properties.PopupWidth    = 300;

            da = gen.GetTable("select AccountNumber,AccountName from Account order by AccountNumber");
            DataTable temp1 = new DataTable();

            temp1.Columns.Add("Mã tài khoản");
            temp1.Columns.Add("Tên tài khoản");
            for (int i = 0; i < da.Rows.Count; i++)
            {
                DataRow dr = temp1.NewRow();
                dr[0] = da.Rows[i][0].ToString();
                dr[1] = da.Rows[i][1].ToString();
                temp1.Rows.Add(dr);
            }
            taikhoan.DataSource    = temp1;
            taikhoan.DisplayMember = "Mã tài khoản";
            taikhoan.ValueMember   = "Mã tài khoản";

            DataTable temp3 = new DataTable();

            temp3.Columns.Add("Mã hàng");
            temp3.Columns.Add("Tên hàng");
            for (int i = 0; i < hang.Rows.Count; i++)
            {
                DataRow dr = temp3.NewRow();
                dr[0] = hang.Rows[i][1].ToString();
                dr[1] = hang.Rows[i][2].ToString();
                temp3.Rows.Add(dr);
            }
            mahang.DataSource    = temp3;
            mahang.DisplayMember = "Mã hàng";
            mahang.ValueMember   = "Mã hàng";

            dt.Columns.Add("Tài khoản nợ");
            dt.Columns.Add("Tài khoản có");
            dt.Columns.Add("Mã hàng", Type.GetType("System.String"));
            dt.Columns.Add("Tên hàng");
            dt.Columns.Add("Số lượng", Type.GetType("System.Double"));
            dt.Columns.Add("Đơn giá", Type.GetType("System.Double"));
            dt.Columns.Add("Thành tiền", Type.GetType("System.Double"));
            dt.Columns.Add("Mượn", Type.GetType("System.Boolean"));
            dt.Columns.Add("Trả", Type.GetType("System.Boolean"));
            dt.Columns.Add("Khác", Type.GetType("System.Boolean"));
            dt.Columns.Add("Đơn giá BX", Type.GetType("System.Double"));
            dt.Columns.Add("Bốc xếp", Type.GetType("System.Double"));
            dt.Columns.Add("Diễn giải");
            gridControl1.DataSource = dt;
            gridView1.Columns["Tài khoản nợ"].ColumnEdit = taikhoan;
            gridView1.Columns["Tài khoản có"].ColumnEdit = taikhoan;
            gridView1.Columns["Mã hàng"].ColumnEdit      = mahang;
            gridView1.Columns["Số lượng"].ColumnEdit     = soluong;
            gridView1.Columns["Đơn giá"].ColumnEdit      = dongia;
            gridView1.Columns["Thành tiền"].ColumnEdit   = thanhtien;
            gridView1.Columns["Diễn giải"].Width         = 300;
            gridView1.Columns["Đơn giá BX"].ColumnEdit   = dongia;
            gridView1.Columns["Bốc xếp"].ColumnEdit      = thanhtien;
            gridView1.Columns[0].Visible = false;
            gridView1.Columns[1].Visible = false;

            gridView1.Columns["Số lượng"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView1.Columns["Số lượng"].DisplayFormat.FormatString = "{0:n0}";
            gridView1.Columns["Số lượng"].SummaryItem.SummaryType    = DevExpress.Data.SummaryItemType.Sum;
            gridView1.Columns["Số lượng"].SummaryItem.DisplayFormat  = "{0:n0}";

            gridView1.Columns["Đơn giá"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView1.Columns["Đơn giá"].DisplayFormat.FormatString = "{0:n2}";

            gridView1.Columns["Đơn giá BX"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView1.Columns["Đơn giá BX"].DisplayFormat.FormatString = "{0:n2}";

            gridView1.Columns["Bốc xếp"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView1.Columns["Bốc xếp"].DisplayFormat.FormatString = "{0:n0}";


            gridView1.Columns["Thành tiền"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
            gridView1.Columns["Thành tiền"].DisplayFormat.FormatString = "{0:n0}";
            gridView1.Columns["Thành tiền"].SummaryItem.SummaryType    = DevExpress.Data.SummaryItemType.Sum;
            gridView1.Columns["Thành tiền"].SummaryItem.DisplayFormat  = "{0:n0}";


            gridView1.Columns[0].SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Count;
            gridView1.Columns[0].SummaryItem.DisplayFormat = "Số dòng = {0}";
        }
Example #56
0
        public void loadpnhbtl(string active, string role, DevExpress.XtraGrid.GridControl gridControl1, GridView gridView1, TextEdit txtsct, LookUpEdit ledv, DateEdit denct, DateEdit denht,
                               DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit mahang, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit soluong, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit soluongqd, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit dongia, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit chiphi, DevExpress.XtraEditors.Repository.RepositoryItemTextEdit thanhtien, Frm_phieunhaphangbantralai F, LookUpEdit ledt, TextEdit txtldn,
                               ToolStripButton tsbtsua, ToolStripButton tsbtxoa, ToolStripButton tsbtcat, ToolStripButton tsbtboghi, ToolStripButton tsbtghiso, ToolStripButton tsbtnap, ToolStripButton tsbtin, string ngaychungtu, string tsbt, TextEdit txtshd, TextEdit txtkhhd, TextEdit txtnhd, TextEdit txtcth, TextEdit txtthue, string userid, string branchid, TextEdit txtms, ComboBoxEdit cbthue, ButtonEdit bthd, CheckEdit ckhd, ToolStripSplitButton tsbttruoc, ToolStripSplitButton tsbtsau, DataTable khach, DataTable hang)
        {
            DataTable dt = new DataTable();

            loadstart(gridControl1, gridView1, ledv, denct, denht, mahang, soluong, soluongqd, dongia, chiphi, thanhtien, ledt, tsbtsua, tsbtxoa, tsbtcat, tsbtboghi, tsbtghiso, tsbtnap, tsbtin, ngaychungtu, dt, tsbt, userid, cbthue, khach, hang);
            if (active == "1")
            {
                tsbtcat.Enabled = false;
                DataTable da = new DataTable();

                F.Text = "Xem phiếu nhập hàng bán trả lại";
                da     = gen.GetTable("select AccountingObjectCode,a.Contactname,JournalMemo,DocumentIncluded,RefDate,PostedDate,RefNo,StockCode,Posted,AccountingObjectType,Cancel,Tax,InvDate,InvSeries,InvNo,No,RefIn,CheckIn,TotalVATAmount  from INReInward a, AccountingObject b,Stock c where a.AccountingObjectID=b.AccountingObjectID and a.StockID=c.StockID and RefID='" + role + "'");


                ledv.EditValue = da.Rows[0][7].ToString();
                ledt.EditValue = da.Rows[0][0].ToString();
                F.gethd(da.Rows[0][16].ToString());
                txtldn.Text      = da.Rows[0][2].ToString();
                bthd.EditValue   = da.Rows[0][16].ToString();
                denct.EditValue  = DateTime.Parse(da.Rows[0][4].ToString());
                denht.EditValue  = DateTime.Parse(da.Rows[0][5].ToString());
                txtsct.EditValue = da.Rows[0][6].ToString();
                cbthue.EditValue = da.Rows[0][11].ToString();
                Double Tienthue = Double.Parse(da.Rows[0][18].ToString());

                if (da.Rows[0][17].ToString() == "True")
                {
                    ckhd.Checked = true;
                    try
                    {
                        txtnhd.EditValue = DateTime.Parse(da.Rows[0][12].ToString());
                    }
                    catch { txtnhd.Text = ""; }
                    txtshd.Text  = da.Rows[0][14].ToString();
                    txtms.Text   = da.Rows[0][15].ToString();
                    txtkhhd.Text = da.Rows[0][13].ToString();
                }
                if (da.Rows[0][8].ToString() == "True")
                {
                    tsbtghiso.Visible = false;
                    tsbtboghi.Visible = true;
                    tsbtsua.Enabled   = false;
                }
                else
                {
                    tsbtboghi.Visible = false;
                    tsbtghiso.Visible = true;
                }
                if (da.Rows[0][10].ToString() == "True")
                {
                    tsbtboghi.Enabled = false;
                    tsbtghiso.Enabled = false;
                }

                da = gen.GetTable("select  Amount,InventoryItemCode,a.UnitPrice,a.UnitPriceCost,Quantity,QuantityConvert from INReInwardDetail a,InventoryItem b where a.InventoryItemID=b.InventoryItemID and RefID='" + role + "' order by SortOrder");
                for (int i = 0; i < da.Rows.Count; i++)
                {
                    for (int j = 0; j < gridView1.RowCount; j++)
                    {
                        if (gridView1.GetRowCellValue(j, "Mã hàng").ToString() == da.Rows[i][1].ToString())
                        {
                            gridView1.SetRowCellValue(j, gridView1.Columns["Thành tiền"], da.Rows[i][0].ToString());
                            gridView1.SetRowCellValue(j, gridView1.Columns["Số lượng"], da.Rows[i][4].ToString());
                            gridView1.SetRowCellValue(j, gridView1.Columns["Số lượng quy đổi"], da.Rows[i][5].ToString());
                            gridView1.SetRowCellValue(j, gridView1.Columns["Đơn giá"], da.Rows[i][2].ToString());
                            gridView1.SetRowCellValue(j, gridView1.Columns["Đơn giá phí"], da.Rows[i][3].ToString());
                        }
                    }
                }

                txtcth.Text  = gridView1.Columns["Thành tiền"].SummaryText;
                txtthue.Text = String.Format("{0:n0}", Tienthue);
                checktruocsau(tsbttruoc, tsbtsau, ledv.EditValue.ToString(), txtsct.Text, ngaychungtu);
            }
            else
            {
                try
                {
                    F.Text = "Thêm phiếu nhập hàng bán trả lại";
                    if (role == null)
                    {
                        ledv.ItemIndex = 0;
                    }
                    else
                    {
                        ledv.EditValue = role;
                    }
                    denct.EditValue  = DateTime.Parse(ngaychungtu);
                    denht.EditValue  = DateTime.Parse(ngaychungtu);
                    txtnhd.EditValue = DateTime.Parse(ngaychungtu);
                    txtcth.Text      = gridView1.Columns["Thành tiền"].SummaryText;
                }
                catch
                {
                    XtraMessageBox.Show("Vui lòng kiểm tra lại < Ngày chứng từ >.", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    F.Close();
                }
            }
        }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormXiaoshi));
     Dundas.Charting.WinControl.ChartArea chartArea1 = new Dundas.Charting.WinControl.ChartArea();
     Dundas.Charting.WinControl.Legend legend1 = new Dundas.Charting.WinControl.Legend();
     Dundas.Charting.WinControl.Series series1 = new Dundas.Charting.WinControl.Series();
     Dundas.Charting.WinControl.Series series2 = new Dundas.Charting.WinControl.Series();
     Dundas.Charting.WinControl.Title title1 = new Dundas.Charting.WinControl.Title();
     this.barManager1 = new DevExpress.XtraBars.BarManager();
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemA1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemA2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemA3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemA4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem13 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem15 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem11 = new DevExpress.XtraBars.BarButtonItem();
     this.bar2 = new DevExpress.XtraBars.Bar();
     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.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     this.barCheckItem1 = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItem12 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem16 = new DevExpress.XtraBars.BarButtonItem();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemCalcEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.chart1 = new Dundas.Charting.WinControl.Chart();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.treeList2 = new DevExpress.XtraTreeList.TreeList();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.repositoryItemCalcEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.AllowCustomization = false;
     this.barManager1.AllowQuickCustomization = false;
     this.barManager1.AllowShowToolbarsPopup = false;
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1,
     this.bar2});
     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.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItem6,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5,
     this.barButtonItem7,
     this.barButtonItem8,
     this.barButtonItem10,
     this.barButtonItem11,
     this.barCheckItem1,
     this.barButtonItem12,
     this.barButtonItem14,
     this.barButtonItem15,
     this.barButtonItem16,
     this.barSubItem1,
     this.barButtonItemA1,
     this.barButtonItemA2,
     this.barButtonItemA3,
     this.barButtonItemA4,
     this.barButtonItem9,
     this.barButtonItem13});
     this.barManager1.MaxItemId = 35;
     this.barManager1.StatusBar = this.bar2;
     //
     // bar1
     //
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem14, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem10, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem9, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem13, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem6, true),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem15, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem11, true)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // barButtonItem14
     //
     this.barButtonItem14.Caption = "��������";
     this.barButtonItem14.Id = 22;
     this.barButtonItem14.ImageIndex = 13;
     this.barButtonItem14.Name = "barButtonItem14";
     this.barButtonItem14.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem14.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem14.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem14_ItemClick);
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "��������";
     this.barSubItem1.Id = 28;
     this.barSubItem1.ImageIndex = 31;
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemA1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemA2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemA3),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemA4)});
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemA1
     //
     this.barButtonItemA1.Caption = "ȫ����õ���";
     this.barButtonItemA1.Id = 29;
     this.barButtonItemA1.ImageIndex = 12;
     this.barButtonItemA1.Name = "barButtonItemA1";
     this.barButtonItemA1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemA1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemA1_ItemClick);
     //
     // barButtonItemA2
     //
     this.barButtonItemA2.Caption = "ͳ���õ���";
     this.barButtonItemA2.Id = 30;
     this.barButtonItemA2.ImageIndex = 23;
     this.barButtonItemA2.Name = "barButtonItemA2";
     this.barButtonItemA2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemA2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemA2_ItemClick);
     //
     // barButtonItemA3
     //
     this.barButtonItemA3.Caption = "ȫ�����󸺺�";
     this.barButtonItemA3.Id = 31;
     this.barButtonItemA3.ImageIndex = 12;
     this.barButtonItemA3.Name = "barButtonItemA3";
     this.barButtonItemA3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemA3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemA3_ItemClick);
     //
     // barButtonItemA4
     //
     this.barButtonItemA4.Caption = "ͳ����󸺺�";
     this.barButtonItemA4.Id = 32;
     this.barButtonItemA4.ImageIndex = 23;
     this.barButtonItemA4.Name = "barButtonItemA4";
     this.barButtonItemA4.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemA4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemA4_ItemClick);
     //
     // barButtonItem10
     //
     this.barButtonItem10.Caption = "����";
     this.barButtonItem10.Id = 17;
     this.barButtonItem10.ImageIndex = 14;
     this.barButtonItem10.Name = "barButtonItem10";
     this.barButtonItem10.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem10.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem10_ItemClick);
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption = "�������";
     this.barButtonItem9.Id = 33;
     this.barButtonItem9.ImageIndex = 31;
     this.barButtonItem9.Name = "barButtonItem9";
     this.barButtonItem9.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem9.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem9_ItemClick_1);
     //
     // barButtonItem13
     //
     this.barButtonItem13.Caption = "ɾ�����";
     this.barButtonItem13.Id = 34;
     this.barButtonItem13.ImageIndex = 2;
     this.barButtonItem13.Name = "barButtonItem13";
     this.barButtonItem13.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem13.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem13_ItemClick_1);
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "ͳ��";
     this.barButtonItem6.Id = 5;
     this.barButtonItem6.ImageIndex = 25;
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // barButtonItem15
     //
     this.barButtonItem15.Caption = "����";
     this.barButtonItem15.Id = 24;
     this.barButtonItem15.ImageIndex = 19;
     this.barButtonItem15.Name = "barButtonItem15";
     this.barButtonItem15.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem15_ItemClick);
     //
     // barButtonItem11
     //
     this.barButtonItem11.Caption = "�ر�";
     this.barButtonItem11.Id = 18;
     this.barButtonItem11.ImageIndex = 21;
     this.barButtonItem11.Name = "barButtonItem11";
     this.barButtonItem11.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem11.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem11_ItemClick);
     //
     // bar2
     //
     this.bar2.BarName = "Custom 2";
     this.bar2.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar2.DockCol = 0;
     this.bar2.DockRow = 0;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar2.OptionsBar.AllowQuickCustomization = false;
     this.bar2.OptionsBar.DrawDragBorder = false;
     this.bar2.OptionsBar.UseWholeRow = true;
     this.bar2.Text = "Custom 2";
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "����.ico");
     this.imageList1.Images.SetKeyName(1, "��ӡ.ico");
     this.imageList1.Images.SetKeyName(2, "ɾ��.ico");
     this.imageList1.Images.SetKeyName(3, "����¼�.ico");
     this.imageList1.Images.SetKeyName(4, "�½�.ico");
     this.imageList1.Images.SetKeyName(5, "�޸�.ico");
     this.imageList1.Images.SetKeyName(6, "���ͬ��.ico");
     this.imageList1.Images.SetKeyName(7, "����.ico");
     this.imageList1.Images.SetKeyName(8, "���.ico");
     this.imageList1.Images.SetKeyName(9, "��ɫ.ico");
     this.imageList1.Images.SetKeyName(10, "����.ico");
     this.imageList1.Images.SetKeyName(11, "�ر�.ico");
     this.imageList1.Images.SetKeyName(12, "���ȹ���1.ico");
     this.imageList1.Images.SetKeyName(13, "books.ico");
     this.imageList1.Images.SetKeyName(14, "����.ico");
     this.imageList1.Images.SetKeyName(15, "����.ico");
     this.imageList1.Images.SetKeyName(16, "��ѯ.ico");
     this.imageList1.Images.SetKeyName(17, "������±�.ico");
     this.imageList1.Images.SetKeyName(18, "��ӡ.ico");
     this.imageList1.Images.SetKeyName(19, "����.ico");
     this.imageList1.Images.SetKeyName(20, "�ر�1.ico");
     this.imageList1.Images.SetKeyName(21, "�ر�.ico");
     this.imageList1.Images.SetKeyName(22, "��ɫ.ico");
     this.imageList1.Images.SetKeyName(23, "���ȹ���1.ico");
     this.imageList1.Images.SetKeyName(24, "ɾ��.ico");
     this.imageList1.Images.SetKeyName(25, "���.ico");
     this.imageList1.Images.SetKeyName(26, "����.ico");
     this.imageList1.Images.SetKeyName(27, "��Ȩ.ico");
     this.imageList1.Images.SetKeyName(28, "ˢ��.ico");
     this.imageList1.Images.SetKeyName(29, "���ͬ��.ico");
     this.imageList1.Images.SetKeyName(30, "����¼�.ico");
     this.imageList1.Images.SetKeyName(31, "�½�.ico");
     this.imageList1.Images.SetKeyName(32, "�޸�.ico");
     this.imageList1.Images.SetKeyName(33, "����.ico");
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "�������ʷ�";
     this.barButtonItem1.Id = 8;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "����ϵ����";
     this.barButtonItem2.Id = 9;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "�ƶ�ƽ����";
     this.barButtonItem3.Id = 10;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "��ɫģ�ͷ�";
     this.barButtonItem4.Id = 11;
     this.barButtonItem4.Name = "barButtonItem4";
     this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem4_ItemClick);
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "���Իع鷨";
     this.barButtonItem5.Id = 12;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "ָ��������";
     this.barButtonItem7.Id = 13;
     this.barButtonItem7.Name = "barButtonItem7";
     this.barButtonItem7.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem7_ItemClick);
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption = "ָ��ƽ����";
     this.barButtonItem8.Id = 14;
     this.barButtonItem8.Name = "barButtonItem8";
     this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick);
     //
     // barCheckItem1
     //
     this.barCheckItem1.Caption = "barCheckItem1";
     this.barCheckItem1.Id = 19;
     this.barCheckItem1.Name = "barCheckItem1";
     //
     // barButtonItem12
     //
     this.barButtonItem12.Caption = "�������Ʒ�";
     this.barButtonItem12.Id = 20;
     this.barButtonItem12.Name = "barButtonItem12";
     this.barButtonItem12.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     this.barButtonItem12.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem12_ItemClick);
     //
     // barButtonItem16
     //
     this.barButtonItem16.Caption = "���Сʱ��";
     this.barButtonItem16.Id = 25;
     this.barButtonItem16.Name = "barButtonItem16";
     this.barButtonItem16.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem16_ItemClick);
     //
     // treeList1
     //
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Top;
     this.treeList1.Location = new System.Drawing.Point(0, 34);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsBehavior.AutoFocusNewNode = true;
     this.treeList1.OptionsMenu.EnableColumnMenu = false;
     this.treeList1.OptionsMenu.EnableFooterMenu = false;
     this.treeList1.OptionsView.AutoWidth = false;
     this.treeList1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1,
     this.repositoryItemCalcEdit2,
     this.repositoryItemSpinEdit1});
     this.treeList1.Size = new System.Drawing.Size(969, 255);
     this.treeList1.TabIndex = 4;
     this.treeList1.FocusedColumnChanged += new DevExpress.XtraTreeList.FocusedColumnChangedEventHandler(this.treeList1_FocusedColumnChanged);
     this.treeList1.ShownEditor += new System.EventHandler(this.treeList1_ShownEditor);
     this.treeList1.CellValueChanged += new DevExpress.XtraTreeList.CellValueChangedEventHandler(this.treeList1_CellValueChanged);
     this.treeList1.CustomDrawNodeCell += new DevExpress.XtraTreeList.CustomDrawNodeCellEventHandler(this.treeList1_CustomDrawNodeCell);
     this.treeList1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.treeList1_ShowingEditor);
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.DisplayFormat.FormatString = "n0";
     this.repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEdit1.Mask.EditMask = "n0";
     this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemCalcEdit2
     //
     this.repositoryItemCalcEdit2.AutoHeight = false;
     this.repositoryItemCalcEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEdit2.DisplayFormat.FormatString = "############0";
     this.repositoryItemCalcEdit2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEdit2.Mask.EditMask = "n0";
     this.repositoryItemCalcEdit2.Name = "repositoryItemCalcEdit2";
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.DisplayFormat.FormatString = "############0";
     this.repositoryItemSpinEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemSpinEdit1.Mask.EditMask = "n0";
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // splitterControl1
     //
     this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 289);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(969, 4);
     this.splitterControl1.TabIndex = 5;
     this.splitterControl1.TabStop = false;
     //
     // chart1
     //
     chartArea1.Name = "Default";
     this.chart1.ChartAreas.Add(chartArea1);
     this.chart1.Dock = System.Windows.Forms.DockStyle.Fill;
     legend1.Name = "Default";
     this.chart1.Legends.Add(legend1);
     this.chart1.Location = new System.Drawing.Point(0, 293);
     this.chart1.Name = "chart1";
     this.chart1.Palette = Dundas.Charting.WinControl.ChartColorPalette.Pastel;
     series1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     series1.BorderWidth = 2;
     series1.ChartType = "Spline";
     series1.MarkerBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     series1.MarkerStyle = Dundas.Charting.WinControl.MarkerStyle.Circle;
     series1.Name = "Series1";
     series1.ShadowOffset = 1;
     series2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     series2.BorderWidth = 2;
     series2.ChartType = "Spline";
     series2.MarkerBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     series2.MarkerStyle = Dundas.Charting.WinControl.MarkerStyle.Triangle;
     series2.Name = "Series2";
     series2.ShadowOffset = 1;
     this.chart1.Series.Add(series1);
     this.chart1.Series.Add(series2);
     this.chart1.Size = new System.Drawing.Size(969, 151);
     this.chart1.TabIndex = 6;
     this.chart1.Text = "chart1";
     title1.Name = "Title1";
     this.chart1.Titles.Add(title1);
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(473, -60);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(100, 21);
     this.textBox1.TabIndex = 7;
     //
     // treeList2
     //
     this.treeList2.Location = new System.Drawing.Point(774, 450);
     this.treeList2.Name = "treeList2";
     this.treeList2.Size = new System.Drawing.Size(44, 12);
     this.treeList2.TabIndex = 8;
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(-420, 134);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(100, 21);
     this.textBox2.TabIndex = 9;
     //
     // repositoryItemCalcEdit1
     //
     this.repositoryItemCalcEdit1.AutoHeight = false;
     this.repositoryItemCalcEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEdit1.DisplayFormat.FormatString = "n0";
     this.repositoryItemCalcEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEdit1.Mask.EditMask = "n0";
     this.repositoryItemCalcEdit1.Name = "repositoryItemCalcEdit1";
     //
     // FormXiaoshi
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(969, 462);
     this.Controls.Add(this.textBox2);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.chart1);
     this.Controls.Add(this.splitterControl1);
     this.Controls.Add(this.treeList1);
     this.Controls.Add(this.treeList2);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "FormXiaoshi";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "��󸺺�Сʱ��Ԥ��";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form9Forecast_FormClosing);
     this.Load += new System.EventHandler(this.Form9Forecast_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEdit1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #58
0
        public static DataView LoadGrid(控件库.表格控件.Grid _Grid, string tbName, string Fliter,string sort,bool order)
        {
            GatherReport report = new GatherReport();
            GatherTable tab = report.GetReportTable(tbName);
            DevExpress.XtraEditors.Repository.RepositoryItemTextEdit text = null;
            for (int i = 0; i < _Grid.ExportBandView.Columns.Count; i++)
            {
                text = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();

                _Grid.ExportBandView.Columns[i].ColumnEdit = text;
                _Grid.ExportBandView.Columns[i].OptionsColumn.AllowEdit = true;
                tab.计算列准备(_Grid.ExportBandView.Columns[i].FieldName, _Grid, text);
            }
            DataTable tb2 = GetReportTable(tbName);
            if (order)
                tb2.Columns.Add("序号", typeof(int));
               DataView view = new DataView(tb2, Fliter,sort, DataViewRowState.CurrentRows);
               if (order)
               SetOrder(view);
            _Grid.SetDataSource(view);
            return view;
        }
 /// <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.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule1 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule conditionValidationRule2 = new DevExpress.XtraEditors.DXErrorProvider.ConditionValidationRule();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.sp001BindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsQueries = new RetirementCenter.DataSources.dsQueries();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTotal = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTextEditn2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.colBankMoney = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAmantaMoney = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.ccbeSarfType = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.cDSarfTypeedadBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.ccbeDof = new DevExpress.XtraEditors.CheckedComboBoxEdit();
     this.tBLDofatSarfBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.tBLDofatSarfTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.TBLDofatSarfTableAdapter();
     this.dxvp = new DevExpress.XtraEditors.DXErrorProvider.DXValidationProvider(this.components);
     this.sp_001TableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.sp_001TableAdapter();
     this.cDSarfTypeedadTableAdapter = new RetirementCenter.DataSources.dsQueriesTableAdapters.CDSarfTypeedadTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.sp001BindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ccbeSarfType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSarfTypeedadBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ccbeDof.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLDofatSarfBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxvp)).BeginInit();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.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.gridControlData.DataSource = this.sp001BindingSource;
     this.gridControlData.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlData.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlData.EmbeddedNavigator.TextStringFormat = "صف {0} من {1}";
     this.gridControlData.Location = new System.Drawing.Point(12, 38);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEditn2});
     this.gridControlData.Size = new System.Drawing.Size(914, 523);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // sp001BindingSource
     //
     this.sp001BindingSource.DataMember = "sp_001";
     this.sp001BindingSource.DataSource = this.dsQueries;
     //
     // dsQueries
     //
     this.dsQueries.DataSetName = "dsQueries";
     this.dsQueries.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridViewData.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridViewData.Appearance.Empty.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Empty.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.BackwardDiagonal;
     this.gridViewData.Appearance.Empty.Options.UseBackColor = true;
     this.gridViewData.Appearance.EvenRow.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FilterPanel.BackColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.FocusedRow.BackColor = System.Drawing.Color.Black;
     this.gridViewData.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewData.Appearance.FooterPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewData.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewData.Appearance.GroupButton.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupFooter.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.BorderColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridViewData.Appearance.GroupPanel.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Gray;
     this.gridViewData.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridViewData.Appearance.GroupRow.BackColor = System.Drawing.Color.Silver;
     this.gridViewData.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.gridViewData.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewData.Appearance.HeaderPanel.BackColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.DarkGray;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridViewData.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridViewData.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.LightSlateGray;
     this.gridViewData.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.HorzLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridViewData.Appearance.OddRow.BackColor = System.Drawing.Color.WhiteSmoke;
     this.gridViewData.Appearance.OddRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.BackColor = System.Drawing.Color.Gainsboro;
     this.gridViewData.Appearance.Preview.ForeColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.Preview.Options.UseBackColor = true;
     this.gridViewData.Appearance.Preview.Options.UseForeColor = true;
     this.gridViewData.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.gridViewData.Appearance.Row.Options.UseBackColor = true;
     this.gridViewData.Appearance.RowSeparator.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridViewData.Appearance.SelectedRow.BackColor = System.Drawing.Color.DimGray;
     this.gridViewData.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewData.Appearance.VertLine.BackColor = System.Drawing.Color.LightGray;
     this.gridViewData.Appearance.VertLine.Options.UseBackColor = true;
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colTotal,
     this.colBankMoney,
     this.colAmantaMoney,
     this.colMMashatId,
     this.colpersonName,
     this.colSyndicate,
     this.colSubCommitte});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsCustomization.AllowRowSizing = true;
     this.gridViewData.OptionsFind.AlwaysVisible = true;
     this.gridViewData.OptionsPrint.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsPrint.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewData.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     this.gridViewData.OptionsView.ShowFooter = true;
     //
     // colTotal
     //
     this.colTotal.AppearanceCell.Options.UseTextOptions = true;
     this.colTotal.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal.AppearanceHeader.Options.UseTextOptions = true;
     this.colTotal.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colTotal.Caption = "اجمالي الدفعات";
     this.colTotal.ColumnEdit = this.repositoryItemTextEditn2;
     this.colTotal.FieldName = "Total";
     this.colTotal.Name = "colTotal";
     this.colTotal.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Total", "{0:0.##}")});
     this.colTotal.Visible = true;
     this.colTotal.VisibleIndex = 4;
     this.colTotal.Width = 91;
     //
     // repositoryItemTextEditn2
     //
     this.repositoryItemTextEditn2.AutoHeight = false;
     this.repositoryItemTextEditn2.DisplayFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.EditFormat.FormatString = "n2";
     this.repositoryItemTextEditn2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemTextEditn2.Mask.EditMask = "n2";
     this.repositoryItemTextEditn2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.repositoryItemTextEditn2.Name = "repositoryItemTextEditn2";
     //
     // colBankMoney
     //
     this.colBankMoney.AppearanceCell.Options.UseTextOptions = true;
     this.colBankMoney.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBankMoney.AppearanceHeader.Options.UseTextOptions = true;
     this.colBankMoney.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colBankMoney.Caption = "اجمالي البنك";
     this.colBankMoney.ColumnEdit = this.repositoryItemTextEditn2;
     this.colBankMoney.FieldName = "BankMoney";
     this.colBankMoney.Name = "colBankMoney";
     this.colBankMoney.OptionsColumn.ReadOnly = true;
     this.colBankMoney.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "BankMoney", "{0:0.##}")});
     this.colBankMoney.Visible = true;
     this.colBankMoney.VisibleIndex = 5;
     this.colBankMoney.Width = 79;
     //
     // colAmantaMoney
     //
     this.colAmantaMoney.AppearanceCell.Options.UseTextOptions = true;
     this.colAmantaMoney.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAmantaMoney.AppearanceHeader.Options.UseTextOptions = true;
     this.colAmantaMoney.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colAmantaMoney.Caption = "اجمالي الامانات";
     this.colAmantaMoney.ColumnEdit = this.repositoryItemTextEditn2;
     this.colAmantaMoney.FieldName = "AmantaMoney";
     this.colAmantaMoney.Name = "colAmantaMoney";
     this.colAmantaMoney.OptionsColumn.ReadOnly = true;
     this.colAmantaMoney.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "AmantaMoney", "{0:0.##}")});
     this.colAmantaMoney.Visible = true;
     this.colAmantaMoney.VisibleIndex = 6;
     this.colAmantaMoney.Width = 90;
     //
     // colMMashatId
     //
     this.colMMashatId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatId.Caption = "كود";
     this.colMMashatId.FieldName = "MMashatId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 0;
     //
     // colpersonName
     //
     this.colpersonName.AppearanceCell.Options.UseTextOptions = true;
     this.colpersonName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.AppearanceHeader.Options.UseTextOptions = true;
     this.colpersonName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colpersonName.Caption = "الاسم";
     this.colpersonName.FieldName = "MMashatName";
     this.colpersonName.Name = "colpersonName";
     this.colpersonName.Visible = true;
     this.colpersonName.VisibleIndex = 1;
     //
     // colSyndicate
     //
     this.colSyndicate.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate.Caption = "الفرعية";
     this.colSyndicate.FieldName = "Syndicate";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 2;
     //
     // colSubCommitte
     //
     this.colSubCommitte.AppearanceCell.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.AppearanceHeader.Options.UseTextOptions = true;
     this.colSubCommitte.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSubCommitte.Caption = "اللجنة";
     this.colSubCommitte.FieldName = "SubCommitte";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 3;
     //
     // btnSearch
     //
     this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSearch.Image = global::RetirementCenter.Properties.Resources.apply_16x16;
     this.btnSearch.Location = new System.Drawing.Point(252, 12);
     this.btnSearch.Name = "btnSearch";
     this.btnSearch.Size = new System.Drawing.Size(114, 22);
     this.btnSearch.StyleController = this.layoutControl1;
     this.btnSearch.TabIndex = 4;
     this.btnSearch.Text = "تنفيذ";
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.ccbeSarfType);
     this.layoutControl1.Controls.Add(this.ccbeDof);
     this.layoutControl1.Controls.Add(this.btnSearch);
     this.layoutControl1.Controls.Add(this.btnPrintExport);
     this.layoutControl1.Controls.Add(this.gridControlData);
     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(982, 382, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(938, 573);
     this.layoutControl1.TabIndex = 5;
     this.layoutControl1.Text = "layoutControl1";
     //
     // ccbeSarfType
     //
     this.ccbeSarfType.Location = new System.Drawing.Point(370, 12);
     this.ccbeSarfType.Name = "ccbeSarfType";
     this.ccbeSarfType.Properties.AllowMultiSelect = true;
     this.ccbeSarfType.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.ccbeSarfType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ccbeSarfType.Properties.DataSource = this.cDSarfTypeedadBindingSource;
     this.ccbeSarfType.Properties.DisplayMember = "SarfTypeedad";
     this.ccbeSarfType.Properties.ValueMember = "SarfTypeedadId";
     this.ccbeSarfType.Size = new System.Drawing.Size(205, 20);
     this.ccbeSarfType.StyleController = this.layoutControl1;
     this.ccbeSarfType.TabIndex = 5;
     conditionValidationRule1.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule1.ErrorText = "This value is not valid";
     this.dxvp.SetValidationRule(this.ccbeSarfType, conditionValidationRule1);
     this.ccbeSarfType.EditValueChanged += new System.EventHandler(this.ccbeDof_EditValueChanged);
     //
     // cDSarfTypeedadBindingSource
     //
     this.cDSarfTypeedadBindingSource.DataMember = "CDSarfTypeedad";
     this.cDSarfTypeedadBindingSource.DataSource = this.dsQueries;
     //
     // ccbeDof
     //
     this.ccbeDof.Location = new System.Drawing.Point(611, 12);
     this.ccbeDof.Name = "ccbeDof";
     this.ccbeDof.Properties.AllowMultiSelect = true;
     this.ccbeDof.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.ccbeDof.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ccbeDof.Properties.DataSource = this.tBLDofatSarfBindingSource;
     this.ccbeDof.Properties.DisplayMember = "DofatSarf";
     this.ccbeDof.Properties.ValueMember = "DofatSarfId";
     this.ccbeDof.Size = new System.Drawing.Size(283, 20);
     this.ccbeDof.StyleController = this.layoutControl1;
     this.ccbeDof.TabIndex = 5;
     conditionValidationRule2.ConditionOperator = DevExpress.XtraEditors.DXErrorProvider.ConditionOperator.IsNotBlank;
     conditionValidationRule2.ErrorText = "This value is not valid";
     this.dxvp.SetValidationRule(this.ccbeDof, conditionValidationRule2);
     this.ccbeDof.EditValueChanged += new System.EventHandler(this.ccbeDof_EditValueChanged);
     //
     // tBLDofatSarfBindingSource
     //
     this.tBLDofatSarfBindingSource.DataMember = "TBLDofatSarf";
     this.tBLDofatSarfBindingSource.DataSource = this.dsQueries;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Image = global::RetirementCenter.Properties.Resources.Print;
     this.btnPrintExport.Location = new System.Drawing.Point(12, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(94, 22);
     this.btnPrintExport.StyleController = this.layoutControl1;
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.layoutControlItem5,
     this.layoutControlItem1});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Size = new System.Drawing.Size(938, 573);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnSearch;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(240, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(118, 26);
     this.layoutControlItem2.Text = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnPrintExport;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(98, 26);
     this.layoutControlItem3.Text = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.gridControlData;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(918, 527);
     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(98, 0);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(142, 26);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem5.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.layoutControlItem5.Control = this.ccbeDof;
     this.layoutControlItem5.CustomizationFormText = "الدفعة";
     this.layoutControlItem5.Location = new System.Drawing.Point(599, 0);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(319, 26);
     this.layoutControlItem5.Text = "الدفعة";
     this.layoutControlItem5.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(29, 13);
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.AppearanceItemCaption.Options.UseTextOptions = true;
     this.layoutControlItem1.AppearanceItemCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.layoutControlItem1.Control = this.ccbeSarfType;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(358, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(241, 26);
     this.layoutControlItem1.Text = "النوع";
     this.layoutControlItem1.TextLocation = DevExpress.Utils.Locations.Right;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(29, 13);
     //
     // tBLDofatSarfTableAdapter
     //
     this.tBLDofatSarfTableAdapter.ClearBeforeFill = true;
     //
     // sp_001TableAdapter
     //
     this.sp_001TableAdapter.ClearBeforeFill = true;
     //
     // cDSarfTypeedadTableAdapter
     //
     this.cDSarfTypeedadTableAdapter.ClearBeforeFill = true;
     //
     // Qry101Frm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(938, 573);
     this.Controls.Add(this.layoutControl1);
     this.Name = "Qry101Frm";
     this.Text = "اجمالي الدفعات و الامانات و البنك - ورثة";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Qry06Frm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.sp001BindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsQueries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEditn2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ccbeSarfType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cDSarfTypeedadBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ccbeDof.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tBLDofatSarfBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dxvp)).EndInit();
     this.ResumeLayout(false);
 }
Example #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(frmContactBrw));
     this.pnlBody = new System.Windows.Forms.Panel();
     this.pnl_SpeedSearch = new System.Windows.Forms.Panel();
     this.pnl_SpeedSearch1 = new System.Windows.Forms.Panel();
     this.txt_SpeedSearch = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.grdContact = new DevExpress.XtraGrid.GridControl();
     this.persistentRepository1 = new DevExpress.XtraEditors.Repository.PersistentRepository(this.components);
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gvwContact = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcolContactID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContactType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColLastName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolFirstName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolCompany = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolLastNameRomaji = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolFirstNameRomaji = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContactName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContactNameRomaji = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolStreet = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolCity = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolState = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolCountry = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolEmail1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolPhone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolJobTitle = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolStatusID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContact1Name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContactPhone1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContact2Name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContactPhone2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolMobilePhone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolDateJoined = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colAccRepName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnl_Find = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.chk_Anywhere = new System.Windows.Forms.CheckBox();
     this.btn_Clear = new System.Windows.Forms.Button();
     this.btn_Find = new System.Windows.Forms.Button();
     this.lbl_Find = new System.Windows.Forms.Label();
     this.chk_AdvanceSearch = new System.Windows.Forms.CheckBox();
     this.pnlBody.SuspendLayout();
     this.pnl_SpeedSearch.SuspendLayout();
     this.pnl_SpeedSearch1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwContact)).BeginInit();
     this.pnl_Find.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // pnlBody
     //
     this.pnlBody.Controls.Add(this.pnl_SpeedSearch);
     this.pnlBody.Controls.Add(this.grdContact);
     this.pnlBody.Controls.Add(this.pnl_Find);
     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(672, 333);
     this.pnlBody.TabIndex = 26;
     this.pnlBody.Resize += new System.EventHandler(this.pnlBody_Resize);
     //
     // pnl_SpeedSearch
     //
     this.pnl_SpeedSearch.BackColor = System.Drawing.Color.Black;
     this.pnl_SpeedSearch.Controls.Add(this.pnl_SpeedSearch1);
     this.pnl_SpeedSearch.Location = new System.Drawing.Point(40, 232);
     this.pnl_SpeedSearch.Name = "pnl_SpeedSearch";
     this.pnl_SpeedSearch.Size = new System.Drawing.Size(192, 72);
     this.pnl_SpeedSearch.TabIndex = 41;
     this.pnl_SpeedSearch.Visible = false;
     //
     // pnl_SpeedSearch1
     //
     this.pnl_SpeedSearch1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(143)))), ((int)(((byte)(230)))));
     this.pnl_SpeedSearch1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnl_SpeedSearch1.Controls.Add(this.txt_SpeedSearch);
     this.pnl_SpeedSearch1.Controls.Add(this.label1);
     this.pnl_SpeedSearch1.Location = new System.Drawing.Point(4, 4);
     this.pnl_SpeedSearch1.Name = "pnl_SpeedSearch1";
     this.pnl_SpeedSearch1.Size = new System.Drawing.Size(184, 64);
     this.pnl_SpeedSearch1.TabIndex = 39;
     //
     // txt_SpeedSearch
     //
     this.txt_SpeedSearch.Location = new System.Drawing.Point(11, 29);
     this.txt_SpeedSearch.Name = "txt_SpeedSearch";
     this.txt_SpeedSearch.Size = new System.Drawing.Size(157, 21);
     this.txt_SpeedSearch.TabIndex = 10;
     this.txt_SpeedSearch.TextChanged += new System.EventHandler(this.txt_SpeedSearch_TextChanged);
     this.txt_SpeedSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyDown);
     this.txt_SpeedSearch.Leave += new System.EventHandler(this.txt_SpeedSearch_Leave);
     this.txt_SpeedSearch.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyUp);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(56, 4);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(71, 14);
     this.label1.TabIndex = 0;
     this.label1.Text = "Fast Search";
     //
     // grdContact
     //
     this.grdContact.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdContact.EmbeddedNavigator.Name = "";
     this.grdContact.ExternalRepository = this.persistentRepository1;
     this.grdContact.Location = new System.Drawing.Point(0, 88);
     this.grdContact.MainView = this.gvwContact;
     this.grdContact.Name = "grdContact";
     this.grdContact.Size = new System.Drawing.Size(672, 245);
     this.grdContact.TabIndex = 25;
     this.grdContact.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvwContact});
     this.grdContact.DoubleClick += new System.EventHandler(this.grdContact_DoubleClick);
     this.grdContact.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdContact_KeyPress);
     //
     // persistentRepository1
     //
     this.persistentRepository1.Items.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AllowFocused = false;
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // gvwContact
     //
     this.gvwContact.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.gvwContact.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcolContactID,
     this.gcolContactType,
     this.gcolType,
     this.gColLastName,
     this.gcolFirstName,
     this.gcolCompany,
     this.gcolLastNameRomaji,
     this.gcolFirstNameRomaji,
     this.gcolContactName,
     this.gcolContactNameRomaji,
     this.gcolStreet,
     this.gcolCity,
     this.gcolState,
     this.gcolCountry,
     this.gcolEmail1,
     this.gcolPhone,
     this.gcolJobTitle,
     this.gcolStatusID,
     this.gcolStatus,
     this.gcolContact1Name,
     this.gcolContactPhone1,
     this.gcolContact2Name,
     this.gcolContactPhone2,
     this.gcolMobilePhone,
     this.gcolDateJoined,
     this.colAccRepName});
     this.gvwContact.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gvwContact.GridControl = this.grdContact;
     this.gvwContact.Name = "gvwContact";
     this.gvwContact.OptionsBehavior.Editable = false;
     this.gvwContact.OptionsBehavior.KeepGroupExpandedOnSorting = false;
     this.gvwContact.OptionsDetail.EnableDetailToolTip = true;
     this.gvwContact.OptionsNavigation.AutoMoveRowFocus = false;
     this.gvwContact.OptionsPrint.UsePrintStyles = true;
     this.gvwContact.OptionsView.ShowDetailButtons = false;
     this.gvwContact.OptionsView.ShowGroupPanel = false;
     this.gvwContact.OptionsView.ShowHorzLines = false;
     this.gvwContact.OptionsView.ShowIndicator = false;
     this.gvwContact.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcolContactType, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gcolContactID
     //
     this.gcolContactID.Caption = "ContactID";
     this.gcolContactID.FieldName = "ContactId";
     this.gcolContactID.Name = "gcolContactID";
     //
     // gcolContactType
     //
     this.gcolContactType.Caption = "Contact Type ID";
     this.gcolContactType.ColumnEdit = this.repositoryItemTextEdit1;
     this.gcolContactType.FieldName = "ContactType";
     this.gcolContactType.Name = "gcolContactType";
     this.gcolContactType.Width = 68;
     //
     // gcolType
     //
     this.gcolType.Caption = "Contact Type";
     this.gcolType.FieldName = "Type";
     this.gcolType.Name = "gcolType";
     //
     // gColLastName
     //
     this.gColLastName.Caption = "Last Name";
     this.gColLastName.FieldName = "LastName";
     this.gColLastName.Name = "gColLastName";
     this.gColLastName.Visible = true;
     this.gColLastName.VisibleIndex = 0;
     this.gColLastName.Width = 73;
     //
     // gcolFirstName
     //
     this.gcolFirstName.Caption = "First Name";
     this.gcolFirstName.FieldName = "FirstName";
     this.gcolFirstName.Name = "gcolFirstName";
     this.gcolFirstName.Visible = true;
     this.gcolFirstName.VisibleIndex = 1;
     this.gcolFirstName.Width = 73;
     //
     // gcolCompany
     //
     this.gcolCompany.Caption = "Company";
     this.gcolCompany.FieldName = "BrowseName";
     this.gcolCompany.Name = "gcolCompany";
     this.gcolCompany.Visible = true;
     this.gcolCompany.VisibleIndex = 2;
     this.gcolCompany.Width = 73;
     //
     // gcolLastNameRomaji
     //
     this.gcolLastNameRomaji.Caption = "Last Name Romaji";
     this.gcolLastNameRomaji.FieldName = "LastNameRomaji";
     this.gcolLastNameRomaji.Name = "gcolLastNameRomaji";
     //
     // gcolFirstNameRomaji
     //
     this.gcolFirstNameRomaji.Caption = "First Name Romaji";
     this.gcolFirstNameRomaji.FieldName = "FirstNameRomaji";
     this.gcolFirstNameRomaji.Name = "gcolFirstNameRomaji";
     //
     // gcolContactName
     //
     this.gcolContactName.Caption = "Contact Name";
     this.gcolContactName.FieldName = "ContactlastName1";
     this.gcolContactName.Name = "gcolContactName";
     //
     // gcolContactNameRomaji
     //
     this.gcolContactNameRomaji.Caption = "Contact Name Romaji";
     this.gcolContactNameRomaji.FieldName = "ContactlastNameRomaji1";
     this.gcolContactNameRomaji.Name = "gcolContactNameRomaji";
     //
     // gcolStreet
     //
     this.gcolStreet.Caption = "Street";
     this.gcolStreet.FieldName = "Street1";
     this.gcolStreet.Name = "gcolStreet";
     this.gcolStreet.Width = 69;
     //
     // gcolCity
     //
     this.gcolCity.Caption = "City";
     this.gcolCity.FieldName = "City";
     this.gcolCity.Name = "gcolCity";
     this.gcolCity.Width = 46;
     //
     // gcolState
     //
     this.gcolState.Caption = "State";
     this.gcolState.FieldName = "State";
     this.gcolState.Name = "gcolState";
     this.gcolState.Width = 46;
     //
     // gcolCountry
     //
     this.gcolCountry.Caption = "Country";
     this.gcolCountry.FieldName = "Country";
     this.gcolCountry.Name = "gcolCountry";
     this.gcolCountry.Width = 46;
     //
     // gcolEmail1
     //
     this.gcolEmail1.Caption = "Email";
     this.gcolEmail1.FieldName = "Email1";
     this.gcolEmail1.Name = "gcolEmail1";
     this.gcolEmail1.Width = 41;
     //
     // gcolPhone
     //
     this.gcolPhone.Caption = "Phone";
     this.gcolPhone.FieldName = "Phone1";
     this.gcolPhone.Name = "gcolPhone";
     this.gcolPhone.Visible = true;
     this.gcolPhone.VisibleIndex = 3;
     this.gcolPhone.Width = 47;
     //
     // gcolJobTitle
     //
     this.gcolJobTitle.Caption = "Job Title";
     this.gcolJobTitle.FieldName = "TitleForJob";
     this.gcolJobTitle.Name = "gcolJobTitle";
     //
     // gcolStatusID
     //
     this.gcolStatusID.Caption = "Status";
     this.gcolStatusID.FieldName = "ContactStatus";
     this.gcolStatusID.Name = "gcolStatusID";
     this.gcolStatusID.Width = 79;
     //
     // gcolStatus
     //
     this.gcolStatus.Caption = "Status";
     this.gcolStatus.FieldName = "Status";
     this.gcolStatus.Name = "gcolStatus";
     this.gcolStatus.Visible = true;
     this.gcolStatus.VisibleIndex = 4;
     //
     // gcolContact1Name
     //
     this.gcolContact1Name.Caption = "Contact 1 Name";
     this.gcolContact1Name.FieldName = "Contact1";
     this.gcolContact1Name.Name = "gcolContact1Name";
     //
     // gcolContactPhone1
     //
     this.gcolContactPhone1.Caption = "Contact Phone 1";
     this.gcolContactPhone1.FieldName = "Contact1Phone";
     this.gcolContactPhone1.Name = "gcolContactPhone1";
     //
     // gcolContact2Name
     //
     this.gcolContact2Name.Caption = "Contact 2 Name";
     this.gcolContact2Name.FieldName = "Contact2";
     this.gcolContact2Name.Name = "gcolContact2Name";
     //
     // gcolContactPhone2
     //
     this.gcolContactPhone2.Caption = "Contact Phone 2";
     this.gcolContactPhone2.FieldName = "Contact2Phone";
     this.gcolContactPhone2.Name = "gcolContactPhone2";
     //
     // gcolMobilePhone
     //
     this.gcolMobilePhone.Caption = "Mobile Phone";
     this.gcolMobilePhone.FieldName = "PhoneMobile1";
     this.gcolMobilePhone.Name = "gcolMobilePhone";
     //
     // gcolDateJoined
     //
     this.gcolDateJoined.Caption = "Date Joined";
     this.gcolDateJoined.FieldName = "DateJoined";
     this.gcolDateJoined.Name = "gcolDateJoined";
     //
     // colAccRepName
     //
     this.colAccRepName.Caption = "Acc. Rep Name";
     this.colAccRepName.FieldName = "AccRepName";
     this.colAccRepName.Name = "colAccRepName";
     //
     // pnl_Find
     //
     this.pnl_Find.BackColor = System.Drawing.SystemColors.Window;
     this.pnl_Find.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pnl_Find.Controls.Add(this.panel1);
     this.pnl_Find.Controls.Add(this.txtSearch);
     this.pnl_Find.Controls.Add(this.chk_Anywhere);
     this.pnl_Find.Controls.Add(this.btn_Clear);
     this.pnl_Find.Controls.Add(this.btn_Find);
     this.pnl_Find.Controls.Add(this.lbl_Find);
     this.pnl_Find.Controls.Add(this.chk_AdvanceSearch);
     this.pnl_Find.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnl_Find.Location = new System.Drawing.Point(0, 0);
     this.pnl_Find.Name = "pnl_Find";
     this.pnl_Find.Size = new System.Drawing.Size(672, 88);
     this.pnl_Find.TabIndex = 26;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.pictureBox1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel1.Location = new System.Drawing.Point(484, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(184, 84);
     this.panel1.TabIndex = 10;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(184, 84);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(64, 17);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(296, 21);
     this.txtSearch.TabIndex = 9;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // chk_Anywhere
     //
     this.chk_Anywhere.BackColor = System.Drawing.SystemColors.Window;
     this.chk_Anywhere.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Anywhere.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_Anywhere.Location = new System.Drawing.Point(210, 44);
     this.chk_Anywhere.Name = "chk_Anywhere";
     this.chk_Anywhere.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.chk_Anywhere.Size = new System.Drawing.Size(154, 24);
     this.chk_Anywhere.TabIndex = 7;
     this.chk_Anywhere.Text = "Search Anywhere in Fields";
     this.chk_Anywhere.UseVisualStyleBackColor = false;
     //
     // btn_Clear
     //
     this.btn_Clear.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Clear.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Clear.Location = new System.Drawing.Point(370, 44);
     this.btn_Clear.Name = "btn_Clear";
     this.btn_Clear.Size = new System.Drawing.Size(75, 23);
     this.btn_Clear.TabIndex = 6;
     this.btn_Clear.Text = "Clear";
     this.btn_Clear.UseVisualStyleBackColor = false;
     this.btn_Clear.Click += new System.EventHandler(this.btn_Clear_Click);
     //
     // btn_Find
     //
     this.btn_Find.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Find.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Find.Location = new System.Drawing.Point(370, 15);
     this.btn_Find.Name = "btn_Find";
     this.btn_Find.Size = new System.Drawing.Size(75, 23);
     this.btn_Find.TabIndex = 4;
     this.btn_Find.Text = "Find";
     this.btn_Find.UseVisualStyleBackColor = false;
     this.btn_Find.Click += new System.EventHandler(this.btn_Find_Click);
     //
     // lbl_Find
     //
     this.lbl_Find.AutoSize = true;
     this.lbl_Find.Location = new System.Drawing.Point(15, 19);
     this.lbl_Find.Name = "lbl_Find";
     this.lbl_Find.Size = new System.Drawing.Size(30, 13);
     this.lbl_Find.TabIndex = 0;
     this.lbl_Find.Text = " Find";
     //
     // chk_AdvanceSearch
     //
     this.chk_AdvanceSearch.BackColor = System.Drawing.SystemColors.Window;
     this.chk_AdvanceSearch.Checked = true;
     this.chk_AdvanceSearch.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chk_AdvanceSearch.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_AdvanceSearch.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_AdvanceSearch.Location = new System.Drawing.Point(64, 44);
     this.chk_AdvanceSearch.Name = "chk_AdvanceSearch";
     this.chk_AdvanceSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.chk_AdvanceSearch.Size = new System.Drawing.Size(112, 24);
     this.chk_AdvanceSearch.TabIndex = 8;
     this.chk_AdvanceSearch.Text = "Search All Fields";
     this.chk_AdvanceSearch.UseVisualStyleBackColor = false;
     //
     // frmContactBrw
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(672, 333);
     this.Controls.Add(this.pnlBody);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "frmContactBrw";
     this.ShowInTaskbar = false;
     this.Text = "Contacts...";
     this.Load += new System.EventHandler(this.frmContactBrw_Load);
     this.pnlBody.ResumeLayout(false);
     this.pnl_SpeedSearch.ResumeLayout(false);
     this.pnl_SpeedSearch1.ResumeLayout(false);
     this.pnl_SpeedSearch1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwContact)).EndInit();
     this.pnl_Find.ResumeLayout(false);
     this.pnl_Find.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }