Exemple #1
0
 private void DrawChooseGroupRowEventMethod(object sender, DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventArgs e)
 {
     e.Painter.DrawObject(e.Info);
     if (this.AllowChooseGroup)
     {
         var repositoryCheck = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
         repositoryCheck.Caption        = "";
         repositoryCheck.GlyphAlignment = DevExpress.Utils.HorzAlignment.Far;
         var info    = repositoryCheck.CreateViewInfo() as DevExpress.XtraEditors.ViewInfo.CheckEditViewInfo;
         var painter = repositoryCheck.CreatePainter() as DevExpress.XtraEditors.Drawing.CheckEditPainter;
         int start   = this.GetDataRowHandleByGroupRowHandle(e.RowHandle);
         int end     = ((GroupSummaryDataType)this.GetGroupSummaryValue(e.RowHandle, GroupChooseNeedSummary)).end;
         int count   = ((GroupSummaryDataType)this.GetGroupSummaryValue(e.RowHandle, GroupChooseNeedSummary)).choosecount;
         if (count == end - start + 1)
         {
             info.EditValue = true;
         }
         else if (count == 0)
         {
             info.EditValue = false;
         }
         else
         {
             info.EditValue = null;
         }
         info.Bounds = e.Bounds;
         info.CalcViewInfo(e.Graphics);
         groupCheckBoxPosition = e.Bounds.Left + e.Bounds.Width;
         var args = new DevExpress.XtraEditors.Drawing.ControlGraphicsInfoArgs(info, new DevExpress.Utils.Drawing.GraphicsCache(e.Graphics), e.Bounds);
         painter.Draw(args);
         args.Cache.Dispose();
     }
     e.Handled = true;
 }
        /// <summary>
        /// 列头画多选框
        /// </summary>
        /// <param name="e"></param>
        /// <param name="chk"></param>

        private static void DrawCheckBox(DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventArgs e, bool chk)
        {
            try
            {
                DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryCheck = e.Column.ColumnEdit as DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit;
                if (repositoryCheck != null)
                {
                    System.Drawing.Graphics  g = e.Graphics;
                    System.Drawing.Rectangle r = e.Bounds;

                    DevExpress.XtraEditors.ViewInfo.CheckEditViewInfo      info;
                    DevExpress.XtraEditors.Drawing.CheckEditPainter        painter;
                    DevExpress.XtraEditors.Drawing.ControlGraphicsInfoArgs args;
                    info = repositoryCheck.CreateViewInfo() as DevExpress.XtraEditors.ViewInfo.CheckEditViewInfo;

                    painter        = repositoryCheck.CreatePainter() as DevExpress.XtraEditors.Drawing.CheckEditPainter;
                    info.EditValue = chk;
                    info.Bounds    = r;
                    info.CalcViewInfo(g);
                    args = new DevExpress.XtraEditors.Drawing.ControlGraphicsInfoArgs(info, new DevExpress.Utils.Drawing.GraphicsCache(g), r);
                    painter.Draw(args);
                    args.Cache.Dispose();
                }
            }
            catch
            {
            }
        }
        private void MutilGridExport_Load(object sender, EventArgs e)
        {
            try
            {
                GridStyle gs = new GridStyle(this.gridControl1, this.gridView1);
                gs.AddColumn("인덱스", "INDEX", _ColumnType.Default, 0, _ColumnAlign.Center, false);
                gs.AddColumn("컬럼명1", "COL_NAME1", _ColumnType.Default, 80, _ColumnAlign.Center, true);
                gs.AddColumn("컬럼명2", "COL_NAME2", _ColumnType.Default, 80, _ColumnAlign.Center, true);
                gs.AddColumn("파일명", "FILE_NAME", _ColumnType.Default, 120, _ColumnAlign.Left, true, true);
                gs.AddColumn("선택", "CHK", _ColumnType.CheckBox, 40, _ColumnAlign.Center, true, true);

                DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit mCheckBox = (DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit) this.gridView1.Columns["CHK"].ColumnEdit;
                mCheckBox.CheckedChanged += new EventHandler(mCheckBox_CheckedChanged);

                gridView1.Columns["FILE_NAME"].AppearanceHeader.ForeColor            = Color.DarkOrange;
                gridView1.Columns["FILE_NAME"].AppearanceHeader.Options.UseForeColor = true;

                Cls.Grid.Options.SelectedRow(gridView1);
                Cls.Grid.Options.EmbeddedNavigater(gridControl1);
                this.gridControl1.DataSource = dt;
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "확인");
                this.timer_Close.Enabled = true;
            }
        }
Exemple #4
0
 private void CustomDrawChooseColumnHeaderEventMethod(object sender, DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventArgs e)
 {
     if (this.AllowChoose && e.Column != null && e.Column.FieldName == ChooseColumnName)
     {
         e.Info.InnerElements.Clear();
         e.Info.Caption = "";
         e.Painter.DrawObject(e.Info);
         var repositoryCheck = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
         repositoryCheck.Caption = "";
         var info    = repositoryCheck.CreateViewInfo() as DevExpress.XtraEditors.ViewInfo.CheckEditViewInfo;
         var painter = repositoryCheck.CreatePainter() as DevExpress.XtraEditors.Drawing.CheckEditPainter;
         if (this.ChooseCount == this.DataRowCount)
         {
             info.EditValue = true;
         }
         else if (this.ChooseCount > 0)
         {
             info.EditValue = null;
         }
         else
         {
             info.EditValue = false;
         }
         info.Bounds = e.Bounds;
         info.CalcViewInfo(e.Graphics);
         var args = new DevExpress.XtraEditors.Drawing.ControlGraphicsInfoArgs(info, new DevExpress.Utils.Drawing.GraphicsCache(e.Graphics), e.Bounds);
         painter.Draw(args);
         args.Cache.Dispose();
         e.Handled = true;
     }
 }
        /// <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;
        }
Exemple #6
0
        public void CreateUnboundCheckboxColumn()
        {
            string mnemonic;
            string mnemonicVehiclePlant;

            // Disable editing of visible columns
            foreach (var c in gridView1.Columns)
            {
                ((DevExpress.XtraGrid.Columns.GridColumn)c).OptionsColumn.AllowEdit = false;
            }

            // Create an arraylist of unbound checkboxes, setting them all to false
            _unboundData.Clear();
            for (int i = 0; i <= gridView1.RowCount; i++)
            {
                _unboundData.Add(false);
            }

            // Create unbound checkbox column
            gridView1.BeginUpdate();
            DevExpress.XtraGrid.Columns.GridColumn ColumnCheck = gridView1.Columns.AddField("chkEditColumn");
            DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit RepositoryCheck = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            ColumnCheck.ColumnEdit   = RepositoryCheck;
            ColumnCheck.Name         = "chkEditColumn";
            ColumnCheck.UnboundType  = DevExpress.Data.UnboundColumnType.Boolean;
            ColumnCheck.VisibleIndex = 0;
            ColumnCheck.OptionsColumn.ShowCaption = false;
            gridView1.CustomUnboundColumnData    += gridView1_CustomUnboundColumnData;
            gridView1.EndUpdate();

            if (_quoteType != QuoteTypes.New && _quoteCsmData != null)
            {
                foreach (var item in _quoteCsmData)
                {
                    mnemonic = item.CSM_Mnemonic;
                    for (int i = 0; i < gridView1.RowCount; i++)
                    {
                        mnemonicVehiclePlant = gridView1.GetRowCellValue(i, "Mnemonic_Vehicle_Plant").ToString();
                        if (mnemonicVehiclePlant == mnemonic)
                        {
                            gridView1.SetRowCellValue(i, "chkEditColumn", true);
                        }
                    }
                }
            }
            // Get a list of CSM Mnemonics that were originally tied to this Quote
            _originalChecked.AddRange(_unboundData);
        }
 public PropertiesXtraUserControl()
 {
     this.InitializeComponent( );
     this.propertyGridControl.AutoGenerateRows = true;
     this.AddControls(this, this.comboBoxEdit);
     this.comboBoxEdit.SelectedIndex = 0;
     {
         this.propertyGridControl.FindPanelVisible                       = true;
         this.propertyGridControl.OptionsFind.ShowCloseButton            = false;
         this.propertyGridControl.OptionsFind.Visibility                 = DevExpress.XtraVerticalGrid.FindPanelVisibility.Always;
         this.propertyGridControl.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
         this.propertyGridControl.OptionsView.ShowFilterPanelMode        = DevExpress.XtraVerticalGrid.ShowFilterPanelMode.ShowAlways;
     }
     {
         DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit ri = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit
         {
             CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio
         };
         this.propertyGridControl.DefaultEditors.Add(typeof(Boolean), ri);
     }
 }
Exemple #8
0
        private void AddEditorsToTreeview()
        {
            repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
            repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();

            repositoryItemButtonEdit1.Click += new EventHandler(repositoryItemButtonEdit1_Click);

            treeList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { repositoryItemCheckEdit1, repositoryItemComboBox1, repositoryItemButtonEdit1 });
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     this.colActive = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chkEditActive = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.chkEditShowInProcess = new DevExpress.XtraEditors.CheckEdit();
     this.lkActive = new DevExpress.XtraEditors.LookUpEdit();
     this.lkOwnership = new DevExpress.XtraEditors.LookUpEdit();
     this.lkWoreda = new DevExpress.XtraEditors.LookUpEdit();
     this.lkZone = new DevExpress.XtraEditors.LookUpEdit();
     this.layoutControl2 = new DevExpress.XtraLayout.LayoutControl();
     this.grdClientStatus = new DevExpress.XtraGrid.GridControl();
     this.grdViewClientStatus = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCreditAgreement = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInProcess = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chkEditInprocess = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lkRegion = new DevExpress.XtraEditors.LookUpEdit();
     this.lkType = new DevExpress.XtraEditors.LookUpEdit();
     this.btnAddReceivingUnit = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.emptySpaceItem2 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     ((System.ComponentModel.ISupportInitialize)(this.chkEditActive)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkEditShowInProcess.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkActive.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).BeginInit();
     this.layoutControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdClientStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdViewClientStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkEditInprocess)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     this.SuspendLayout();
     //
     // colActive
     //
     this.colActive.Caption = "Active";
     this.colActive.ColumnEdit = this.chkEditActive;
     this.colActive.FieldName = "Active";
     this.colActive.Name = "colActive";
     this.colActive.OptionsColumn.AllowEdit = false;
     this.colActive.Visible = true;
     this.colActive.VisibleIndex = 4;
     this.colActive.Width = 181;
     //
     // chkEditActive
     //
     this.chkEditActive.AutoHeight = false;
     this.chkEditActive.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.chkEditActive.Name = "chkEditActive";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.chkEditShowInProcess);
     this.layoutControl1.Controls.Add(this.lkActive);
     this.layoutControl1.Controls.Add(this.lkOwnership);
     this.layoutControl1.Controls.Add(this.lkWoreda);
     this.layoutControl1.Controls.Add(this.lkZone);
     this.layoutControl1.Controls.Add(this.layoutControl2);
     this.layoutControl1.Controls.Add(this.lkRegion);
     this.layoutControl1.Controls.Add(this.lkType);
     this.layoutControl1.Controls.Add(this.btnAddReceivingUnit);
     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(243, 254, 250, 350);
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1123, 575);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // chkEditShowInProcess
     //
     this.chkEditShowInProcess.Location = new System.Drawing.Point(747, 4);
     this.chkEditShowInProcess.Name = "chkEditShowInProcess";
     this.chkEditShowInProcess.Properties.Caption = "Show in process only";
     this.chkEditShowInProcess.Size = new System.Drawing.Size(372, 19);
     this.chkEditShowInProcess.StyleController = this.layoutControl1;
     this.chkEditShowInProcess.TabIndex = 11;
     this.chkEditShowInProcess.CheckedChanged += new System.EventHandler(this.chkEditShowInProcess_CheckedChanged);
     //
     // lkActive
     //
     this.lkActive.EnterMoveNextControl = true;
     this.lkActive.Location = new System.Drawing.Point(473, 52);
     this.lkActive.Name = "lkActive";
     this.lkActive.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkActive.Properties.DropDownRows = 3;
     this.lkActive.Properties.NullText = "";
     this.lkActive.Properties.ShowFooter = false;
     this.lkActive.Properties.ShowHeader = false;
     this.lkActive.Size = new System.Drawing.Size(270, 20);
     this.lkActive.StyleController = this.layoutControl1;
     this.lkActive.TabIndex = 10;
     this.lkActive.EditValueChanged += new System.EventHandler(this.lkActive_EditValueChanged);
     //
     // lkOwnership
     //
     this.lkOwnership.EnterMoveNextControl = true;
     this.lkOwnership.Location = new System.Drawing.Point(473, 4);
     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("Name", "Name")});
     this.lkOwnership.Properties.DisplayMember = "Name";
     this.lkOwnership.Properties.NullText = "";
     this.lkOwnership.Properties.ShowFooter = false;
     this.lkOwnership.Properties.ShowHeader = false;
     this.lkOwnership.Properties.ValueMember = "ID";
     this.lkOwnership.Size = new System.Drawing.Size(270, 20);
     this.lkOwnership.StyleController = this.layoutControl1;
     this.lkOwnership.TabIndex = 9;
     this.lkOwnership.ToolTip = "Select Ownership type";
     this.lkOwnership.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.lkOwnership.ToolTipTitle = "Filter...";
     this.lkOwnership.EditValueChanged += new System.EventHandler(this.lkOwnership_EditValueChanged);
     //
     // lkWoreda
     //
     this.lkWoreda.EnterMoveNextControl = true;
     this.lkWoreda.Location = new System.Drawing.Point(86, 52);
     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.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("WoredaName", "Woreda Name", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Count")});
     this.lkWoreda.Properties.DisplayMember = "Count";
     this.lkWoreda.Properties.NullText = "Select Woreda";
     this.lkWoreda.Properties.ShowFooter = false;
     this.lkWoreda.Properties.ShowHeader = false;
     this.lkWoreda.Properties.ValueMember = "ID";
     this.lkWoreda.Size = new System.Drawing.Size(301, 20);
     this.lkWoreda.StyleController = this.layoutControl1;
     this.lkWoreda.TabIndex = 7;
     this.lkWoreda.ToolTip = "Select woreda, the number of facilities in that Woreda is written next to it.";
     this.lkWoreda.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.lkWoreda.ToolTipTitle = "Filter";
     this.lkWoreda.EditValueChanged += new System.EventHandler(this.lkWoreda_EditValueChanged);
     //
     // lkZone
     //
     this.lkZone.EnterMoveNextControl = true;
     this.lkZone.Location = new System.Drawing.Point(86, 28);
     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("ZoneName", "Zone Name", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Count", "Count")});
     this.lkZone.Properties.DisplayMember = "Count";
     this.lkZone.Properties.NullText = "Select Zone";
     this.lkZone.Properties.ShowFooter = false;
     this.lkZone.Properties.ShowHeader = false;
     this.lkZone.Properties.ValueMember = "ID";
     this.lkZone.Size = new System.Drawing.Size(301, 20);
     this.lkZone.StyleController = this.layoutControl1;
     this.lkZone.TabIndex = 6;
     this.lkZone.ToolTip = "Select Zone, the number of facilities in that zone is written next to it.";
     this.lkZone.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.lkZone.ToolTipTitle = "Filter";
     this.lkZone.EditValueChanged += new System.EventHandler(this.lkZone_EditValueChanged);
     //
     // layoutControl2
     //
     this.layoutControl2.Controls.Add(this.grdClientStatus);
     this.layoutControl2.Location = new System.Drawing.Point(4, 76);
     this.layoutControl2.Name = "layoutControl2";
     this.layoutControl2.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(251, 0, 250, 350);
     this.layoutControl2.Root = this.Root;
     this.layoutControl2.Size = new System.Drawing.Size(1115, 495);
     this.layoutControl2.TabIndex = 4;
     this.layoutControl2.Text = "layoutControl2";
     //
     // grdClientStatus
     //
     this.grdClientStatus.Location = new System.Drawing.Point(12, 12);
     this.grdClientStatus.MainView = this.grdViewClientStatus;
     this.grdClientStatus.Name = "grdClientStatus";
     this.grdClientStatus.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.chkEditInprocess,
     this.chkEditActive});
     this.grdClientStatus.Size = new System.Drawing.Size(1091, 471);
     this.grdClientStatus.TabIndex = 4;
     this.grdClientStatus.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grdViewClientStatus});
     //
     // grdViewClientStatus
     //
     this.grdViewClientStatus.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.grdViewClientStatus.Appearance.Empty.Options.UseBackColor = true;
     this.grdViewClientStatus.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colNo,
     this.colName,
     this.colType,
     this.colCreditAgreement,
     this.colActive,
     this.colInProcess,
     this.colID});
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Column = this.colActive;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
     styleFormatCondition1.Value1 = false;
     this.grdViewClientStatus.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.grdViewClientStatus.GridControl = this.grdClientStatus;
     this.grdViewClientStatus.Name = "grdViewClientStatus";
     this.grdViewClientStatus.OptionsCustomization.AllowColumnMoving = false;
     this.grdViewClientStatus.OptionsCustomization.AllowGroup = false;
     this.grdViewClientStatus.OptionsView.ShowGroupPanel = false;
     this.grdViewClientStatus.CustomDrawEmptyForeground += new DevExpress.XtraGrid.Views.Base.CustomDrawEventHandler(this.grdViewClientStatus_CustomDrawEmptyForeground);
     this.grdViewClientStatus.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdViewClientStatus_KeyPress);
     //
     // colNo
     //
     this.colNo.Caption = "No";
     this.colNo.FieldName = "No";
     this.colNo.Name = "colNo";
     this.colNo.OptionsColumn.AllowEdit = false;
     this.colNo.Visible = true;
     this.colNo.VisibleIndex = 0;
     this.colNo.Width = 42;
     //
     // colName
     //
     this.colName.Caption = "Name";
     this.colName.FieldName = "Name";
     this.colName.Name = "colName";
     this.colName.OptionsColumn.AllowEdit = false;
     this.colName.Visible = true;
     this.colName.VisibleIndex = 1;
     this.colName.Width = 243;
     //
     // colType
     //
     this.colType.Caption = "Type";
     this.colType.FieldName = "Type";
     this.colType.Name = "colType";
     this.colType.OptionsColumn.AllowEdit = false;
     this.colType.Visible = true;
     this.colType.VisibleIndex = 2;
     this.colType.Width = 204;
     //
     // colCreditAgreement
     //
     this.colCreditAgreement.Caption = "Credit Agreement";
     this.colCreditAgreement.Name = "colCreditAgreement";
     this.colCreditAgreement.OptionsColumn.AllowEdit = false;
     this.colCreditAgreement.Visible = true;
     this.colCreditAgreement.VisibleIndex = 3;
     this.colCreditAgreement.Width = 117;
     //
     // colInProcess
     //
     this.colInProcess.Caption = "In Process";
     this.colInProcess.ColumnEdit = this.chkEditInprocess;
     this.colInProcess.FieldName = "InProcess";
     this.colInProcess.Name = "colInProcess";
     this.colInProcess.Visible = true;
     this.colInProcess.VisibleIndex = 5;
     this.colInProcess.Width = 286;
     //
     // chkEditInprocess
     //
     this.chkEditInprocess.AutoHeight = false;
     this.chkEditInprocess.Name = "chkEditInprocess";
     this.chkEditInprocess.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.chkEditInprocess.PictureChecked = global::HCMIS.Desktop.Properties.Resources.Check;
     this.chkEditInprocess.PictureGrayed = global::HCMIS.Desktop.Properties.Resources.cross;
     this.chkEditInprocess.PictureUnchecked = global::HCMIS.Desktop.Properties.Resources.cross;
     this.chkEditInprocess.CheckedChanged += new System.EventHandler(this.chkEditInprocess_CheckedChanged);
     //
     // colID
     //
     this.colID.Caption = "ID";
     this.colID.FieldName = "ID";
     this.colID.Name = "colID";
     //
     // Root
     //
     this.Root.CustomizationFormText = "Root";
     this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.Root.GroupBordersVisible = false;
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem8});
     this.Root.Location = new System.Drawing.Point(0, 0);
     this.Root.Name = "Root";
     this.Root.Size = new System.Drawing.Size(1115, 495);
     this.Root.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.Root.Text = "Root";
     this.Root.TextVisible = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.grdClientStatus;
     this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(1095, 475);
     this.layoutControlItem8.Text = "layoutControlItem8";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextToControlDistance = 0;
     this.layoutControlItem8.TextVisible = false;
     //
     // lkRegion
     //
     this.lkRegion.EditValue = "<null>";
     this.lkRegion.EnterMoveNextControl = true;
     this.lkRegion.Location = new System.Drawing.Point(86, 4);
     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", "Region Name")});
     this.lkRegion.Properties.DisplayMember = "RegionName";
     this.lkRegion.Properties.NullText = "";
     this.lkRegion.Properties.ShowFooter = false;
     this.lkRegion.Properties.ShowHeader = false;
     this.lkRegion.Properties.ValueMember = "ID";
     this.lkRegion.Size = new System.Drawing.Size(301, 20);
     this.lkRegion.StyleController = this.layoutControl1;
     this.lkRegion.TabIndex = 5;
     this.lkRegion.EditValueChanged += new System.EventHandler(this.lkRegion_EditValueChanged);
     //
     // lkType
     //
     this.lkType.EnterMoveNextControl = true;
     this.lkType.Location = new System.Drawing.Point(473, 28);
     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("Name", "Name")});
     this.lkType.Properties.DisplayMember = "Name";
     this.lkType.Properties.NullText = "";
     this.lkType.Properties.ShowFooter = false;
     this.lkType.Properties.ShowHeader = false;
     this.lkType.Properties.ValueMember = "ID";
     this.lkType.Size = new System.Drawing.Size(270, 20);
     this.lkType.StyleController = this.layoutControl1;
     this.lkType.TabIndex = 8;
     this.lkType.ToolTip = "Select Facility Type,";
     this.lkType.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.lkType.ToolTipTitle = "Filter...";
     this.lkType.EditValueChanged += new System.EventHandler(this.lkType_EditValueChanged);
     //
     // btnAddReceivingUnit
     //
     this.btnAddReceivingUnit.Image = global::HCMIS.Desktop.Properties.Resources.pencil_go;
     this.btnAddReceivingUnit.Location = new System.Drawing.Point(869, 50);
     this.btnAddReceivingUnit.Name = "btnAddReceivingUnit";
     this.btnAddReceivingUnit.Size = new System.Drawing.Size(151, 22);
     this.btnAddReceivingUnit.StyleController = this.layoutControl1;
     this.btnAddReceivingUnit.TabIndex = 12;
     this.btnAddReceivingUnit.Text = "Search Location by Name";
     this.btnAddReceivingUnit.Click += new System.EventHandler(this.btnAddReceivingUnit_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.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem4,
     this.layoutControlItem3,
     this.layoutControlItem5,
     this.layoutControlItem6,
     this.layoutControlItem9,
     this.layoutControlItem10,
     this.emptySpaceItem3,
     this.emptySpaceItem2,
     this.layoutControlItem7,
     this.emptySpaceItem1});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1123, 575);
     this.layoutControlGroup1.Spacing = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.layoutControl2;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 72);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(1119, 499);
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.lkRegion;
     this.layoutControlItem2.CustomizationFormText = "Region";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(387, 24);
     this.layoutControlItem2.Text = "Region";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(78, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.lkWoreda;
     this.layoutControlItem4.CustomizationFormText = "Woreda";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 48);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(387, 24);
     this.layoutControlItem4.Text = "Woreda";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(78, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.lkZone;
     this.layoutControlItem3.CustomizationFormText = "Zone";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(387, 24);
     this.layoutControlItem3.Text = "Zone";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(78, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.lkType;
     this.layoutControlItem5.CustomizationFormText = "Type";
     this.layoutControlItem5.Location = new System.Drawing.Point(387, 24);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem5.Text = "Facility Type";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(78, 13);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.lkOwnership;
     this.layoutControlItem6.CustomizationFormText = "Ownership";
     this.layoutControlItem6.Location = new System.Drawing.Point(387, 0);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem6.Text = "Ownership Type";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(78, 13);
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.chkEditShowInProcess;
     this.layoutControlItem9.CustomizationFormText = "layoutControlItem9";
     this.layoutControlItem9.Location = new System.Drawing.Point(743, 0);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(376, 23);
     this.layoutControlItem9.Text = "layoutControlItem9";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem9.TextToControlDistance = 0;
     this.layoutControlItem9.TextVisible = false;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.btnAddReceivingUnit;
     this.layoutControlItem10.CustomizationFormText = "layoutControlItem10";
     this.layoutControlItem10.Location = new System.Drawing.Point(865, 46);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(155, 26);
     this.layoutControlItem10.Text = "layoutControlItem10";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem10.TextToControlDistance = 0;
     this.layoutControlItem10.TextVisible = false;
     //
     // emptySpaceItem3
     //
     this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3";
     this.emptySpaceItem3.Location = new System.Drawing.Point(743, 23);
     this.emptySpaceItem3.Name = "emptySpaceItem3";
     this.emptySpaceItem3.Size = new System.Drawing.Size(122, 49);
     this.emptySpaceItem3.Text = "emptySpaceItem3";
     this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0);
     //
     // emptySpaceItem2
     //
     this.emptySpaceItem2.CustomizationFormText = "emptySpaceItem2";
     this.emptySpaceItem2.Location = new System.Drawing.Point(1020, 23);
     this.emptySpaceItem2.Name = "emptySpaceItem2";
     this.emptySpaceItem2.Size = new System.Drawing.Size(99, 49);
     this.emptySpaceItem2.Text = "emptySpaceItem2";
     this.emptySpaceItem2.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.lkActive;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(387, 48);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(356, 24);
     this.layoutControlItem7.Text = "Show";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(78, 13);
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(865, 23);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(155, 23);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // ClientStatusViewForm
     //
     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.layoutControl1);
     this.Name = "ClientStatusViewForm";
     this.Text = "Client Status View";
     this.Load += new System.EventHandler(this.ClientStatusViewForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chkEditActive)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.chkEditShowInProcess.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkActive.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkOwnership.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkWoreda.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkZone.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl2)).EndInit();
     this.layoutControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdClientStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdViewClientStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkEditInprocess)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkRegion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).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.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.txtEdtRefNo   = new DevExpress.XtraEditors.TextEdit();
     this.label6        = new System.Windows.Forms.Label();
     this.calcEdtQty    = new DevExpress.XtraEditors.CalcEdit();
     this.lkpEdtItemFreebiePromotionCode = new DevExpress.XtraEditors.LookUpEdit();
     this.lkpEdtDiscount           = new DevExpress.XtraEditors.LookUpEdit();
     this.Label5                   = new System.Windows.Forms.Label();
     this.Label4                   = new System.Windows.Forms.Label();
     this.txtEdtUnitPrice          = new DevExpress.XtraEditors.TextEdit();
     this.txtEdtDescription        = new DevExpress.XtraEditors.TextEdit();
     this.txtEdtItemCode           = new DevExpress.XtraEditors.TextEdit();
     this.Label3                   = new System.Windows.Forms.Label();
     this.Label2                   = new System.Windows.Forms.Label();
     this.Label1                   = new System.Windows.Forms.Label();
     this.Label41                  = new System.Windows.Forms.Label();
     this.panelControl2            = new DevExpress.XtraEditors.PanelControl();
     this.panelControl4            = 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();
     this.panelControl3            = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK           = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtRefNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdtQty.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtItemFreebiePromotionCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtDiscount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtUnitPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtDescription.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtItemCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.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();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl1.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.txtEdtRefNo);
     this.panelControl1.Controls.Add(this.label6);
     this.panelControl1.Controls.Add(this.calcEdtQty);
     this.panelControl1.Controls.Add(this.lkpEdtItemFreebiePromotionCode);
     this.panelControl1.Controls.Add(this.lkpEdtDiscount);
     this.panelControl1.Controls.Add(this.Label5);
     this.panelControl1.Controls.Add(this.Label4);
     this.panelControl1.Controls.Add(this.txtEdtUnitPrice);
     this.panelControl1.Controls.Add(this.txtEdtDescription);
     this.panelControl1.Controls.Add(this.txtEdtItemCode);
     this.panelControl1.Controls.Add(this.Label3);
     this.panelControl1.Controls.Add(this.Label2);
     this.panelControl1.Controls.Add(this.Label1);
     this.panelControl1.Controls.Add(this.Label41);
     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(552, 216);
     this.panelControl1.TabIndex = 28;
     //
     // txtEdtRefNo
     //
     this.txtEdtRefNo.EditValue = "";
     this.txtEdtRefNo.Location  = new System.Drawing.Point(136, 188);
     this.txtEdtRefNo.Name      = "txtEdtRefNo";
     this.txtEdtRefNo.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.txtEdtRefNo.Properties.Appearance.Options.UseFont = true;
     this.txtEdtRefNo.Properties.MaxLength = 49;
     this.txtEdtRefNo.Size     = new System.Drawing.Size(250, 23);
     this.txtEdtRefNo.TabIndex = 38;
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(10, 188);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(109, 26);
     this.label6.TabIndex = 39;
     this.label6.Text     = "Ref No";
     //
     // calcEdtQty
     //
     this.calcEdtQty.EditValue = new decimal(new int[] {
         0,
         0,
         0,
         0
     });
     this.calcEdtQty.Location = new System.Drawing.Point(136, 66);
     this.calcEdtQty.Name     = "calcEdtQty";
     this.calcEdtQty.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.calcEdtQty.Properties.Appearance.Options.UseFont = true;
     this.calcEdtQty.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
     this.calcEdtQty.Size              = new System.Drawing.Size(250, 23);
     this.calcEdtQty.TabIndex          = 2;
     this.calcEdtQty.EditValueChanged += new System.EventHandler(this.calcEdtQty_EditValueChanged);
     //
     // lkpEdtItemFreebiePromotionCode
     //
     this.lkpEdtItemFreebiePromotionCode.EditValue = "";
     this.lkpEdtItemFreebiePromotionCode.Location  = new System.Drawing.Point(136, 156);
     this.lkpEdtItemFreebiePromotionCode.Name      = "lkpEdtItemFreebiePromotionCode";
     this.lkpEdtItemFreebiePromotionCode.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.lkpEdtItemFreebiePromotionCode.Properties.Appearance.Options.UseFont = true;
     this.lkpEdtItemFreebiePromotionCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtItemFreebiePromotionCode.Size              = new System.Drawing.Size(250, 23);
     this.lkpEdtItemFreebiePromotionCode.TabIndex          = 5;
     this.lkpEdtItemFreebiePromotionCode.EditValueChanged += new System.EventHandler(this.lkpEdtItemFreebiePromotionCode_EditValueChanged);
     //
     // lkpEdtDiscount
     //
     this.lkpEdtDiscount.EditValue = "";
     this.lkpEdtDiscount.Location  = new System.Drawing.Point(136, 126);
     this.lkpEdtDiscount.Name      = "lkpEdtDiscount";
     this.lkpEdtDiscount.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.lkpEdtDiscount.Properties.Appearance.Options.UseFont = true;
     this.lkpEdtDiscount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtDiscount.Size     = new System.Drawing.Size(250, 23);
     this.lkpEdtDiscount.TabIndex = 4;
     //
     // Label5
     //
     this.Label5.AutoSize = true;
     this.Label5.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label5.Location = new System.Drawing.Point(10, 156);
     this.Label5.Name     = "Label5";
     this.Label5.Size     = new System.Drawing.Size(80, 23);
     this.Label5.TabIndex = 37;
     this.Label5.Text     = "Freebie";
     //
     // Label4
     //
     this.Label4.AutoSize = true;
     this.Label4.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label4.Location = new System.Drawing.Point(10, 126);
     this.Label4.Name     = "Label4";
     this.Label4.Size     = new System.Drawing.Size(94, 23);
     this.Label4.TabIndex = 36;
     this.Label4.Text     = "Discount";
     //
     // txtEdtUnitPrice
     //
     this.txtEdtUnitPrice.EditValue = "";
     this.txtEdtUnitPrice.Enabled   = false;
     this.txtEdtUnitPrice.Location  = new System.Drawing.Point(136, 96);
     this.txtEdtUnitPrice.Name      = "txtEdtUnitPrice";
     this.txtEdtUnitPrice.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.txtEdtUnitPrice.Properties.Appearance.Options.UseFont = true;
     this.txtEdtUnitPrice.Size     = new System.Drawing.Size(250, 23);
     this.txtEdtUnitPrice.TabIndex = 3;
     //
     // txtEdtDescription
     //
     this.txtEdtDescription.EditValue = "";
     this.txtEdtDescription.Enabled   = false;
     this.txtEdtDescription.Location  = new System.Drawing.Point(136, 36);
     this.txtEdtDescription.Name      = "txtEdtDescription";
     this.txtEdtDescription.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.txtEdtDescription.Properties.Appearance.Options.UseFont = true;
     this.txtEdtDescription.Properties.MaxLength = 250;
     this.txtEdtDescription.Size     = new System.Drawing.Size(250, 23);
     this.txtEdtDescription.TabIndex = 1;
     //
     // txtEdtItemCode
     //
     this.txtEdtItemCode.EditValue = "";
     this.txtEdtItemCode.Enabled   = false;
     this.txtEdtItemCode.Location  = new System.Drawing.Point(136, 6);
     this.txtEdtItemCode.Name      = "txtEdtItemCode";
     this.txtEdtItemCode.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.txtEdtItemCode.Properties.Appearance.Options.UseFont = true;
     this.txtEdtItemCode.Size     = new System.Drawing.Size(250, 23);
     this.txtEdtItemCode.TabIndex = 0;
     //
     // Label3
     //
     this.Label3.AutoSize = true;
     this.Label3.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label3.Location = new System.Drawing.Point(10, 96);
     this.Label3.Name     = "Label3";
     this.Label3.Size     = new System.Drawing.Size(103, 23);
     this.Label3.TabIndex = 31;
     this.Label3.Text     = "Unit Price";
     //
     // Label2
     //
     this.Label2.AutoSize = true;
     this.Label2.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label2.Location = new System.Drawing.Point(10, 66);
     this.Label2.Name     = "Label2";
     this.Label2.Size     = new System.Drawing.Size(93, 23);
     this.Label2.TabIndex = 30;
     this.Label2.Text     = "Quantity";
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.Location = new System.Drawing.Point(10, 36);
     this.Label1.Name     = "Label1";
     this.Label1.Size     = new System.Drawing.Size(119, 23);
     this.Label1.TabIndex = 29;
     this.Label1.Text     = "Description";
     //
     // Label41
     //
     this.Label41.AutoSize = true;
     this.Label41.Font     = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label41.Location = new System.Drawing.Point(10, 6);
     this.Label41.Name     = "Label41";
     this.Label41.Size     = new System.Drawing.Size(110, 23);
     this.Label41.TabIndex = 28;
     this.Label41.Text     = "Item Code";
     //
     // panelControl2
     //
     this.panelControl2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl2.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.panelControl4);
     this.panelControl2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 216);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(552, 204);
     this.panelControl2.TabIndex = 29;
     //
     // panelControl4
     //
     this.panelControl4.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl4.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.xtraTabControl1);
     this.panelControl4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControl4.Location = new System.Drawing.Point(0, 0);
     this.panelControl4.Name     = "panelControl4";
     this.panelControl4.Size     = new System.Drawing.Size(552, 204);
     this.panelControl4.TabIndex = 6;
     //
     // 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(552, 204);
     this.xtraTabControl1.TabIndex        = 3;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.xtraTabPage1,
         this.xtraTabPage2
     });
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // 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(543, 173);
     this.xtraTabPage1.Text = "Freebie-Package";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.EmbeddedNavigator.Name = "";
     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(543, 173);
     this.gridControl1.TabIndex = 1;
     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(543, 173);
     this.xtraTabPage2.Text = "Freebie-Product";
     //
     // gridControl2
     //
     this.gridControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl2.EmbeddedNavigator.Name = "";
     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(543, 173);
     this.gridControl2.TabIndex = 1;
     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";
     //
     // panelControl3
     //
     this.panelControl3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.panelControl3.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.simpleButtonCancel);
     this.panelControl3.Controls.Add(this.simpleButtonOK);
     this.panelControl3.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl3.Location = new System.Drawing.Point(0, 420);
     this.panelControl3.Name     = "panelControl3";
     this.panelControl3.Size     = new System.Drawing.Size(552, 32);
     this.panelControl3.TabIndex = 30;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(468, 5);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.Size         = new System.Drawing.Size(75, 23);
     this.simpleButtonCancel.TabIndex     = 1;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(384, 5);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.Size         = new System.Drawing.Size(75, 23);
     this.simpleButtonOK.TabIndex     = 0;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormAddItemFreebiesAndDiscount
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(552, 452);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormAddItemFreebiesAndDiscount";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Edit Item";
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtRefNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.calcEdtQty.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtItemFreebiePromotionCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtDiscount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtUnitPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtDescription.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtItemCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.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();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #11
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();
 }
Exemple #12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SerializableAppearanceObject             serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject             serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit1      = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this._teSn         = new DevExpress.XtraEditors.TextEdit();
     this._teUserName   = new DevExpress.XtraEditors.TextEdit();
     this._tePass       = new DevExpress.XtraEditors.TextEdit();
     this._te2Pass      = new DevExpress.XtraEditors.TextEdit();
     this._loDepartment = new DevExpress.XtraEditors.LookUpEdit();
     this._loJobs       = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.gridControl1  = new DevExpress.XtraGrid.GridControl();
     this.gridView1     = new DevExpress.XtraGrid.Views.Grid.GridView();
     this._coT          = new DevExpress.XtraGrid.Columns.GridColumn();
     this._coID         = new DevExpress.XtraGrid.Columns.GridColumn();
     this._coName       = new DevExpress.XtraGrid.Columns.GridColumn();
     this._coA          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.textEdit1     = new DevExpress.XtraEditors.TextEdit();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this._teSn.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._teUserName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._tePass.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._te2Pass.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._loDepartment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this._loJobs.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(52, 23);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(48, 14);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text     = "登录名:";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(53, 49);
     this.labelControl2.Name     = "labelControl2";
     this.labelControl2.Size     = new System.Drawing.Size(48, 14);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text     = "用户名:";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(53, 102);
     this.labelControl3.Name     = "labelControl3";
     this.labelControl3.Size     = new System.Drawing.Size(48, 14);
     this.labelControl3.TabIndex = 2;
     this.labelControl3.Text     = "新密码:";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(41, 129);
     this.labelControl4.Name     = "labelControl4";
     this.labelControl4.Size     = new System.Drawing.Size(60, 14);
     this.labelControl4.TabIndex = 3;
     this.labelControl4.Text     = "确认密码:";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(41, 156);
     this.labelControl5.Name     = "labelControl5";
     this.labelControl5.Size     = new System.Drawing.Size(60, 14);
     this.labelControl5.TabIndex = 4;
     this.labelControl5.Text     = "所属部门:";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(41, 185);
     this.labelControl6.Name     = "labelControl6";
     this.labelControl6.Size     = new System.Drawing.Size(60, 14);
     this.labelControl6.TabIndex = 5;
     this.labelControl6.Text     = "所属职位:";
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(57, 230);
     this.simpleButton1.Name     = "simpleButton1";
     this.simpleButton1.Size     = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 8;
     this.simpleButton1.Text     = "确定";
     this.simpleButton1.Click   += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(193, 229);
     this.simpleButton2.Name     = "simpleButton2";
     this.simpleButton2.Size     = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 9;
     this.simpleButton2.Text     = "取消";
     this.simpleButton2.Click   += new System.EventHandler(this.simpleButton2_Click);
     //
     // _teSn
     //
     this._teSn.ImeMode  = System.Windows.Forms.ImeMode.Off;
     this._teSn.Location = new System.Drawing.Point(117, 20);
     this._teSn.Name     = "_teSn";
     this._teSn.Size     = new System.Drawing.Size(151, 21);
     this._teSn.TabIndex = 0;
     //
     // _teUserName
     //
     this._teUserName.CausesValidation = false;
     this._teUserName.ImeMode          = System.Windows.Forms.ImeMode.Off;
     this._teUserName.Location         = new System.Drawing.Point(117, 46);
     this._teUserName.Name             = "_teUserName";
     this._teUserName.Size             = new System.Drawing.Size(151, 21);
     this._teUserName.TabIndex         = 1;
     //
     // _tePass
     //
     this._tePass.ImeMode  = System.Windows.Forms.ImeMode.Off;
     this._tePass.Location = new System.Drawing.Point(117, 99);
     this._tePass.Name     = "_tePass";
     this._tePass.Properties.PasswordChar = '*';
     this._tePass.Size     = new System.Drawing.Size(151, 21);
     this._tePass.TabIndex = 3;
     //
     // _te2Pass
     //
     this._te2Pass.ImeMode  = System.Windows.Forms.ImeMode.Off;
     this._te2Pass.Location = new System.Drawing.Point(117, 126);
     this._te2Pass.Name     = "_te2Pass";
     this._te2Pass.Properties.PasswordChar = '*';
     this._te2Pass.Size     = new System.Drawing.Size(151, 21);
     this._te2Pass.TabIndex = 4;
     //
     // _loDepartment
     //
     this._loDepartment.CausesValidation = false;
     this._loDepartment.ImeMode          = System.Windows.Forms.ImeMode.Off;
     this._loDepartment.Location         = new System.Drawing.Point(117, 153);
     this._loDepartment.Name             = "_loDepartment";
     this._loDepartment.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", "Combo", null, true),
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", "New", null, true)
     });
     this._loDepartment.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name", "部门")
     });
     this._loDepartment.Properties.DisplayMember = "Name";
     this._loDepartment.Properties.NullText      = "选择所属部门";
     this._loDepartment.Properties.ValueMember   = "ID";
     this._loDepartment.Size              = new System.Drawing.Size(151, 21);
     this._loDepartment.TabIndex          = 5;
     this._loDepartment.ButtonClick      += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this._loDepartment_ButtonClick);
     this._loDepartment.EditValueChanged += new System.EventHandler(this._loDepartment_EditValueChanged);
     //
     // _loJobs
     //
     this._loJobs.ImeMode  = System.Windows.Forms.ImeMode.Off;
     this._loJobs.Location = new System.Drawing.Point(117, 182);
     this._loJobs.Name     = "_loJobs";
     this._loJobs.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this._loJobs.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("JobsName", "职位")
     });
     this._loJobs.Properties.DisplayMember = "JobsName";
     this._loJobs.Properties.NullText      = "请先选择所属部门";
     this._loJobs.Properties.ValueMember   = "ID";
     this._loJobs.Size     = new System.Drawing.Size(151, 21);
     this._loJobs.TabIndex = 6;
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(127, 0);
     this.labelControl8.Name     = "labelControl8";
     this.labelControl8.Size     = new System.Drawing.Size(120, 14);
     this.labelControl8.TabIndex = 17;
     this.labelControl8.Text     = "可以查询的仓库信息:";
     this.labelControl8.Visible  = false;
     //
     // gridControl1
     //
     this.gridControl1.Location = new System.Drawing.Point(292, 36);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.Size     = new System.Drawing.Size(18, 193);
     this.gridControl1.TabIndex = 10;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     this.gridControl1.Visible = false;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this._coT,
         this._coID,
         this._coName,
         this._coA
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // _coT
     //
     this._coT.Caption = "选择";
     repositoryItemCheckEdit1.AutoHeight = false;
     repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit1";
     this._coT.ColumnEdit   = repositoryItemCheckEdit1;
     this._coT.FieldName    = "T";
     this._coT.Name         = "_coT";
     this._coT.Visible      = true;
     this._coT.VisibleIndex = 0;
     this._coT.Width        = 50;
     //
     // _coID
     //
     this._coID.Caption   = "ID";
     this._coID.FieldName = "DepartmentID";
     this._coID.Name      = "_coID";
     //
     // _coName
     //
     this._coName.Caption   = "仓库名称";
     this._coName.FieldName = "DepartmentName";
     this._coName.Name      = "_coName";
     this._coName.OptionsColumn.AllowEdit = false;
     this._coName.Visible      = true;
     this._coName.VisibleIndex = 1;
     this._coName.Width        = 132;
     //
     // _coA
     //
     this._coA.Caption   = "A";
     this._coA.FieldName = "A";
     this._coA.Name      = "_coA";
     //
     // textEdit1
     //
     this.textEdit1.ImeMode  = System.Windows.Forms.ImeMode.Off;
     this.textEdit1.Location = new System.Drawing.Point(117, 73);
     this.textEdit1.Name     = "textEdit1";
     this.textEdit1.Properties.PasswordChar = '*';
     this.textEdit1.Size     = new System.Drawing.Size(151, 21);
     this.textEdit1.TabIndex = 2;
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(65, 77);
     this.labelControl9.Name     = "labelControl9";
     this.labelControl9.Size     = new System.Drawing.Size(36, 14);
     this.labelControl9.TabIndex = 19;
     this.labelControl9.Text     = "密码:";
     //
     // UserOneForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize          = new System.Drawing.Size(316, 282);
     this.Controls.Add(this.textEdit1);
     this.Controls.Add(this.labelControl9);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.labelControl8);
     this.Controls.Add(this._loJobs);
     this.Controls.Add(this._loDepartment);
     this.Controls.Add(this._te2Pass);
     this.Controls.Add(this._tePass);
     this.Controls.Add(this._teUserName);
     this.Controls.Add(this._teSn);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.labelControl6);
     this.Controls.Add(this.labelControl5);
     this.Controls.Add(this.labelControl4);
     this.Controls.Add(this.labelControl3);
     this.Controls.Add(this.labelControl2);
     this.Controls.Add(this.labelControl1);
     this.Name          = "UserOneForm";
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "用户";
     this.Load         += new System.EventHandler(this.UserOneForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this._teSn.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._teUserName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._tePass.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._te2Pass.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._loDepartment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this._loJobs.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.LSMS = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatNId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colyasref = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEndworkReson = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colfiledate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMashHala = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashataddres = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatMobil = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colWorkeEndDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colKideNumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicateId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitteId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colvisa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemPictureEditImg = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     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.LSMS;
     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.repositoryItemDateEditDate,
     this.repositoryItemPictureEditImg,
     this.repositoryItemCheckEdit1,
     this.repositoryItemDateEditDMY});
     this.gridControlData.Size = new System.Drawing.Size(734, 406);
     this.gridControlData.TabIndex = 1;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     //
     // LSMS
     //
     this.LSMS.ElementType = typeof(RetirementCenter.DataSources.Linq.vTBLMashat);
     this.LSMS.KeyExpression = "MMashatId";
     //
     // 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.colMMashatNId,
     this.colMMashatName,
     this.colsarfnumber,
     this.coldatein,
     this.colyasref,
     this.colRealName,
     this.colSubCommitte,
     this.colSyndicate,
     this.colEndworkReson,
     this.colfiledate,
     this.colMashHala,
     this.colMMashataddres,
     this.colMMashatMobil,
     this.colWorkeEndDate,
     this.colKideNumber,
     this.colSyndicateId,
     this.colSubCommitteId,
     this.colMMashatId,
     this.colvisa});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     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.ShowFooter = true;
     //
     // colMMashatNId
     //
     this.colMMashatNId.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatNId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatNId.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatNId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatNId.Caption = "الرقم القومي";
     this.colMMashatNId.FieldName = "MMashatNId";
     this.colMMashatNId.Name = "colMMashatNId";
     this.colMMashatNId.Visible = true;
     this.colMMashatNId.VisibleIndex = 2;
     this.colMMashatNId.Width = 80;
     //
     // 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 = 1;
     //
     // 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 = 3;
     //
     // 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 = 4;
     //
     // colyasref
     //
     this.colyasref.AppearanceCell.Options.UseTextOptions = true;
     this.colyasref.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colyasref.AppearanceHeader.Options.UseTextOptions = true;
     this.colyasref.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colyasref.Caption = "يصرف";
     this.colyasref.FieldName = "yasref";
     this.colyasref.Name = "colyasref";
     this.colyasref.Visible = true;
     this.colyasref.VisibleIndex = 5;
     this.colyasref.Width = 42;
     //
     // colRealName
     //
     this.colRealName.AppearanceCell.Options.UseTextOptions = true;
     this.colRealName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRealName.AppearanceHeader.Options.UseTextOptions = true;
     this.colRealName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colRealName.Caption = "مدخل البيان";
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 6;
     //
     // 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 = 7;
     //
     // 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 = 8;
     //
     // colEndworkReson
     //
     this.colEndworkReson.AppearanceCell.Options.UseTextOptions = true;
     this.colEndworkReson.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEndworkReson.AppearanceHeader.Options.UseTextOptions = true;
     this.colEndworkReson.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEndworkReson.Caption = "سبب نهاية العمل";
     this.colEndworkReson.FieldName = "EndworkReson";
     this.colEndworkReson.Name = "colEndworkReson";
     this.colEndworkReson.Visible = true;
     this.colEndworkReson.VisibleIndex = 9;
     this.colEndworkReson.Width = 98;
     //
     // colfiledate
     //
     this.colfiledate.AppearanceCell.Options.UseTextOptions = true;
     this.colfiledate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colfiledate.AppearanceHeader.Options.UseTextOptions = true;
     this.colfiledate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colfiledate.Caption = "تاريخ ورود الملف";
     this.colfiledate.FieldName = "filedate";
     this.colfiledate.Name = "colfiledate";
     this.colfiledate.Visible = true;
     this.colfiledate.VisibleIndex = 10;
     this.colfiledate.Width = 92;
     //
     // colMashHala
     //
     this.colMashHala.AppearanceCell.Options.UseTextOptions = true;
     this.colMashHala.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMashHala.AppearanceHeader.Options.UseTextOptions = true;
     this.colMashHala.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMashHala.Caption = "الحالة";
     this.colMashHala.FieldName = "MashHala";
     this.colMashHala.Name = "colMashHala";
     this.colMashHala.Visible = true;
     this.colMashHala.VisibleIndex = 11;
     //
     // colMMashataddres
     //
     this.colMMashataddres.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashataddres.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashataddres.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashataddres.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashataddres.Caption = "العنوان";
     this.colMMashataddres.FieldName = "MMashataddres";
     this.colMMashataddres.Name = "colMMashataddres";
     this.colMMashataddres.Visible = true;
     this.colMMashataddres.VisibleIndex = 12;
     //
     // colMMashatMobil
     //
     this.colMMashatMobil.AppearanceCell.Options.UseTextOptions = true;
     this.colMMashatMobil.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatMobil.AppearanceHeader.Options.UseTextOptions = true;
     this.colMMashatMobil.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colMMashatMobil.Caption = "الموبيل";
     this.colMMashatMobil.FieldName = "MMashatMobil";
     this.colMMashatMobil.Name = "colMMashatMobil";
     this.colMMashatMobil.Visible = true;
     this.colMMashatMobil.VisibleIndex = 13;
     //
     // colWorkeEndDate
     //
     this.colWorkeEndDate.AppearanceCell.Options.UseTextOptions = true;
     this.colWorkeEndDate.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWorkeEndDate.AppearanceHeader.Options.UseTextOptions = true;
     this.colWorkeEndDate.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colWorkeEndDate.Caption = "تاريخ نهاية العمل";
     this.colWorkeEndDate.FieldName = "WorkeEndDate";
     this.colWorkeEndDate.Name = "colWorkeEndDate";
     this.colWorkeEndDate.Visible = true;
     this.colWorkeEndDate.VisibleIndex = 14;
     this.colWorkeEndDate.Width = 94;
     //
     // colKideNumber
     //
     this.colKideNumber.AppearanceCell.Options.UseTextOptions = true;
     this.colKideNumber.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colKideNumber.AppearanceHeader.Options.UseTextOptions = true;
     this.colKideNumber.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colKideNumber.Caption = "رقم القيد";
     this.colKideNumber.FieldName = "KideNumber";
     this.colKideNumber.Name = "colKideNumber";
     this.colKideNumber.Visible = true;
     this.colKideNumber.VisibleIndex = 15;
     //
     // colSyndicateId
     //
     this.colSyndicateId.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicateId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateId.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicateId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicateId.Caption = "كود الفرعية";
     this.colSyndicateId.FieldName = "SyndicateId";
     this.colSyndicateId.Name = "colSyndicateId";
     this.colSyndicateId.Visible = true;
     this.colSyndicateId.VisibleIndex = 17;
     //
     // 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 = 18;
     //
     // 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 = 16;
     //
     // 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 = 0;
     //
     // repositoryItemDateEditDate
     //
     this.repositoryItemDateEditDate.AutoHeight = false;
     this.repositoryItemDateEditDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDate.DisplayFormat.FormatString = "u";
     this.repositoryItemDateEditDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDate.Mask.EditMask = "u";
     this.repositoryItemDateEditDate.Name = "repositoryItemDateEditDate";
     this.repositoryItemDateEditDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemPictureEditImg
     //
     this.repositoryItemPictureEditImg.Name = "repositoryItemPictureEditImg";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // 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 = 3;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrintExport.Location = new System.Drawing.Point(588, 12);
     this.btnPrintExport.Name = "btnPrintExport";
     this.btnPrintExport.Size = new System.Drawing.Size(134, 23);
     this.btnPrintExport.TabIndex = 0;
     this.btnPrintExport.Text = "طباعه و تصدير";
     this.btnPrintExport.Visible = false;
     this.btnPrintExport.Click += new System.EventHandler(this.btnPrintExport_Click);
     //
     // Qry04Frm
     //
     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 = "Qry04Frm";
     this.Text = " الاعضاء";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.QryTblAhteatyFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     DevExpress.XtraEditors.Controls.EditorButtonImageOptions editorButtonImageOptions1      = new DevExpress.XtraEditors.Controls.EditorButtonImageOptions();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject1  = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject2  = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject3  = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject4  = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.XtraEditors.Controls.EditorButtonImageOptions editorButtonImageOptions2      = new DevExpress.XtraEditors.Controls.EditorButtonImageOptions();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject5  = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject6  = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject7  = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject8  = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.XtraEditors.Controls.EditorButtonImageOptions editorButtonImageOptions3      = new DevExpress.XtraEditors.Controls.EditorButtonImageOptions();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject9  = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject10 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject11 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject12 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.XtraEditors.Controls.EditorButtonImageOptions editorButtonImageOptions4      = new DevExpress.XtraEditors.Controls.EditorButtonImageOptions();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject13 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject14 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject15 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject            serializableAppearanceObject16 = new DevExpress.Utils.SerializableAppearanceObject();
     this.pgProblemAnalysis = new DevExpress.XtraVerticalGrid.PropertyGridControl();
     this.riPeriod          = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.riFromProdmonth   = new Mineware.Systems.Global.CustomControls.MWRepositoryItemProdMonth();
     this.riToProdmonth     = new Mineware.Systems.Global.CustomControls.MWRepositoryItemProdMonth();
     this.riFromDate        = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.riToDate          = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.riSections        = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.riSectionSingle   = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.riSectionSelect   = new DevExpress.XtraEditors.Repository.RepositoryItemCheckedComboBoxEdit();
     this.riActivity        = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.riType            = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.riRun             = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.riDetails         = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.riDetailsGraph    = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.riTrendGraph      = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.riPerShaft        = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.riLostBlasts      = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.riGraphInfo       = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.riAvailable       = new DevExpress.XtraEditors.Repository.RepositoryItemCheckedComboBoxEdit();
     this.iPeriod           = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iFromProdmonth    = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iToProdmonth      = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iFromDate         = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iToDate           = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iSections         = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iSectionSingle    = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iSectionSelect    = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iActivity         = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iType             = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iRun          = new DevExpress.XtraVerticalGrid.Rows.CategoryRow();
     this.iDetails      = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iDetailsGraph = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iTrendGraph   = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iPerShaft     = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iLostBlasts   = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iGraphInfo    = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     this.iAvailable    = new DevExpress.XtraVerticalGrid.Rows.PGridEditorRow();
     ((System.ComponentModel.ISupportInitialize)(this.pgProblemAnalysis)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riPeriod)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riFromProdmonth)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riToProdmonth)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riFromDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riFromDate.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riToDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riToDate.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riSections)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riSectionSingle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riSectionSelect)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riActivity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riRun)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riDetailsGraph)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riTrendGraph)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riPerShaft)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riLostBlasts)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riGraphInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.riAvailable)).BeginInit();
     this.SuspendLayout();
     //
     // pgProblemAnalysis
     //
     this.pgProblemAnalysis.Cursor   = System.Windows.Forms.Cursors.Default;
     this.pgProblemAnalysis.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pgProblemAnalysis.Location = new System.Drawing.Point(0, 0);
     this.pgProblemAnalysis.Name     = "pgProblemAnalysis";
     this.pgProblemAnalysis.OptionsBehavior.PropertySort = DevExpress.XtraVerticalGrid.PropertySort.NoSort;
     this.pgProblemAnalysis.Padding     = new System.Windows.Forms.Padding(5);
     this.pgProblemAnalysis.RecordWidth = 136;
     this.pgProblemAnalysis.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.riPeriod,
         this.riFromProdmonth,
         this.riToProdmonth,
         this.riFromDate,
         this.riToDate,
         this.riSections,
         this.riSectionSingle,
         this.riSectionSelect,
         this.riActivity,
         this.riType,
         this.riRun,
         this.riDetails,
         this.riDetailsGraph,
         this.riTrendGraph,
         this.riPerShaft,
         this.riLostBlasts,
         this.riGraphInfo,
         this.riAvailable
     });
     this.pgProblemAnalysis.RowHeaderWidth = 64;
     this.pgProblemAnalysis.Rows.AddRange(new DevExpress.XtraVerticalGrid.Rows.BaseRow[] {
         this.iPeriod,
         this.iFromProdmonth,
         this.iToProdmonth,
         this.iFromDate,
         this.iToDate,
         this.iSections,
         this.iSectionSingle,
         this.iSectionSelect,
         this.iActivity,
         this.iType,
         this.iRun,
         this.iPerShaft,
         this.iLostBlasts,
         this.iGraphInfo,
         this.iAvailable
     });
     this.pgProblemAnalysis.Size     = new System.Drawing.Size(431, 485);
     this.pgProblemAnalysis.TabIndex = 4;
     this.pgProblemAnalysis.Click   += new System.EventHandler(this.pgProblemAnalysis_Click);
     //
     // riPeriod
     //
     this.riPeriod.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem("Prodmonth", "Production Month"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem("FromTo", "From To Date")
     });
     this.riPeriod.Name              = "riPeriod";
     this.riPeriod.EditValueChanged += new System.EventHandler(this.riPeriod_EditValueChanged);
     //
     // riFromProdmonth
     //
     this.riFromProdmonth.AutoHeight = false;
     this.riFromProdmonth.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.SpinUp, "1", -1, true, true, false, editorButtonImageOptions1, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, serializableAppearanceObject2, serializableAppearanceObject3, serializableAppearanceObject4, "", null, null, DevExpress.Utils.ToolTipAnchor.Default),
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.SpinDown, "2", -1, true, true, false, editorButtonImageOptions2, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, serializableAppearanceObject6, serializableAppearanceObject7, serializableAppearanceObject8, "", null, null, DevExpress.Utils.ToolTipAnchor.Default)
     });
     this.riFromProdmonth.Mask.EditMask               = "yyyyMM";
     this.riFromProdmonth.Mask.IgnoreMaskBlank        = false;
     this.riFromProdmonth.Mask.MaskType               = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.riFromProdmonth.Mask.UseMaskAsDisplayFormat = true;
     this.riFromProdmonth.Name = "riFromProdmonth";
     //
     // riToProdmonth
     //
     this.riToProdmonth.AutoHeight = false;
     this.riToProdmonth.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.SpinUp, "1", -1, true, true, false, editorButtonImageOptions3, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject9, serializableAppearanceObject10, serializableAppearanceObject11, serializableAppearanceObject12, "", null, null, DevExpress.Utils.ToolTipAnchor.Default),
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.SpinDown, "2", -1, true, true, false, editorButtonImageOptions4, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject13, serializableAppearanceObject14, serializableAppearanceObject15, serializableAppearanceObject16, "", null, null, DevExpress.Utils.ToolTipAnchor.Default)
     });
     this.riToProdmonth.Mask.EditMask               = "yyyyMM";
     this.riToProdmonth.Mask.IgnoreMaskBlank        = false;
     this.riToProdmonth.Mask.MaskType               = DevExpress.XtraEditors.Mask.MaskType.DateTime;
     this.riToProdmonth.Mask.UseMaskAsDisplayFormat = true;
     this.riToProdmonth.Name = "riToProdmonth";
     //
     // riFromDate
     //
     this.riFromDate.AutoHeight = false;
     this.riFromDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.riFromDate.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.riFromDate.Name = "riFromDate";
     //
     // riToDate
     //
     this.riToDate.AutoHeight = false;
     this.riToDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.riToDate.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.riToDate.Name = "riToDate";
     //
     // riSections
     //
     this.riSections.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem("Single", "Single Section"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem("Selected", "Selected Shaft Manager")
     });
     this.riSections.Name              = "riSections";
     this.riSections.EditValueChanged += new System.EventHandler(this.riSections_EditValueChanged);
     //
     // riSectionSingle
     //
     this.riSectionSingle.AutoHeight = false;
     this.riSectionSingle.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.riSectionSingle.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("sectionid", "SectionID"),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("NAME", "NAME")
     });
     this.riSectionSingle.Name     = "riSectionSingle";
     this.riSectionSingle.NullText = "";
     //
     // riSectionSelect
     //
     this.riSectionSelect.AutoHeight = false;
     this.riSectionSelect.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.riSectionSelect.Name = "riSectionSelect";
     //
     // riActivity
     //
     this.riActivity.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem("Stoping", "Stoping"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem("Development", "Development")
     });
     this.riActivity.Name = "riActivity";
     //
     // riType
     //
     this.riType.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem("ProbDesc", "Problem Description"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem("ProbNote", "Problem Notes")
     });
     this.riType.Name = "riType";
     //
     // riRun
     //
     this.riRun.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Details"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Details Graph"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem(null, "Trend Graph")
     });
     this.riRun.Name = "riRun";
     //
     // riDetails
     //
     this.riDetails.AutoHeight = false;
     this.riDetails.Caption    = "Check";
     this.riDetails.Name       = "riDetails";
     //
     // riDetailsGraph
     //
     this.riDetailsGraph.AutoHeight = false;
     this.riDetailsGraph.Caption    = "Check";
     this.riDetailsGraph.Name       = "riDetailsGraph";
     //
     // riTrendGraph
     //
     this.riTrendGraph.AutoHeight = false;
     this.riTrendGraph.Caption    = "Check";
     this.riTrendGraph.Name       = "riTrendGraph";
     //
     // riPerShaft
     //
     this.riPerShaft.AutoHeight = false;
     this.riPerShaft.Caption    = "Check";
     this.riPerShaft.Name       = "riPerShaft";
     //
     // riLostBlasts
     //
     this.riLostBlasts.AutoHeight = false;
     this.riLostBlasts.Caption    = "Check";
     this.riLostBlasts.Name       = "riLostBlasts";
     //
     // riGraphInfo
     //
     this.riGraphInfo.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
         new DevExpress.XtraEditors.Controls.RadioGroupItem("Potential", "Potential Var m²"),
         new DevExpress.XtraEditors.Controls.RadioGroupItem("NoProb", "No Problems")
     });
     this.riGraphInfo.Name = "riGraphInfo";
     //
     // riAvailable
     //
     this.riAvailable.AutoHeight = false;
     this.riAvailable.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.riAvailable.Name              = "riAvailable";
     this.riAvailable.EditValueChanged += new System.EventHandler(this.riAvailable_EditValueChanged);
     //
     // iPeriod
     //
     this.iPeriod.Height            = 40;
     this.iPeriod.IsChildRowsLoaded = true;
     this.iPeriod.Name = "iPeriod";
     this.iPeriod.Properties.Caption   = "Period";
     this.iPeriod.Properties.FieldName = "Period";
     this.iPeriod.Properties.RowEdit   = this.riPeriod;
     //
     // iFromProdmonth
     //
     this.iFromProdmonth.Height            = 20;
     this.iFromProdmonth.IsChildRowsLoaded = true;
     this.iFromProdmonth.Name = "iFromProdmonth";
     this.iFromProdmonth.Properties.Caption   = "From Production Month";
     this.iFromProdmonth.Properties.FieldName = "FromProdmonth";
     this.iFromProdmonth.Properties.RowEdit   = this.riFromProdmonth;
     //
     // iToProdmonth
     //
     this.iToProdmonth.Height            = 20;
     this.iToProdmonth.IsChildRowsLoaded = true;
     this.iToProdmonth.Name = "iToProdmonth";
     this.iToProdmonth.Properties.Caption   = "To Production Month";
     this.iToProdmonth.Properties.FieldName = "ToProdmonth";
     this.iToProdmonth.Properties.RowEdit   = this.riToProdmonth;
     //
     // iFromDate
     //
     this.iFromDate.Height            = 20;
     this.iFromDate.IsChildRowsLoaded = true;
     this.iFromDate.Name = "iFromDate";
     this.iFromDate.Properties.Caption   = "From Date";
     this.iFromDate.Properties.FieldName = "FromDate";
     this.iFromDate.Properties.RowEdit   = this.riFromDate;
     //
     // iToDate
     //
     this.iToDate.Height            = 20;
     this.iToDate.IsChildRowsLoaded = true;
     this.iToDate.Name = "iToDate";
     this.iToDate.Properties.Caption   = "To Date";
     this.iToDate.Properties.FieldName = "ToDate";
     this.iToDate.Properties.RowEdit   = this.riToDate;
     //
     // iSections
     //
     this.iSections.Height            = 40;
     this.iSections.IsChildRowsLoaded = true;
     this.iSections.Name = "iSections";
     this.iSections.Properties.Caption   = "Sections";
     this.iSections.Properties.FieldName = "Sections";
     this.iSections.Properties.RowEdit   = this.riSections;
     this.iSections.Visible = false;
     //
     // iSectionSingle
     //
     this.iSectionSingle.Height            = 20;
     this.iSectionSingle.IsChildRowsLoaded = true;
     this.iSectionSingle.Name = "iSectionSingle";
     this.iSectionSingle.Properties.Caption   = "Section";
     this.iSectionSingle.Properties.FieldName = "NAME";
     this.iSectionSingle.Properties.RowEdit   = this.riSectionSingle;
     //
     // iSectionSelect
     //
     this.iSectionSelect.Height            = 20;
     this.iSectionSelect.IsChildRowsLoaded = true;
     this.iSectionSelect.Name = "iSectionSelect";
     this.iSectionSelect.Properties.Caption   = "Section Select";
     this.iSectionSelect.Properties.FieldName = "SectionSelect";
     this.iSectionSelect.Properties.RowEdit   = this.riSectionSelect;
     this.iSectionSelect.Visible = false;
     //
     // iActivity
     //
     this.iActivity.Height            = 40;
     this.iActivity.IsChildRowsLoaded = true;
     this.iActivity.Name = "iActivity";
     this.iActivity.Properties.Caption   = "Activity";
     this.iActivity.Properties.FieldName = "Activity";
     this.iActivity.Properties.RowEdit   = this.riActivity;
     //
     // iType
     //
     this.iType.Height            = 40;
     this.iType.IsChildRowsLoaded = true;
     this.iType.Name = "iType";
     this.iType.Properties.Caption   = "Type";
     this.iType.Properties.FieldName = "Type";
     this.iType.Properties.RowEdit   = this.riType;
     this.iType.Visible = false;
     //
     // iRun
     //
     this.iRun.ChildRows.AddRange(new DevExpress.XtraVerticalGrid.Rows.BaseRow[] {
         this.iDetails,
         this.iDetailsGraph,
         this.iTrendGraph
     });
     this.iRun.Height             = 17;
     this.iRun.Name               = "iRun";
     this.iRun.Properties.Caption = "Run";
     this.iRun.Visible            = false;
     //
     // iDetails
     //
     this.iDetails.Height               = 20;
     this.iDetails.Name                 = "iDetails";
     this.iDetails.Properties.Caption   = "Details";
     this.iDetails.Properties.FieldName = "Details";
     this.iDetails.Properties.RowEdit   = this.riDetails;
     //
     // iDetailsGraph
     //
     this.iDetailsGraph.Height               = 20;
     this.iDetailsGraph.Name                 = "iDetailsGraph";
     this.iDetailsGraph.Properties.Caption   = "Details Graph";
     this.iDetailsGraph.Properties.FieldName = "DetailsGraph";
     this.iDetailsGraph.Properties.RowEdit   = this.riDetailsGraph;
     //
     // iTrendGraph
     //
     this.iTrendGraph.Height               = 20;
     this.iTrendGraph.Name                 = "iTrendGraph";
     this.iTrendGraph.Properties.Caption   = "Trend Graph";
     this.iTrendGraph.Properties.FieldName = "TrendGraph";
     this.iTrendGraph.Properties.RowEdit   = this.riTrendGraph;
     //
     // iPerShaft
     //
     this.iPerShaft.Height               = 20;
     this.iPerShaft.Name                 = "iPerShaft";
     this.iPerShaft.Properties.Caption   = "Per Shaft";
     this.iPerShaft.Properties.FieldName = "PerShaft";
     this.iPerShaft.Properties.RowEdit   = this.riPerShaft;
     this.iPerShaft.Visible              = false;
     //
     // iLostBlasts
     //
     this.iLostBlasts.Height               = 20;
     this.iLostBlasts.Name                 = "iLostBlasts";
     this.iLostBlasts.Properties.Caption   = "Lost Blasts";
     this.iLostBlasts.Properties.FieldName = "LostBlasts";
     this.iLostBlasts.Properties.RowEdit   = this.riLostBlasts;
     this.iLostBlasts.Visible              = false;
     //
     // iGraphInfo
     //
     this.iGraphInfo.Height            = 40;
     this.iGraphInfo.IsChildRowsLoaded = true;
     this.iGraphInfo.Name = "iGraphInfo";
     this.iGraphInfo.Properties.Caption   = "Graph Info";
     this.iGraphInfo.Properties.FieldName = "GraphInfo";
     this.iGraphInfo.Properties.RowEdit   = this.riGraphInfo;
     this.iGraphInfo.Visible = false;
     //
     // iAvailable
     //
     this.iAvailable.Height            = 20;
     this.iAvailable.IsChildRowsLoaded = true;
     this.iAvailable.Name = "iAvailable";
     this.iAvailable.Properties.Caption   = "Available";
     this.iAvailable.Properties.FieldName = "Available";
     this.iAvailable.Properties.RowEdit   = this.riAvailable;
     //
     // ucProblemAnalysisReport
     //
     this.Appearance.ForeColor            = System.Drawing.Color.White;
     this.Appearance.Options.UseForeColor = true;
     this.Controls.Add(this.pgProblemAnalysis);
     this.Name  = "ucProblemAnalysisReport";
     this.Size  = new System.Drawing.Size(431, 485);
     this.Load += new System.EventHandler(this.ucProblemAnalysisReport_Load);
     this.Controls.SetChildIndex(this.pgProblemAnalysis, 0);
     ((System.ComponentModel.ISupportInitialize)(this.pgProblemAnalysis)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riPeriod)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riFromProdmonth)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riToProdmonth)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riFromDate.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riFromDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riToDate.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riToDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riSections)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riSectionSingle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riSectionSelect)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riActivity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riRun)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riDetailsGraph)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riTrendGraph)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riPerShaft)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riLostBlasts)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riGraphInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.riAvailable)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraEditors.Repository.RepositoryItemTextEdit  repositoryItemTextEdit1  = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.macdTrendStrategyBindingSource = new System.Windows.Forms.BindingSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl)).BeginInit();
     this.tabControl.SuspendLayout();
     this.tpData.SuspendLayout();
     this.tpChartPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.macdTrendStrategyBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // tpChart
     //
     this.tabControl.SelectedTabPage = this.tpData;
     this.tabControl.Size            = new System.Drawing.Size(1367, 1004);
     //
     // tpData
     //
     this.tpData.Size = new System.Drawing.Size(1355, 949);
     //
     // gcData
     //
     repositoryItemTextEdit1.AutoHeight  = false;
     repositoryItemTextEdit1.Name        = "repositoryItemTextEdit3";
     repositoryItemTextEdit1.Padding     = new System.Windows.Forms.Padding(0, 3, 0, 3);
     repositoryItemCheckEdit1.AutoHeight = false;
     repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit5";
     repositoryItemCheckEdit2.AutoHeight = false;
     repositoryItemCheckEdit2.Name       = "repositoryItemCheckEdit6";
     this.gcData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         repositoryItemTextEdit1,
         repositoryItemCheckEdit1,
         repositoryItemCheckEdit2
     });
     this.gcData.Size = new System.Drawing.Size(1355, 949);
     //
     // chartControl
     //
     this.chartControl.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Left;
     this.chartControl.Legend.Name       = "Default Legend";
     this.chartControl.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
     //
     // MacdTrendStrategyDataForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1367, 1004);
     this.Name = "MacdTrendStrategyDataForm";
     this.Text = "TripleRsiStrategyDataForm";
     ((System.ComponentModel.ISupportInitialize)(this.tabControl)).EndInit();
     this.tabControl.ResumeLayout(false);
     this.tpData.ResumeLayout(false);
     this.tpChartPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.macdTrendStrategyBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gridctrTimeCard           = new DevExpress.XtraGrid.GridControl();
     this.gvTimeCard                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTimesheetDetailDate    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetDetailBranch  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetDetailTime    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetDetailRemarks = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTimesheetDetailManager = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl1             = new DevExpress.XtraEditors.PanelControl();
     this.sbtnClose                = new DevExpress.XtraEditors.SimpleButton();
     this.gridctrRoster            = new DevExpress.XtraGrid.GridControl();
     this.gvRoster                 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colRosterDate            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRosterStartTime       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRosterEndTime         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRosterBranch          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRosterRemark          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.pnTop                   = new DevExpress.XtraEditors.PanelControl();
     this.lblmnuTimesheet         = new System.Windows.Forms.Label();
     this.pnMiddle                = new DevExpress.XtraEditors.PanelControl();
     this.label1                  = new System.Windows.Forms.Label();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.btnOk                   = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrTimeCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTimeCard)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridctrRoster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvRoster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnTop)).BeginInit();
     this.pnTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnMiddle)).BeginInit();
     this.pnMiddle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // gridctrTimeCard
     //
     this.gridctrTimeCard.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)));
     //
     // gridctrTimeCard.EmbeddedNavigator
     //
     this.gridctrTimeCard.EmbeddedNavigator.Buttons.Append.Visible     = false;
     this.gridctrTimeCard.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridctrTimeCard.EmbeddedNavigator.Buttons.Edit.Visible       = false;
     this.gridctrTimeCard.EmbeddedNavigator.Buttons.EndEdit.Visible    = false;
     this.gridctrTimeCard.EmbeddedNavigator.Buttons.Remove.Visible     = false;
     this.gridctrTimeCard.EmbeddedNavigator.Name = "";
     this.gridctrTimeCard.Location          = new System.Drawing.Point(0, 28);
     this.gridctrTimeCard.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridctrTimeCard.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridctrTimeCard.LookAndFeel.UseWindowsXPTheme     = false;
     this.gridctrTimeCard.MainView             = this.gvTimeCard;
     this.gridctrTimeCard.Name                 = "gridctrTimeCard";
     this.gridctrTimeCard.Size                 = new System.Drawing.Size(740, 290);
     this.gridctrTimeCard.TabIndex             = 1;
     this.gridctrTimeCard.UseEmbeddedNavigator = true;
     this.gridctrTimeCard.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gvTimeCard
     });
     //
     // gvTimeCard
     //
     this.gvTimeCard.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colTimesheetDetailDate,
         this.colTimesheetDetailBranch,
         this.colTimesheetDetailTime,
         this.colTimesheetDetailRemarks,
         this.colTimesheetDetailManager
     });
     this.gvTimeCard.GridControl = this.gridctrTimeCard;
     this.gvTimeCard.Name        = "gvTimeCard";
     this.gvTimeCard.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvTimeCard.OptionsBehavior.Editable         = false;
     this.gvTimeCard.OptionsCustomization.AllowFilter = false;
     this.gvTimeCard.OptionsView.ShowGroupPanel       = false;
     this.gvTimeCard.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
         new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colTimesheetDetailDate, DevExpress.Data.ColumnSortOrder.Ascending)
     });
     //
     // colTimesheetDetailDate
     //
     this.colTimesheetDetailDate.Caption = "Date";
     this.colTimesheetDetailDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colTimesheetDetailDate.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetDetailDate.FieldName    = "dtDate";
     this.colTimesheetDetailDate.Name         = "colTimesheetDetailDate";
     this.colTimesheetDetailDate.Visible      = true;
     this.colTimesheetDetailDate.VisibleIndex = 0;
     this.colTimesheetDetailDate.Width        = 149;
     //
     // colTimesheetDetailBranch
     //
     this.colTimesheetDetailBranch.Caption      = "Branch";
     this.colTimesheetDetailBranch.FieldName    = "strBranchCode";
     this.colTimesheetDetailBranch.Name         = "colTimesheetDetailBranch";
     this.colTimesheetDetailBranch.Visible      = true;
     this.colTimesheetDetailBranch.VisibleIndex = 1;
     this.colTimesheetDetailBranch.Width        = 115;
     //
     // colTimesheetDetailTime
     //
     this.colTimesheetDetailTime.Caption = "Time";
     this.colTimesheetDetailTime.DisplayFormat.FormatString = "T";
     this.colTimesheetDetailTime.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.colTimesheetDetailTime.FieldName    = "dtTime";
     this.colTimesheetDetailTime.Name         = "colTimesheetDetailTime";
     this.colTimesheetDetailTime.Visible      = true;
     this.colTimesheetDetailTime.VisibleIndex = 2;
     this.colTimesheetDetailTime.Width        = 91;
     //
     // colTimesheetDetailRemarks
     //
     this.colTimesheetDetailRemarks.Caption      = "Remarks";
     this.colTimesheetDetailRemarks.FieldName    = "strRemarks";
     this.colTimesheetDetailRemarks.Name         = "colTimesheetDetailRemarks";
     this.colTimesheetDetailRemarks.Visible      = true;
     this.colTimesheetDetailRemarks.VisibleIndex = 3;
     this.colTimesheetDetailRemarks.Width        = 395;
     //
     // colTimesheetDetailManager
     //
     this.colTimesheetDetailManager.Caption      = "Manager";
     this.colTimesheetDetailManager.FieldName    = "strEmployeeName";
     this.colTimesheetDetailManager.Name         = "colTimesheetDetailManager";
     this.colTimesheetDetailManager.Visible      = true;
     this.colTimesheetDetailManager.VisibleIndex = 4;
     this.colTimesheetDetailManager.Width        = 217;
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.btnOk);
     this.panelControl1.Controls.Add(this.sbtnClose);
     this.panelControl1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 452);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(740, 30);
     this.panelControl1.TabIndex = 2;
     this.panelControl1.Text     = "panelControl1";
     //
     // sbtnClose
     //
     this.sbtnClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbtnClose.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.sbtnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnClose.Location     = new System.Drawing.Point(660, 4);
     this.sbtnClose.Name         = "sbtnClose";
     this.sbtnClose.TabIndex     = 0;
     this.sbtnClose.Text         = "&Close";
     this.sbtnClose.Click       += new System.EventHandler(this.sbtnClose_Click);
     //
     // gridctrRoster
     //
     this.gridctrRoster.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridctrRoster.EmbeddedNavigator
     //
     this.gridctrRoster.EmbeddedNavigator.Name = "";
     this.gridctrRoster.Location          = new System.Drawing.Point(0, 28);
     this.gridctrRoster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridctrRoster.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridctrRoster.LookAndFeel.UseWindowsXPTheme     = false;
     this.gridctrRoster.MainView = this.gvRoster;
     this.gridctrRoster.Name     = "gridctrRoster";
     this.gridctrRoster.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit2,
         this.repositoryItemTextEdit1
     });
     this.gridctrRoster.Size     = new System.Drawing.Size(740, 106);
     this.gridctrRoster.TabIndex = 3;
     this.gridctrRoster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gvRoster
     });
     //
     // gvRoster
     //
     this.gvRoster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colRosterDate,
         this.colRosterStartTime,
         this.colRosterEndTime,
         this.colRosterBranch,
         this.colRosterRemark
     });
     this.gvRoster.GridControl = this.gridctrRoster;
     this.gvRoster.Name        = "gvRoster";
     this.gvRoster.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvRoster.OptionsCustomization.AllowFilter       = false;
     this.gvRoster.OptionsView.ShowGroupPanel             = false;
     this.gvRoster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
         new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colRosterStartTime, DevExpress.Data.ColumnSortOrder.Ascending)
     });
     //
     // colRosterDate
     //
     this.colRosterDate.Caption = "Date";
     this.colRosterDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.colRosterDate.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.colRosterDate.FieldName = "dtDate";
     this.colRosterDate.Name      = "colRosterDate";
     this.colRosterDate.OptionsColumn.AllowEdit = false;
     this.colRosterDate.Visible      = true;
     this.colRosterDate.VisibleIndex = 0;
     this.colRosterDate.Width        = 128;
     //
     // colRosterStartTime
     //
     this.colRosterStartTime.Caption = "Start Time";
     this.colRosterStartTime.DisplayFormat.FormatString = "T";
     this.colRosterStartTime.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.colRosterStartTime.FieldName = "dtStartTime";
     this.colRosterStartTime.Name      = "colRosterStartTime";
     this.colRosterStartTime.OptionsColumn.AllowEdit = false;
     this.colRosterStartTime.Visible      = true;
     this.colRosterStartTime.VisibleIndex = 1;
     //
     // colRosterEndTime
     //
     this.colRosterEndTime.Caption = "End Time";
     this.colRosterEndTime.DisplayFormat.FormatString = "T";
     this.colRosterEndTime.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.colRosterEndTime.FieldName = "dtEndTime";
     this.colRosterEndTime.Name      = "colRosterEndTime";
     this.colRosterEndTime.OptionsColumn.AllowEdit = false;
     this.colRosterEndTime.Visible      = true;
     this.colRosterEndTime.VisibleIndex = 2;
     //
     // colRosterBranch
     //
     this.colRosterBranch.Caption   = "Branch";
     this.colRosterBranch.FieldName = "strBranchCode";
     this.colRosterBranch.Name      = "colRosterBranch";
     this.colRosterBranch.OptionsColumn.AllowEdit = false;
     this.colRosterBranch.Visible      = true;
     this.colRosterBranch.VisibleIndex = 3;
     //
     // colRosterRemark
     //
     this.colRosterRemark.Caption      = "Remark";
     this.colRosterRemark.FieldName    = "strRemarks";
     this.colRosterRemark.Name         = "colRosterRemark";
     this.colRosterRemark.Visible      = true;
     this.colRosterRemark.VisibleIndex = 4;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name       = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // pnTop
     //
     this.pnTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnTop.Controls.Add(this.lblmnuTimesheet);
     this.pnTop.Controls.Add(this.gridctrRoster);
     this.pnTop.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pnTop.Location = new System.Drawing.Point(0, 0);
     this.pnTop.Name     = "pnTop";
     this.pnTop.Size     = new System.Drawing.Size(740, 134);
     this.pnTop.TabIndex = 4;
     this.pnTop.Text     = "panelControl2";
     //
     // lblmnuTimesheet
     //
     this.lblmnuTimesheet.AutoSize = true;
     this.lblmnuTimesheet.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblmnuTimesheet.Location = new System.Drawing.Point(6, 6);
     this.lblmnuTimesheet.Name     = "lblmnuTimesheet";
     this.lblmnuTimesheet.Size     = new System.Drawing.Size(46, 18);
     this.lblmnuTimesheet.TabIndex = 4;
     this.lblmnuTimesheet.Text     = "Roster";
     //
     // pnMiddle
     //
     this.pnMiddle.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnMiddle.Controls.Add(this.label1);
     this.pnMiddle.Controls.Add(this.gridctrTimeCard);
     this.pnMiddle.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnMiddle.Location = new System.Drawing.Point(0, 134);
     this.pnMiddle.Name     = "pnMiddle";
     this.pnMiddle.Size     = new System.Drawing.Size(740, 318);
     this.pnMiddle.TabIndex = 5;
     this.pnMiddle.Text     = "panelControl2";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(4, 6);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(70, 18);
     this.label1.TabIndex = 5;
     this.label1.Text     = "Time Card";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name       = "repositoryItemTextEdit1";
     //
     // btnOk
     //
     this.btnOk.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOk.ButtonStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnOk.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnOk.Location     = new System.Drawing.Point(574, 4);
     this.btnOk.Name         = "btnOk";
     this.btnOk.TabIndex     = 1;
     this.btnOk.Text         = "Save";
     this.btnOk.Click       += new System.EventHandler(this.btnOk_Click);
     //
     // frmTimeSheetDetail
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.sbtnClose;
     this.ClientSize        = new System.Drawing.Size(740, 482);
     this.Controls.Add(this.pnMiddle);
     this.Controls.Add(this.pnTop);
     this.Controls.Add(this.panelControl1);
     this.Name          = "frmTimeSheetDetail";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Timesheet Detail";
     ((System.ComponentModel.ISupportInitialize)(this.gridctrTimeCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvTimeCard)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridctrRoster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvRoster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnTop)).EndInit();
     this.pnTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnMiddle)).EndInit();
     this.pnMiddle.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// 创建Grid列
        /// </summary>
        private void CreateGridColumn()
        {
            try
            {
                gvSearch.Columns.Clear();
                int            i         = 0;
                List <DataRow> LDataRows = dtDetail.Select("bIsShow=1").ToList();
                if (IsGroup)
                {
                    string sDisGroupField = "";
                    foreach (var item in GetGroupFields().Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries))
                    {
                        sDisGroupField += "'" + item + "',";
                    }
                    if (sDisGroupField != "")
                    {
                        sDisGroupField = "(" + sDisGroupField.Substring(0, sDisGroupField.Length - 1) + ")";
                        //将统计字段也加入Grid列中
                        LDataRows = dtDetail.Select("bIsShow=1 AND bIsGroup=1 AND sColumnFieldName IN " + sDisGroupField).Union(dtDetail.Select("bIsStat=1")).ToList();
                    }
                    else
                    {
                        Public.SystemInfo("必须至少选择一列分组字段!");
                        return;
                    }
                }
                foreach (DataRow dr in LDataRows)
                {
                    DevExpress.XtraGrid.Columns.GridColumn col = new DevExpress.XtraGrid.Columns.GridColumn();
                    col.FieldName    = dr["sColumnFieldName"].ToString();
                    col.Caption      = dr["sColumnCaption"].ToString();
                    col.Name         = "col" + dr["sColumnFieldName"].ToString() + i.ToString();
                    col.Width        = 100;
                    col.Visible      = true;
                    col.VisibleIndex = i;
                    if (dr["sColumnType"].ToString() == "K")
                    {
                        DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit colItem = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
                        colItem.AutoHeight = false;
                        colItem.Name       = "repositoryItem" + dr["sColumnFieldName"].ToString() + i.ToString();
                        colItem.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
                        col.ColumnEdit     = colItem;
                        gcSearch.RepositoryItems.Add(colItem);
                    }
                    //先计算有没有合计的,再计算计数
                    if (dr["bIsSum"].ToString() != "" && Convert.ToBoolean(dr["bIsSum"]))
                    {
                        col.SummaryItem.FieldName   = dr["sColumnFieldName"].ToString();
                        col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                        //显示分组脚注后也要合计
                        gvSearch.GroupSummary.Add(DevExpress.Data.SummaryItemType.Sum, dr["sColumnFieldName"].ToString(), col);
                    }
                    if (dr["bIsCount"].ToString() != "" && Convert.ToBoolean(dr["bIsCount"]))
                    {
                        col.SummaryItem.FieldName   = dr["sColumnFieldName"].ToString();
                        col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
                        gvSearch.GroupSummary.Add(DevExpress.Data.SummaryItemType.Count, dr["sColumnFieldName"].ToString(), col);
                    }
                    gvSearch.Columns.Add(col);
                    i++;
                }

                //添加图表值字段到ComboBox中
                if (IsChart)
                {
                    //数据值
                    cbxValueType.Properties.Items.Clear();
                    DataTable dtTemp = dtDetail.Clone();
                    foreach (DataRow item in dtDetail.Select("bChartValue"))
                    {
                        //DataRow dr = dtTemp.NewRow();
                        //dr["sColumnFieldName"] = item["sColumnFieldName"];
                        //dr["sColumnCaption"] = item["sColumnCaption"];
                        //dtTemp.Rows.Add(dr);
                        cbxValueType.Properties.Items.Add(new DevExpress.XtraEditors.Controls.ImageComboBoxItem(item["sColumnCaption"].ToString(), item["sColumnFieldName"]));
                    }
                    cbxValueType.SelectedIndex = 0;
                    //cbxValueType.DataSource = dtTemp;
                    //cbxValueType.ValueMember = "sColumnFieldName";
                    //cbxValueType.DisplayMember = "sColumnCaption";


                    //比较值
                    cbxField.Properties.Items.Clear();
                    DataTable dtField = dtDetail.Clone();
                    foreach (DataRow item in dtDetail.Select("bChartField"))
                    {
                        //DataRow dr = dtField.NewRow();
                        //dr["sColumnFieldName"] = item["sColumnFieldName"];
                        //dr["sColumnCaption"] = item["sColumnCaption"];
                        //dtField.Rows.Add(dr);
                        cbxField.Properties.Items.Add(new DevExpress.XtraEditors.Controls.ImageComboBoxItem(item["sColumnCaption"].ToString(), item["sColumnFieldName"]));
                    }
                    cbxField.SelectedIndex = 0;
                    //cbxField.DataSource = dtField;
                    //cbxField.ValueMember = "sColumnFieldName";
                    //cbxField.DisplayMember = "sColumnCaption";
                }
            }
            catch (Exception ex)
            {
                Public.SystemInfo("创建查询Grid列错误!" + ex.Message, true);
            }
        }
Exemple #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.pnlCtrlTop               = new DevExpress.XtraEditors.PanelControl();
     this.pnlCtrlCenter            = new DevExpress.XtraEditors.PanelControl();
     this.GridControl6             = new DevExpress.XtraGrid.GridControl();
     this.GridView7                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.pnlCtrlBottom            = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK           = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).BeginInit();
     this.pnlCtrlCenter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControl6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).BeginInit();
     this.pnlCtrlBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlCtrlTop
     //
     this.pnlCtrlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlTop.Dock        = System.Windows.Forms.DockStyle.Top;
     this.pnlCtrlTop.Location    = new System.Drawing.Point(0, 0);
     this.pnlCtrlTop.Name        = "pnlCtrlTop";
     this.pnlCtrlTop.Size        = new System.Drawing.Size(580, 26);
     this.pnlCtrlTop.TabIndex    = 0;
     this.pnlCtrlTop.Text        = "panelControl1";
     //
     // pnlCtrlCenter
     //
     this.pnlCtrlCenter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlCenter.Controls.Add(this.GridControl6);
     this.pnlCtrlCenter.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlCtrlCenter.Location = new System.Drawing.Point(0, 26);
     this.pnlCtrlCenter.Name     = "pnlCtrlCenter";
     this.pnlCtrlCenter.Size     = new System.Drawing.Size(580, 168);
     this.pnlCtrlCenter.TabIndex = 1;
     this.pnlCtrlCenter.Text     = "panelControl2";
     //
     // GridControl6
     //
     this.GridControl6.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // GridControl6.EmbeddedNavigator
     //
     this.GridControl6.EmbeddedNavigator.Name = "";
     this.GridControl6.Location          = new System.Drawing.Point(0, 0);
     this.GridControl6.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.GridControl6.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControl6.LookAndFeel.UseWindowsXPTheme     = false;
     this.GridControl6.MainView = this.GridView7;
     this.GridControl6.Name     = "GridControl6";
     this.GridControl6.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit1
     });
     this.GridControl6.Size     = new System.Drawing.Size(580, 168);
     this.GridControl6.TabIndex = 9;
     this.GridControl6.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.GridView7
     });
     //
     // GridView7
     //
     this.GridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumn4
     });
     this.GridView7.GridControl = this.GridControl6;
     this.GridView7.Name        = "GridView7";
     this.GridView7.OptionsView.ColumnAutoWidth = false;
     this.GridView7.OptionsView.ShowGroupPanel  = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption   = "Service Code";
     this.gridColumn1.FieldName = "strServiceCode";
     this.gridColumn1.Name      = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit       = false;
     this.gridColumn1.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn1.OptionsFilter.AllowFilter     = false;
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width        = 85;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption   = "Description";
     this.gridColumn2.FieldName = "strDescription";
     this.gridColumn2.Name      = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit       = false;
     this.gridColumn2.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn2.OptionsFilter.AllowFilter     = false;
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width        = 161;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption   = "Duration";
     this.gridColumn3.FieldName = "nDuration";
     this.gridColumn3.Name      = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit       = false;
     this.gridColumn3.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn3.OptionsFilter.AllowFilter     = false;
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width        = 141;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Price";
     this.gridColumn4.DisplayFormat.FormatString = "n2";
     this.gridColumn4.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn4.FieldName = "mBasePrice";
     this.gridColumn4.Name      = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit       = false;
     this.gridColumn4.OptionsFilter.AllowAutoFilter = false;
     this.gridColumn4.OptionsFilter.AllowFilter     = false;
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width        = 169;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // pnlCtrlBottom
     //
     this.pnlCtrlBottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonCancel);
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonOK);
     this.pnlCtrlBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.pnlCtrlBottom.Location = new System.Drawing.Point(0, 194);
     this.pnlCtrlBottom.Name     = "pnlCtrlBottom";
     this.pnlCtrlBottom.Size     = new System.Drawing.Size(580, 50);
     this.pnlCtrlBottom.TabIndex = 2;
     this.pnlCtrlBottom.Text     = "panelControl3";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(482, 14);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex     = 18;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(396, 14);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.TabIndex     = 17;
     this.simpleButtonOK.Text         = "OK";
     //
     // FormGetService
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(580, 244);
     this.Controls.Add(this.pnlCtrlCenter);
     this.Controls.Add(this.pnlCtrlTop);
     this.Controls.Add(this.pnlCtrlBottom);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormGetService";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Select a service to top up";
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).EndInit();
     this.pnlCtrlCenter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridControl6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).EndInit();
     this.pnlCtrlBottom.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.treeList1                = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1          = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.treeListColumn2          = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // treeList1
     //
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
         this.treeListColumn1,
         this.treeListColumn2
     });
     this.treeList1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.treeList1.Location = new System.Drawing.Point(0, 0);
     this.treeList1.Name     = "treeList1";
     this.treeList1.BeginUnboundLoad();
     this.treeList1.AppendNode(new object[] {
         false,
         "1"
     }, -1);
     this.treeList1.AppendNode(new object[] {
         false,
         "2"
     }, -1);
     this.treeList1.AppendNode(new object[] {
         false,
         "21"
     }, 1);
     this.treeList1.AppendNode(new object[] {
         false,
         "211"
     }, 2);
     this.treeList1.AppendNode(new object[] {
         false,
         "212"
     }, 2);
     this.treeList1.AppendNode(new object[] {
         false,
         "213"
     }, 2);
     this.treeList1.AppendNode(new object[] {
         false,
         "214"
     }, 2);
     this.treeList1.AppendNode(new object[] {
         false,
         "22"
     }, 1);
     this.treeList1.AppendNode(new object[] {
         false,
         "23"
     }, 1);
     this.treeList1.AppendNode(new object[] {
         false,
         "24"
     }, 1);
     this.treeList1.AppendNode(new object[] {
         false,
         "3"
     }, -1);
     this.treeList1.AppendNode(new object[] {
         false,
         "4"
     }, -1);
     this.treeList1.AppendNode(new object[] {
         false,
         "5"
     }, -1);
     this.treeList1.AppendNode(new object[] {
         false,
         "6"
     }, -1);
     this.treeList1.AppendNode(new object[] {
         false,
         "7"
     }, -1);
     this.treeList1.AppendNode(new object[] {
         false,
         "8"
     }, -1);
     this.treeList1.AppendNode(new object[] {
         false,
         "9"
     }, -1);
     this.treeList1.AppendNode(new object[] {
         false,
         "10"
     }, -1);
     this.treeList1.EndUnboundLoad();
     this.treeList1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit1
     });
     this.treeList1.Size     = new System.Drawing.Size(592, 400);
     this.treeList1.TabIndex = 0;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption      = "Column1";
     this.treeListColumn1.ColumnEdit   = this.repositoryItemCheckEdit1;
     this.treeListColumn1.FieldName    = "treeListColumn1";
     this.treeListColumn1.MinWidth     = 56;
     this.treeListColumn1.Name         = "treeListColumn1";
     this.treeListColumn1.Visible      = true;
     this.treeListColumn1.VisibleIndex = 0;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight      = false;
     this.repositoryItemCheckEdit1.Name            = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.CheckedChanged += new System.EventHandler(this.repositoryItemCheckEdit1_CheckedChanged);
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption      = "Column2";
     this.treeListColumn2.FieldName    = "treeListColumn2";
     this.treeListColumn2.Name         = "treeListColumn2";
     this.treeListColumn2.Visible      = true;
     this.treeListColumn2.VisibleIndex = 1;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(592, 527);
     this.Controls.Add(this.treeList1);
     this.Name = "Form1";
     this.Text = "How to change the field value of all child nodes of a certain node";
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #20
0
 private void InitializeComponent()
 {
     this.layoutControl1              = new DevExpress.XtraLayout.LayoutControl();
     this.ceConnectMajorClass         = new DevExpress.XtraEditors.CheckEdit();
     this.ceConnectFacility           = new DevExpress.XtraEditors.CheckEdit();
     this.ceSelectAll                 = new DevExpress.XtraEditors.CheckEdit();
     this.gridControl1                = new DevExpress.XtraGrid.GridControl();
     this.gridView1                   = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1                 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1    = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumnFeatureClassAlias = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnFeatureClassName  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnFacilityClass     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox1     = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnMajorClass        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemComboBox2     = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gridColumnFeatureClass      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn_quit            = new DevExpress.XtraEditors.SimpleButton();
     this.btn_ok              = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.emptySpaceItem1     = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem2  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem1  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6  = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ceConnectMajorClass.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceConnectFacility.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceSelectAll.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.ceConnectMajorClass);
     this.layoutControl1.Controls.Add(this.ceConnectFacility);
     this.layoutControl1.Controls.Add(this.ceSelectAll);
     this.layoutControl1.Controls.Add(this.gridControl1);
     this.layoutControl1.Controls.Add(this.btn_quit);
     this.layoutControl1.Controls.Add(this.btn_ok);
     this.layoutControl1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name     = "layoutControl1";
     this.layoutControl1.Root     = this.layoutControlGroup1;
     this.layoutControl1.Size     = new System.Drawing.Size(600, 392);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // ceConnectMajorClass
     //
     this.ceConnectMajorClass.EditValue          = true;
     this.ceConnectMajorClass.Location           = new System.Drawing.Point(191, 368);
     this.ceConnectMajorClass.Name               = "ceConnectMajorClass";
     this.ceConnectMajorClass.Properties.Caption = "关联大类";
     this.ceConnectMajorClass.Size               = new System.Drawing.Size(77, 19);
     this.ceConnectMajorClass.StyleController    = this.layoutControl1;
     this.ceConnectMajorClass.TabIndex           = 12;
     //
     // ceConnectFacility
     //
     this.ceConnectFacility.EditValue          = true;
     this.ceConnectFacility.Location           = new System.Drawing.Point(105, 368);
     this.ceConnectFacility.Name               = "ceConnectFacility";
     this.ceConnectFacility.Properties.Caption = "关联设施类";
     this.ceConnectFacility.Size               = new System.Drawing.Size(82, 19);
     this.ceConnectFacility.StyleController    = this.layoutControl1;
     this.ceConnectFacility.TabIndex           = 11;
     //
     // ceSelectAll
     //
     this.ceSelectAll.EditValue          = true;
     this.ceSelectAll.Location           = new System.Drawing.Point(2, 368);
     this.ceSelectAll.Name               = "ceSelectAll";
     this.ceSelectAll.Properties.Caption = "全选/取消全选";
     this.ceSelectAll.Size               = new System.Drawing.Size(99, 19);
     this.ceSelectAll.StyleController    = this.layoutControl1;
     this.ceSelectAll.TabIndex           = 8;
     this.ceSelectAll.CheckedChanged    += new System.EventHandler(this.ceSelectAll_CheckedChanged);
     //
     // gridControl1
     //
     this.gridControl1.Location = new System.Drawing.Point(2, 2);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemComboBox1,
         this.repositoryItemComboBox2,
         this.repositoryItemCheckEdit1
     });
     this.gridControl1.Size     = new System.Drawing.Size(596, 362);
     this.gridControl1.TabIndex = 7;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumnFeatureClassAlias,
         this.gridColumnFeatureClassName,
         this.gridColumnFacilityClass,
         this.gridColumnMajorClass,
         this.gridColumnFeatureClass
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption    = "  ";
     this.gridColumn1.ColumnEdit = this.repositoryItemCheckEdit1;
     this.gridColumn1.FieldName  = "CheckState";
     this.gridColumn1.Name       = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowSize   = false;
     this.gridColumn1.OptionsColumn.FixedWidth  = true;
     this.gridColumn1.OptionsFilter.AllowFilter = false;
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width        = 33;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight      = false;
     this.repositoryItemCheckEdit1.Caption         = "Check";
     this.repositoryItemCheckEdit1.Name            = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.CheckedChanged += new System.EventHandler(this.repositoryItemCheckEdit1_CheckedChanged);
     //
     // gridColumnFeatureClassAlias
     //
     this.gridColumnFeatureClassAlias.Caption   = "要素类别名";
     this.gridColumnFeatureClassAlias.FieldName = "FeatureClassAlias";
     this.gridColumnFeatureClassAlias.Name      = "gridColumnFeatureClassAlias";
     this.gridColumnFeatureClassAlias.OptionsColumn.AllowEdit = false;
     this.gridColumnFeatureClassAlias.Visible      = true;
     this.gridColumnFeatureClassAlias.VisibleIndex = 1;
     this.gridColumnFeatureClassAlias.Width        = 250;
     //
     // gridColumnFeatureClassName
     //
     this.gridColumnFeatureClassName.Caption   = "要素类名称";
     this.gridColumnFeatureClassName.FieldName = "FeatureClassName";
     this.gridColumnFeatureClassName.Name      = "gridColumnFeatureClassName";
     this.gridColumnFeatureClassName.OptionsColumn.AllowEdit = false;
     this.gridColumnFeatureClassName.Visible      = true;
     this.gridColumnFeatureClassName.VisibleIndex = 2;
     this.gridColumnFeatureClassName.Width        = 250;
     //
     // gridColumnFacilityClass
     //
     this.gridColumnFacilityClass.Caption      = "所属设施类";
     this.gridColumnFacilityClass.ColumnEdit   = this.repositoryItemComboBox1;
     this.gridColumnFacilityClass.FieldName    = "FacilityClass";
     this.gridColumnFacilityClass.Name         = "gridColumnFacilityClass";
     this.gridColumnFacilityClass.Visible      = true;
     this.gridColumnFacilityClass.VisibleIndex = 3;
     this.gridColumnFacilityClass.Width        = 250;
     //
     // 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.Name = "repositoryItemComboBox1";
     //
     // gridColumnMajorClass
     //
     this.gridColumnMajorClass.Caption      = "所属大类";
     this.gridColumnMajorClass.ColumnEdit   = this.repositoryItemComboBox2;
     this.gridColumnMajorClass.FieldName    = "MajorClass";
     this.gridColumnMajorClass.Name         = "gridColumnMajorClass";
     this.gridColumnMajorClass.Visible      = true;
     this.gridColumnMajorClass.VisibleIndex = 4;
     this.gridColumnMajorClass.Width        = 261;
     //
     // 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";
     //
     // gridColumnFeatureClass
     //
     this.gridColumnFeatureClass.Caption   = "要素类对象";
     this.gridColumnFeatureClass.FieldName = "FeatureClass";
     this.gridColumnFeatureClass.Name      = "gridColumnFeatureClass";
     //
     // btn_quit
     //
     this.btn_quit.DialogResult    = System.Windows.Forms.DialogResult.Cancel;
     this.btn_quit.Location        = new System.Drawing.Point(477, 368);
     this.btn_quit.Name            = "btn_quit";
     this.btn_quit.Size            = new System.Drawing.Size(121, 22);
     this.btn_quit.StyleController = this.layoutControl1;
     this.btn_quit.TabIndex        = 6;
     this.btn_quit.Text            = "退出";
     this.btn_quit.Click          += new System.EventHandler(this.btn_quit_Click);
     //
     // btn_ok
     //
     this.btn_ok.Location        = new System.Drawing.Point(353, 368);
     this.btn_ok.Name            = "btn_ok";
     this.btn_ok.Size            = new System.Drawing.Size(120, 22);
     this.btn_ok.StyleController = this.layoutControl1;
     this.btn_ok.TabIndex        = 5;
     this.btn_ok.Text            = "确定";
     this.btn_ok.Click          += new System.EventHandler(this.btn_ok_Click);
     //
     // 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.emptySpaceItem1,
         this.layoutControlItem2,
         this.layoutControlItem3,
         this.layoutControlItem1,
         this.layoutControlItem4,
         this.layoutControlItem5,
         this.layoutControlItem6
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size        = new System.Drawing.Size(600, 392);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack         = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(270, 366);
     this.emptySpaceItem1.Name     = "emptySpaceItem1";
     this.emptySpaceItem1.Size     = new System.Drawing.Size(81, 26);
     this.emptySpaceItem1.Text     = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btn_ok;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(351, 366);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(124, 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.btn_quit;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(475, 366);
     this.layoutControlItem3.Name     = "layoutControlItem3";
     this.layoutControlItem3.Size     = new System.Drawing.Size(125, 26);
     this.layoutControlItem3.Text     = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible           = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.gridControl1;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(600, 366);
     this.layoutControlItem1.Text     = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible           = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.ceSelectAll;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 366);
     this.layoutControlItem4.Name     = "layoutControlItem4";
     this.layoutControlItem4.Size     = new System.Drawing.Size(103, 26);
     this.layoutControlItem4.Text     = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible           = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.ceConnectFacility;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(103, 366);
     this.layoutControlItem5.Name     = "layoutControlItem5";
     this.layoutControlItem5.Size     = new System.Drawing.Size(86, 26);
     this.layoutControlItem5.Text     = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible           = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.ceConnectMajorClass;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(189, 366);
     this.layoutControlItem6.Name     = "layoutControlItem6";
     this.layoutControlItem6.Size     = new System.Drawing.Size(81, 26);
     this.layoutControlItem6.Text     = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible           = false;
     //
     // MainForm
     //
     this.AcceptButton = this.btn_ok;
     this.CancelButton = this.btn_quit;
     this.ClientSize   = new System.Drawing.Size(600, 392);
     this.Controls.Add(this.layoutControl1);
     this.MinimizeBox   = false;
     this.Name          = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "二维数据关联";
     this.Load         += new System.EventHandler(this.MainForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ceConnectMajorClass.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceConnectFacility.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ceSelectAll.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #21
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.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();
     ((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();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // lkpEdtPromotionCode
     //
     this.lkpEdtPromotionCode.EditValue = "";
     this.lkpEdtPromotionCode.Location  = new System.Drawing.Point(136, 10);
     this.lkpEdtPromotionCode.Name      = "lkpEdtPromotionCode";
     //
     // lkpEdtPromotionCode.Properties
     //
     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(274, 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, ((System.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;
     this.panelControl1.Text     = "panelControl1";
     //
     // 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;
     this.panelControl2.Text     = "panelControl2";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(360, 10);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex     = 12;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(276, 10);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     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;
     this.panelControl3.Text     = "panelControl3";
     //
     // 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, ((System.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
     });
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // 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, ((System.Byte)(134)));
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(436, 184);
     this.xtraTabPage1.Text = "Freebie-Package";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     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.gridControl1.Size     = new System.Drawing.Size(436, 184);
     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.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     //
     // 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;
     //
     // 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, ((System.Byte)(134)));
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(436, 184);
     this.xtraTabPage2.Text = "Freebie-Product";
     //
     // gridControl2
     //
     this.gridControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl2.EmbeddedNavigator
     //
     this.gridControl2.EmbeddedNavigator.Name = "";
     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.gridControl2.Size     = new System.Drawing.Size(436, 184);
     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.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name        = "gridView2";
     //
     // 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;
     //
     // 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();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1                         = new System.Windows.Forms.Label();
     this.gridControl1                   = new DevExpress.XtraGrid.GridControl();
     this.gridView1                      = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1                    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3                    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2                    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2       = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.simpleButton1                  = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2                  = new DevExpress.XtraEditors.SimpleButton();
     this.lkpEdtItemFreebiePromotionCode = new DevExpress.XtraEditors.LookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtItemFreebiePromotionCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(96, 16);
     this.label1.TabIndex = 48;
     this.label1.Text     = "Promotion Code";
     //
     // gridControl1
     //
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(104, 40);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit2
     });
     this.gridControl1.Size     = new System.Drawing.Size(456, 234);
     this.gridControl1.TabIndex = 56;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn2,
         this.gridColumn1,
         this.gridColumn3
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Item Code";
     this.gridColumn1.FieldName    = "strProductCode";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "Product Description";
     this.gridColumn3.FieldName    = "strDescription";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "OutStock";
     this.gridColumn2.ColumnEdit   = this.repositoryItemCheckEdit2;
     this.gridColumn2.FieldName    = "OutStock";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name       = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // simpleButton1
     //
     this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton1.Location    = new System.Drawing.Point(104, 280);
     this.simpleButton1.Name        = "simpleButton1";
     this.simpleButton1.TabIndex    = 57;
     this.simpleButton1.Text        = "Save";
     this.simpleButton1.Click      += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton2.Location    = new System.Drawing.Point(184, 280);
     this.simpleButton2.Name        = "simpleButton2";
     this.simpleButton2.TabIndex    = 58;
     this.simpleButton2.Text        = "Cancel";
     this.simpleButton2.Click      += new System.EventHandler(this.simpleButton2_Click);
     //
     // lkpEdtItemFreebiePromotionCode
     //
     this.lkpEdtItemFreebiePromotionCode.EditValue = "";
     this.lkpEdtItemFreebiePromotionCode.Location  = new System.Drawing.Point(104, 8);
     this.lkpEdtItemFreebiePromotionCode.Name      = "lkpEdtItemFreebiePromotionCode";
     //
     // lkpEdtItemFreebiePromotionCode.Properties
     //
     this.lkpEdtItemFreebiePromotionCode.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.lkpEdtItemFreebiePromotionCode.Properties.Appearance.Options.UseFont = true;
     this.lkpEdtItemFreebiePromotionCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkpEdtItemFreebiePromotionCode.Size              = new System.Drawing.Size(250, 25);
     this.lkpEdtItemFreebiePromotionCode.TabIndex          = 59;
     this.lkpEdtItemFreebiePromotionCode.EditValueChanged += new System.EventHandler(this.PromotionChanged);
     //
     // frmNewPromotionSelection
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(568, 311);
     this.Controls.Add(this.lkpEdtItemFreebiePromotionCode);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmNewPromotionSelection";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "New Promotion Selection";
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtItemFreebiePromotionCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoomCheckOut));
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlList = new DevExpress.XtraEditors.GroupControl();
     this.gridControlRoom = new DevExpress.XtraGrid.GridControl();
     this.gridViewRoom = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.check_out_room_code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_room_name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_building_label = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_floor_code = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_roomtype_label = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_room_status = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_tenant_name = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_tenant_surname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grid_check_out_leave_date = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_room_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_tenant_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_check_in_id = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_insurerate_rate_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_insurerate_rate_weekly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_insurerate_rate_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_deposite_rate_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_deposite_rate_weekly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.check_out_deposite_rate_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_unit_rate_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_unit_rate_weekly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_unit_rate_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_unit_rate_min = new DevExpress.XtraGrid.Columns.GridColumn();
     this.electricity_price_rate_min = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_unit_rate_monthly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_unit_rate_weekly = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_unit_rate_daily = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_unit_rate_min = new DevExpress.XtraGrid.Columns.GridColumn();
     this.water_price_rate_min = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl();
     this.groupExpense = new DevExpress.XtraEditors.GroupControl();
     this.groupControlItem = new DevExpress.XtraEditors.GroupControl();
     this.gridControlItem = new DevExpress.XtraGrid.GridControl();
     this.gridViewItemList = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumNo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInvoiceItemName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnAmount = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnAmountPerUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInvoiceItemPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnVat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnVating = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colInvoiceItemId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemNetPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.bttRemoveItem = new DevExpress.XtraEditors.SimpleButton();
     this.bttAddItem = new DevExpress.XtraEditors.SimpleButton();
     this.labelControlBaht3 = new DevExpress.XtraEditors.LabelControl();
     this.textEditRefund = new DevExpress.XtraEditors.TextEdit();
     this.labelControlRefund = new DevExpress.XtraEditors.LabelControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.gridControlGeneralCost = new DevExpress.XtraGrid.GridControl();
     this.gridViewGeneralCost = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnNetPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControlCalculate = new DevExpress.XtraEditors.PanelControl();
     this.dateEditInvoiceDueDate = new DevExpress.XtraEditors.DateEdit();
     this.panelControlPricePerDay = new DevExpress.XtraEditors.PanelControl();
     this.textEditChargePrice = new DevExpress.XtraEditors.TextEdit();
     this.labelControlPrice = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBaht2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlTipMSG = new DevExpress.XtraEditors.LabelControl();
     this.dateEditLeaveDate = new DevExpress.XtraEditors.DateEdit();
     this.bttCalculate = new DevExpress.XtraEditors.SimpleButton();
     this.labelControlRentalPrice = new DevExpress.XtraEditors.LabelControl();
     this.labelControlCheckOutDate = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditCharge = new DevExpress.XtraEditors.LookUpEdit();
     this.groupControlMeter = new DevExpress.XtraEditors.GroupControl();
     this.textEditPhonePrice = new DevExpress.XtraEditors.TextEdit();
     this.groupControlEndMeter = new DevExpress.XtraEditors.GroupControl();
     this.textEditWMeterPresent = new DevExpress.XtraEditors.TextEdit();
     this.textEditEMeterPresent = new DevExpress.XtraEditors.TextEdit();
     this.groupControlEndDate = new DevExpress.XtraEditors.GroupControl();
     this.dateEditWMeterPresentDate = new DevExpress.XtraEditors.DateEdit();
     this.dateEditEMeterPresentDate = new DevExpress.XtraEditors.DateEdit();
     this.dateEditPhoneStart = new DevExpress.XtraEditors.DateEdit();
     this.dateEditPhoneEnd = new DevExpress.XtraEditors.DateEdit();
     this.textEditWaterMeterId = new DevExpress.XtraEditors.TextEdit();
     this.textEditElectricMeterId = new DevExpress.XtraEditors.TextEdit();
     this.groupControlStartMeter = new DevExpress.XtraEditors.GroupControl();
     this.textEditWMeterPreviousUnit = new DevExpress.XtraEditors.TextEdit();
     this.textEditEMeterPreviousUnit = new DevExpress.XtraEditors.TextEdit();
     this.labelControlPhoneMeter = new DevExpress.XtraEditors.LabelControl();
     this.labelControlTelAmount = new DevExpress.XtraEditors.LabelControl();
     this.labelControlTelEnd = new DevExpress.XtraEditors.LabelControl();
     this.labelControlTelStart = new DevExpress.XtraEditors.LabelControl();
     this.labelControlWaterMeter = new DevExpress.XtraEditors.LabelControl();
     this.labelControlElectricMeter = new DevExpress.XtraEditors.LabelControl();
     this.groupControlStartDate = new DevExpress.XtraEditors.GroupControl();
     this.dateEditWMeterPreviousDate = new DevExpress.XtraEditors.DateEdit();
     this.dateEditEMeterPreviousDate = new DevExpress.XtraEditors.DateEdit();
     this.groupRoomInfo = new DevExpress.XtraEditors.GroupControl();
     this.textEditRoomPrice = new DevExpress.XtraEditors.TextEdit();
     this.labelControlBaht0 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlMonth2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBaht1 = new DevExpress.XtraEditors.LabelControl();
     this.textEditInsurerate = new DevExpress.XtraEditors.TextEdit();
     this.textEditAdvance = new DevExpress.XtraEditors.TextEdit();
     this.labelControlInsurance = new DevExpress.XtraEditors.LabelControl();
     this.labelControlDeposit = new DevExpress.XtraEditors.LabelControl();
     this.labelControlMonthlyRate = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditFloorId = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControlFloor = new DevExpress.XtraEditors.LabelControl();
     this.textEditRoomLabel = new DevExpress.XtraEditors.TextEdit();
     this.labelControlRoomName = new DevExpress.XtraEditors.LabelControl();
     this.lookUpEditRoomTypeId = new DevExpress.XtraEditors.LookUpEdit();
     this.lookUpEditBuildingId = new DevExpress.XtraEditors.LookUpEdit();
     this.labelControlRoomType = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBuilding = new DevExpress.XtraEditors.LabelControl();
     this.groupControlRental = new DevExpress.XtraEditors.GroupControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
     this.textEditTenantName = new DevExpress.XtraEditors.TextEdit();
     this.labelControlSurname = new DevExpress.XtraEditors.LabelControl();
     this.labelControlName = new DevExpress.XtraEditors.LabelControl();
     this.textEditTenantSurname = new DevExpress.XtraEditors.TextEdit();
     this.labelControlTitle = new DevExpress.XtraEditors.LabelControl();
     this.textEditPrefix = new DevExpress.XtraEditors.TextEdit();
     this.groupControlCheckOut = new DevExpress.XtraEditors.GroupControl();
     this.lookUpEditContractType = new DevExpress.XtraEditors.LookUpEdit();
     this.dateEditCheckInDate = new DevExpress.XtraEditors.DateEdit();
     this.labelControlMonth = new DevExpress.XtraEditors.LabelControl();
     this.labelControlMinimum = new DevExpress.XtraEditors.LabelControl();
     this.labelControlRentType = new DevExpress.XtraEditors.LabelControl();
     this.labelControlContractDate = new DevExpress.XtraEditors.LabelControl();
     this.labelControlContractNo = new DevExpress.XtraEditors.LabelControl();
     this.textEditMinimum = new DevExpress.XtraEditors.TextEdit();
     this.textEditContractNo = new DevExpress.XtraEditors.TextEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.bttPrintInvoice = new DevExpress.XtraEditors.SimpleButton();
     this.bttPrintInsurance = new DevExpress.XtraEditors.SimpleButton();
     this.textEditRoomStatus = new DevExpress.XtraEditors.TextEdit();
     this.textEditCheckInId = new DevExpress.XtraEditors.TextEdit();
     this.textEditTenantId = new DevExpress.XtraEditors.TextEdit();
     this.textEditRoomId = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.textEditRoomCode = new DevExpress.XtraEditors.TextEdit();
     this.bttEdit = new DevExpress.XtraEditors.SimpleButton();
     this.bttCancel = new DevExpress.XtraEditors.SimpleButton();
     this.bttSave = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlList)).BeginInit();
     this.groupControlList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlRoom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     this.xtraScrollableControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupExpense)).BeginInit();
     this.groupExpense.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlItem)).BeginInit();
     this.groupControlItem.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlItem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewItemList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRefund.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGeneralCost)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGeneralCost)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlCalculate)).BeginInit();
     this.panelControlCalculate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditInvoiceDueDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditInvoiceDueDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPricePerDay)).BeginInit();
     this.panelControlPricePerDay.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditChargePrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLeaveDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLeaveDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditCharge.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlMeter)).BeginInit();
     this.groupControlMeter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPhonePrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEndMeter)).BeginInit();
     this.groupControlEndMeter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditWMeterPresent.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditEMeterPresent.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEndDate)).BeginInit();
     this.groupControlEndDate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPresentDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPresentDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPresentDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPresentDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneStart.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneStart.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneEnd.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneEnd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditWaterMeterId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditElectricMeterId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlStartMeter)).BeginInit();
     this.groupControlStartMeter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditWMeterPreviousUnit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditEMeterPreviousUnit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlStartDate)).BeginInit();
     this.groupControlStartDate.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPreviousDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPreviousDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPreviousDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPreviousDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupRoomInfo)).BeginInit();
     this.groupRoomInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomPrice.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditInsurerate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditAdvance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditFloorId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomLabel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditRoomTypeId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditBuildingId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlRental)).BeginInit();
     this.groupControlRental.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantSurname.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPrefix.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlCheckOut)).BeginInit();
     this.groupControlCheckOut.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditContractType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditCheckInDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditCheckInDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditMinimum.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditContractNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomStatus.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditCheckInId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomId.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Location = new System.Drawing.Point(7, 7);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.groupControlList);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl3);
     this.splitContainerControl2.Panel2.Controls.Add(this.panelControl1);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(1296, 634);
     this.splitContainerControl2.SplitterPosition = 667;
     this.splitContainerControl2.TabIndex = 17;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // groupControlList
     //
     this.groupControlList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlList.AppearanceCaption.Options.UseFont = true;
     this.groupControlList.Controls.Add(this.gridControlRoom);
     this.groupControlList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControlList.Location = new System.Drawing.Point(0, 0);
     this.groupControlList.Name = "groupControlList";
     this.groupControlList.Size = new System.Drawing.Size(667, 634);
     this.groupControlList.TabIndex = 0;
     this.groupControlList.Text = "รายการห้องที่มี่ผู้เช่าและแจ้งย้ายออก";
     //
     // gridControlRoom
     //
     this.gridControlRoom.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlRoom.Location = new System.Drawing.Point(2, 22);
     this.gridControlRoom.MainView = this.gridViewRoom;
     this.gridControlRoom.Name = "gridControlRoom";
     this.gridControlRoom.Size = new System.Drawing.Size(663, 610);
     this.gridControlRoom.TabIndex = 1;
     this.gridControlRoom.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewRoom});
     //
     // gridViewRoom
     //
     this.gridViewRoom.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.check_out_room_code,
     this.grid_check_out_room_name,
     this.grid_check_out_building_label,
     this.grid_check_out_floor_code,
     this.grid_check_out_roomtype_label,
     this.grid_check_out_room_status,
     this.grid_check_out_tenant_name,
     this.grid_check_out_tenant_surname,
     this.grid_check_out_leave_date,
     this.check_out_room_id,
     this.check_out_tenant_id,
     this.check_out_check_in_id,
     this.check_out_insurerate_rate_monthly,
     this.check_out_insurerate_rate_weekly,
     this.check_out_insurerate_rate_daily,
     this.check_out_deposite_rate_monthly,
     this.check_out_deposite_rate_weekly,
     this.check_out_deposite_rate_daily,
     this.electricity_unit_rate_monthly,
     this.electricity_unit_rate_weekly,
     this.electricity_unit_rate_daily,
     this.electricity_unit_rate_min,
     this.electricity_price_rate_min,
     this.water_unit_rate_monthly,
     this.water_unit_rate_weekly,
     this.water_unit_rate_daily,
     this.water_unit_rate_min,
     this.water_price_rate_min});
     this.gridViewRoom.GridControl = this.gridControlRoom;
     this.gridViewRoom.Name = "gridViewRoom";
     this.gridViewRoom.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridViewRoom.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridViewRoom.OptionsFind.AlwaysVisible = true;
     this.gridViewRoom.OptionsFind.ShowCloseButton = false;
     this.gridViewRoom.OptionsView.ShowGroupPanel = false;
     //
     // check_out_room_code
     //
     this.check_out_room_code.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.check_out_room_code.AppearanceHeader.Options.UseFont = true;
     this.check_out_room_code.Caption = "รหัสห้อง";
     this.check_out_room_code.FieldName = "coderef";
     this.check_out_room_code.Name = "check_out_room_code";
     this.check_out_room_code.OptionsColumn.AllowEdit = false;
     this.check_out_room_code.OptionsColumn.AllowFocus = false;
     this.check_out_room_code.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.check_out_room_code.OptionsColumn.AllowMove = false;
     //
     // grid_check_out_room_name
     //
     this.grid_check_out_room_name.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_room_name.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_room_name.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_room_name.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_room_name.Caption = "ชื่อห้อง";
     this.grid_check_out_room_name.FieldName = "room_label";
     this.grid_check_out_room_name.Name = "grid_check_out_room_name";
     this.grid_check_out_room_name.OptionsColumn.AllowEdit = false;
     this.grid_check_out_room_name.OptionsColumn.AllowFocus = false;
     this.grid_check_out_room_name.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_room_name.OptionsColumn.AllowMove = false;
     this.grid_check_out_room_name.Visible = true;
     this.grid_check_out_room_name.VisibleIndex = 0;
     this.grid_check_out_room_name.Width = 70;
     //
     // grid_check_out_building_label
     //
     this.grid_check_out_building_label.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_building_label.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_building_label.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_building_label.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_building_label.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_building_label.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_building_label.Caption = "อาคาร";
     this.grid_check_out_building_label.FieldName = "building_label";
     this.grid_check_out_building_label.Name = "grid_check_out_building_label";
     this.grid_check_out_building_label.OptionsColumn.AllowEdit = false;
     this.grid_check_out_building_label.OptionsColumn.AllowFocus = false;
     this.grid_check_out_building_label.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_building_label.OptionsColumn.AllowMove = false;
     this.grid_check_out_building_label.Visible = true;
     this.grid_check_out_building_label.VisibleIndex = 1;
     this.grid_check_out_building_label.Width = 50;
     //
     // grid_check_out_floor_code
     //
     this.grid_check_out_floor_code.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_floor_code.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_floor_code.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_floor_code.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_floor_code.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_floor_code.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_floor_code.Caption = "ชั้น";
     this.grid_check_out_floor_code.FieldName = "floor_code";
     this.grid_check_out_floor_code.Name = "grid_check_out_floor_code";
     this.grid_check_out_floor_code.OptionsColumn.AllowEdit = false;
     this.grid_check_out_floor_code.OptionsColumn.AllowFocus = false;
     this.grid_check_out_floor_code.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_floor_code.OptionsColumn.AllowMove = false;
     this.grid_check_out_floor_code.Visible = true;
     this.grid_check_out_floor_code.VisibleIndex = 2;
     this.grid_check_out_floor_code.Width = 48;
     //
     // grid_check_out_roomtype_label
     //
     this.grid_check_out_roomtype_label.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_roomtype_label.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_roomtype_label.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_roomtype_label.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_roomtype_label.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_roomtype_label.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_roomtype_label.Caption = "ประเภท";
     this.grid_check_out_roomtype_label.FieldName = "roomtype_label";
     this.grid_check_out_roomtype_label.Name = "grid_check_out_roomtype_label";
     this.grid_check_out_roomtype_label.OptionsColumn.AllowEdit = false;
     this.grid_check_out_roomtype_label.OptionsColumn.AllowFocus = false;
     this.grid_check_out_roomtype_label.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_roomtype_label.OptionsColumn.AllowMove = false;
     this.grid_check_out_roomtype_label.Visible = true;
     this.grid_check_out_roomtype_label.VisibleIndex = 3;
     this.grid_check_out_roomtype_label.Width = 60;
     //
     // grid_check_out_room_status
     //
     this.grid_check_out_room_status.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_room_status.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_room_status.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_room_status.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_room_status.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_room_status.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_room_status.Caption = "สถานะห้อง";
     this.grid_check_out_room_status.FieldName = "room_status_label";
     this.grid_check_out_room_status.Name = "grid_check_out_room_status";
     this.grid_check_out_room_status.OptionsColumn.AllowEdit = false;
     this.grid_check_out_room_status.OptionsColumn.AllowFocus = false;
     this.grid_check_out_room_status.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_room_status.OptionsColumn.AllowMove = false;
     this.grid_check_out_room_status.Visible = true;
     this.grid_check_out_room_status.VisibleIndex = 4;
     this.grid_check_out_room_status.Width = 64;
     //
     // grid_check_out_tenant_name
     //
     this.grid_check_out_tenant_name.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_tenant_name.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_tenant_name.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_tenant_name.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_tenant_name.Caption = "ชื่อ";
     this.grid_check_out_tenant_name.FieldName = "tenant_name";
     this.grid_check_out_tenant_name.Name = "grid_check_out_tenant_name";
     this.grid_check_out_tenant_name.OptionsColumn.AllowEdit = false;
     this.grid_check_out_tenant_name.OptionsColumn.AllowFocus = false;
     this.grid_check_out_tenant_name.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_tenant_name.OptionsColumn.AllowMove = false;
     this.grid_check_out_tenant_name.Visible = true;
     this.grid_check_out_tenant_name.VisibleIndex = 5;
     this.grid_check_out_tenant_name.Width = 82;
     //
     // grid_check_out_tenant_surname
     //
     this.grid_check_out_tenant_surname.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_tenant_surname.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_tenant_surname.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_tenant_surname.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_tenant_surname.Caption = "นามสกุล";
     this.grid_check_out_tenant_surname.FieldName = "tenant_surname";
     this.grid_check_out_tenant_surname.Name = "grid_check_out_tenant_surname";
     this.grid_check_out_tenant_surname.OptionsColumn.AllowEdit = false;
     this.grid_check_out_tenant_surname.OptionsColumn.AllowFocus = false;
     this.grid_check_out_tenant_surname.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_tenant_surname.OptionsColumn.AllowMove = false;
     this.grid_check_out_tenant_surname.Visible = true;
     this.grid_check_out_tenant_surname.VisibleIndex = 6;
     this.grid_check_out_tenant_surname.Width = 82;
     //
     // grid_check_out_leave_date
     //
     this.grid_check_out_leave_date.AppearanceCell.Options.UseTextOptions = true;
     this.grid_check_out_leave_date.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_leave_date.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.grid_check_out_leave_date.AppearanceHeader.Options.UseFont = true;
     this.grid_check_out_leave_date.AppearanceHeader.Options.UseTextOptions = true;
     this.grid_check_out_leave_date.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.grid_check_out_leave_date.Caption = "วันที่ต้องการย้ายออก";
     this.grid_check_out_leave_date.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.grid_check_out_leave_date.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.grid_check_out_leave_date.FieldName = "leave_date";
     this.grid_check_out_leave_date.Name = "grid_check_out_leave_date";
     this.grid_check_out_leave_date.OptionsColumn.AllowEdit = false;
     this.grid_check_out_leave_date.OptionsColumn.AllowFocus = false;
     this.grid_check_out_leave_date.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.grid_check_out_leave_date.OptionsColumn.AllowMove = false;
     this.grid_check_out_leave_date.Visible = true;
     this.grid_check_out_leave_date.VisibleIndex = 7;
     this.grid_check_out_leave_date.Width = 111;
     //
     // check_out_room_id
     //
     this.check_out_room_id.Caption = "room_id";
     this.check_out_room_id.FieldName = "room_id";
     this.check_out_room_id.Name = "check_out_room_id";
     //
     // check_out_tenant_id
     //
     this.check_out_tenant_id.Caption = "tenant_id";
     this.check_out_tenant_id.FieldName = "tenant_id";
     this.check_out_tenant_id.Name = "check_out_tenant_id";
     //
     // check_out_check_in_id
     //
     this.check_out_check_in_id.Caption = "check_in_id";
     this.check_out_check_in_id.FieldName = "check_in_id";
     this.check_out_check_in_id.Name = "check_out_check_in_id";
     //
     // check_out_insurerate_rate_monthly
     //
     this.check_out_insurerate_rate_monthly.Caption = "insurerate_rate_monthly";
     this.check_out_insurerate_rate_monthly.FieldName = "insurerate_rate_monthly";
     this.check_out_insurerate_rate_monthly.Name = "check_out_insurerate_rate_monthly";
     //
     // check_out_insurerate_rate_weekly
     //
     this.check_out_insurerate_rate_weekly.Caption = "check_out_insurerate_rate_weekly";
     this.check_out_insurerate_rate_weekly.FieldName = "insurerate_rate_weekly";
     this.check_out_insurerate_rate_weekly.Name = "check_out_insurerate_rate_weekly";
     //
     // check_out_insurerate_rate_daily
     //
     this.check_out_insurerate_rate_daily.Caption = "check_out_insurerate_rate_daily";
     this.check_out_insurerate_rate_daily.FieldName = "insurerate_rate_daily";
     this.check_out_insurerate_rate_daily.Name = "check_out_insurerate_rate_daily";
     //
     // check_out_deposite_rate_monthly
     //
     this.check_out_deposite_rate_monthly.Caption = "check_out_deposite_rate_monthly";
     this.check_out_deposite_rate_monthly.FieldName = "deposite_rate_monthly";
     this.check_out_deposite_rate_monthly.Name = "check_out_deposite_rate_monthly";
     //
     // check_out_deposite_rate_weekly
     //
     this.check_out_deposite_rate_weekly.Caption = "check_out_deposite_rate_weekly";
     this.check_out_deposite_rate_weekly.FieldName = "deposite_rate_weekly";
     this.check_out_deposite_rate_weekly.Name = "check_out_deposite_rate_weekly";
     //
     // check_out_deposite_rate_daily
     //
     this.check_out_deposite_rate_daily.Caption = "check_out_deposite_rate_daily";
     this.check_out_deposite_rate_daily.FieldName = "deposite_rate_daily";
     this.check_out_deposite_rate_daily.Name = "check_out_deposite_rate_daily";
     //
     // electricity_unit_rate_monthly
     //
     this.electricity_unit_rate_monthly.Caption = "electricity_unit_rate_monthly";
     this.electricity_unit_rate_monthly.FieldName = "electricity_unit_rate_monthly";
     this.electricity_unit_rate_monthly.Name = "electricity_unit_rate_monthly";
     //
     // electricity_unit_rate_weekly
     //
     this.electricity_unit_rate_weekly.Caption = "electricity_unit_rate_weekly";
     this.electricity_unit_rate_weekly.FieldName = "electricity_unit_rate_weekly";
     this.electricity_unit_rate_weekly.Name = "electricity_unit_rate_weekly";
     //
     // electricity_unit_rate_daily
     //
     this.electricity_unit_rate_daily.Caption = "electricity_unit_rate_daily";
     this.electricity_unit_rate_daily.FieldName = "electricity_unit_rate_daily";
     this.electricity_unit_rate_daily.Name = "electricity_unit_rate_daily";
     //
     // electricity_unit_rate_min
     //
     this.electricity_unit_rate_min.Caption = "electricity_unit_rate_min";
     this.electricity_unit_rate_min.FieldName = "electricity_unit_rate_min";
     this.electricity_unit_rate_min.Name = "electricity_unit_rate_min";
     //
     // electricity_price_rate_min
     //
     this.electricity_price_rate_min.Caption = "electricity_price_rate_min";
     this.electricity_price_rate_min.FieldName = "electricity_price_rate_min";
     this.electricity_price_rate_min.Name = "electricity_price_rate_min";
     //
     // water_unit_rate_monthly
     //
     this.water_unit_rate_monthly.Caption = "water_unit_rate_monthly";
     this.water_unit_rate_monthly.FieldName = "water_unit_rate_monthly";
     this.water_unit_rate_monthly.Name = "water_unit_rate_monthly";
     //
     // water_unit_rate_weekly
     //
     this.water_unit_rate_weekly.Caption = "water_unit_rate_weekly";
     this.water_unit_rate_weekly.FieldName = "water_unit_rate_weekly";
     this.water_unit_rate_weekly.Name = "water_unit_rate_weekly";
     //
     // water_unit_rate_daily
     //
     this.water_unit_rate_daily.Caption = "water_unit_rate_daily";
     this.water_unit_rate_daily.FieldName = "water_unit_rate_daily";
     this.water_unit_rate_daily.Name = "water_unit_rate_daily";
     //
     // water_unit_rate_min
     //
     this.water_unit_rate_min.Caption = "water_unit_rate_min";
     this.water_unit_rate_min.FieldName = "water_unit_rate_min";
     this.water_unit_rate_min.Name = "water_unit_rate_min";
     //
     // water_price_rate_min
     //
     this.water_price_rate_min.Caption = "water_price_rate_min";
     this.water_price_rate_min.FieldName = "water_price_rate_min";
     this.water_price_rate_min.Name = "water_price_rate_min";
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.xtraScrollableControl1);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(0, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(624, 568);
     this.panelControl3.TabIndex = 12;
     //
     // xtraScrollableControl1
     //
     this.xtraScrollableControl1.Controls.Add(this.groupExpense);
     this.xtraScrollableControl1.Controls.Add(this.panelControlCalculate);
     this.xtraScrollableControl1.Controls.Add(this.groupControlMeter);
     this.xtraScrollableControl1.Controls.Add(this.groupRoomInfo);
     this.xtraScrollableControl1.Controls.Add(this.groupControlRental);
     this.xtraScrollableControl1.Controls.Add(this.groupControlCheckOut);
     this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraScrollableControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraScrollableControl1.Name = "xtraScrollableControl1";
     this.xtraScrollableControl1.Size = new System.Drawing.Size(624, 568);
     this.xtraScrollableControl1.TabIndex = 0;
     //
     // groupExpense
     //
     this.groupExpense.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupExpense.AppearanceCaption.Options.UseFont = true;
     this.groupExpense.Controls.Add(this.groupControlItem);
     this.groupExpense.Controls.Add(this.panelControl4);
     this.groupExpense.Controls.Add(this.panelControl2);
     this.groupExpense.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupExpense.Location = new System.Drawing.Point(0, 612);
     this.groupExpense.Name = "groupExpense";
     this.groupExpense.Size = new System.Drawing.Size(607, 347);
     this.groupExpense.TabIndex = 367;
     this.groupExpense.Text = "รายการค่าใช้จ่ายประจำเดือน";
     //
     // groupControlItem
     //
     this.groupControlItem.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlItem.AppearanceCaption.Options.UseFont = true;
     this.groupControlItem.Controls.Add(this.gridControlItem);
     this.groupControlItem.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlItem.Location = new System.Drawing.Point(2, 138);
     this.groupControlItem.Name = "groupControlItem";
     this.groupControlItem.Size = new System.Drawing.Size(603, 147);
     this.groupControlItem.TabIndex = 316;
     this.groupControlItem.Text = "รายการค่าใช้จ่ายเพิ่มเติม";
     //
     // gridControlItem
     //
     this.gridControlItem.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlItem.Location = new System.Drawing.Point(2, 22);
     this.gridControlItem.MainView = this.gridViewItemList;
     this.gridControlItem.Name = "gridControlItem";
     this.gridControlItem.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.gridControlItem.Size = new System.Drawing.Size(599, 123);
     this.gridControlItem.TabIndex = 284;
     this.gridControlItem.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewItemList});
     //
     // gridViewItemList
     //
     this.gridViewItemList.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewItemList.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumNo,
     this.colInvoiceItemName,
     this.gridColumnAmount,
     this.gridColumnAmountPerUnit,
     this.colInvoiceItemPrice,
     this.gridColumnVat,
     this.gridColumnVating,
     this.colInvoiceItemId,
     this.gridColumnItemNetPrice});
     this.gridViewItemList.GridControl = this.gridControlItem;
     this.gridViewItemList.Name = "gridViewItemList";
     this.gridViewItemList.OptionsView.ShowGroupPanel = false;
     //
     // gridColumNo
     //
     this.gridColumNo.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumNo.AppearanceHeader.Options.UseFont = true;
     this.gridColumNo.Caption = "ลำดับ";
     this.gridColumNo.FieldName = "order";
     this.gridColumNo.Name = "gridColumNo";
     this.gridColumNo.OptionsColumn.AllowEdit = false;
     this.gridColumNo.OptionsColumn.AllowFocus = false;
     this.gridColumNo.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumNo.OptionsColumn.AllowMove = false;
     this.gridColumNo.OptionsColumn.FixedWidth = true;
     this.gridColumNo.OptionsColumn.ReadOnly = true;
     this.gridColumNo.OptionsColumn.ShowCaption = false;
     this.gridColumNo.Visible = true;
     this.gridColumNo.VisibleIndex = 0;
     this.gridColumNo.Width = 39;
     //
     // colInvoiceItemName
     //
     this.colInvoiceItemName.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colInvoiceItemName.AppearanceHeader.Options.UseFont = true;
     this.colInvoiceItemName.Caption = "รายการ";
     this.colInvoiceItemName.FieldName = "item_name";
     this.colInvoiceItemName.Name = "colInvoiceItemName";
     this.colInvoiceItemName.OptionsColumn.AllowEdit = false;
     this.colInvoiceItemName.OptionsColumn.AllowFocus = false;
     this.colInvoiceItemName.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceItemName.OptionsColumn.AllowMove = false;
     this.colInvoiceItemName.OptionsColumn.FixedWidth = true;
     this.colInvoiceItemName.OptionsColumn.ReadOnly = true;
     this.colInvoiceItemName.OptionsColumn.ShowCaption = false;
     this.colInvoiceItemName.Visible = true;
     this.colInvoiceItemName.VisibleIndex = 1;
     this.colInvoiceItemName.Width = 63;
     //
     // gridColumnAmount
     //
     this.gridColumnAmount.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnAmount.AppearanceHeader.Options.UseFont = true;
     this.gridColumnAmount.Caption = "จำนวน";
     this.gridColumnAmount.DisplayFormat.FormatString = "n2";
     this.gridColumnAmount.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnAmount.FieldName = "item_amount";
     this.gridColumnAmount.Name = "gridColumnAmount";
     this.gridColumnAmount.OptionsColumn.AllowEdit = false;
     this.gridColumnAmount.OptionsColumn.AllowFocus = false;
     this.gridColumnAmount.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnAmount.OptionsColumn.AllowMove = false;
     this.gridColumnAmount.OptionsColumn.FixedWidth = true;
     this.gridColumnAmount.OptionsColumn.ReadOnly = true;
     this.gridColumnAmount.OptionsColumn.ShowCaption = false;
     this.gridColumnAmount.Visible = true;
     this.gridColumnAmount.VisibleIndex = 2;
     this.gridColumnAmount.Width = 63;
     //
     // gridColumnAmountPerUnit
     //
     this.gridColumnAmountPerUnit.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnAmountPerUnit.AppearanceHeader.Options.UseFont = true;
     this.gridColumnAmountPerUnit.Caption = "จำนวนเงินต่อหน่วย";
     this.gridColumnAmountPerUnit.DisplayFormat.FormatString = "n2";
     this.gridColumnAmountPerUnit.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnAmountPerUnit.FieldName = "item_priceperunit";
     this.gridColumnAmountPerUnit.Name = "gridColumnAmountPerUnit";
     this.gridColumnAmountPerUnit.OptionsColumn.AllowEdit = false;
     this.gridColumnAmountPerUnit.OptionsColumn.AllowFocus = false;
     this.gridColumnAmountPerUnit.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnAmountPerUnit.OptionsColumn.AllowMove = false;
     this.gridColumnAmountPerUnit.OptionsColumn.FixedWidth = true;
     this.gridColumnAmountPerUnit.OptionsColumn.ReadOnly = true;
     this.gridColumnAmountPerUnit.OptionsColumn.ShowCaption = false;
     this.gridColumnAmountPerUnit.Visible = true;
     this.gridColumnAmountPerUnit.VisibleIndex = 3;
     this.gridColumnAmountPerUnit.Width = 134;
     //
     // colInvoiceItemPrice
     //
     this.colInvoiceItemPrice.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.colInvoiceItemPrice.AppearanceHeader.Options.UseFont = true;
     this.colInvoiceItemPrice.Caption = "จำนวนเงินรวม";
     this.colInvoiceItemPrice.DisplayFormat.FormatString = "n2";
     this.colInvoiceItemPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colInvoiceItemPrice.FieldName = "item_sumprice";
     this.colInvoiceItemPrice.Name = "colInvoiceItemPrice";
     this.colInvoiceItemPrice.OptionsColumn.AllowEdit = false;
     this.colInvoiceItemPrice.OptionsColumn.AllowFocus = false;
     this.colInvoiceItemPrice.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.colInvoiceItemPrice.OptionsColumn.AllowMove = false;
     this.colInvoiceItemPrice.OptionsColumn.FixedWidth = true;
     this.colInvoiceItemPrice.OptionsColumn.ReadOnly = true;
     this.colInvoiceItemPrice.OptionsColumn.ShowCaption = false;
     this.colInvoiceItemPrice.Visible = true;
     this.colInvoiceItemPrice.VisibleIndex = 4;
     this.colInvoiceItemPrice.Width = 134;
     //
     // gridColumnVat
     //
     this.gridColumnVat.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnVat.AppearanceHeader.Options.UseFont = true;
     this.gridColumnVat.Caption = "ภาษี";
     this.gridColumnVat.DisplayFormat.FormatString = "n2";
     this.gridColumnVat.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnVat.FieldName = "item_vatprice";
     this.gridColumnVat.Name = "gridColumnVat";
     this.gridColumnVat.OptionsColumn.AllowEdit = false;
     this.gridColumnVat.OptionsColumn.AllowFocus = false;
     this.gridColumnVat.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnVat.OptionsColumn.AllowMove = false;
     this.gridColumnVat.OptionsColumn.FixedWidth = true;
     this.gridColumnVat.OptionsColumn.ReadOnly = true;
     this.gridColumnVat.OptionsColumn.ShowCaption = false;
     this.gridColumnVat.Visible = true;
     this.gridColumnVat.VisibleIndex = 5;
     this.gridColumnVat.Width = 63;
     //
     // gridColumnVating
     //
     this.gridColumnVating.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnVating.AppearanceHeader.Options.UseFont = true;
     this.gridColumnVating.Caption = "คิดภาษี";
     this.gridColumnVating.FieldName = "item_vat_bool";
     this.gridColumnVating.Name = "gridColumnVating";
     this.gridColumnVating.OptionsColumn.AllowEdit = false;
     this.gridColumnVating.OptionsColumn.AllowFocus = false;
     this.gridColumnVating.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnVating.OptionsColumn.AllowMove = false;
     this.gridColumnVating.OptionsColumn.FixedWidth = true;
     this.gridColumnVating.OptionsColumn.ReadOnly = true;
     this.gridColumnVating.OptionsColumn.ShowCaption = false;
     this.gridColumnVating.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumnVating.Visible = true;
     this.gridColumnVating.VisibleIndex = 7;
     this.gridColumnVating.Width = 67;
     //
     // colInvoiceItemId
     //
     this.colInvoiceItemId.Caption = "ItemId";
     this.colInvoiceItemId.FieldName = "item_id";
     this.colInvoiceItemId.Name = "colInvoiceItemId";
     this.colInvoiceItemId.OptionsColumn.AllowEdit = false;
     this.colInvoiceItemId.OptionsColumn.AllowFocus = false;
     //
     // gridColumnItemNetPrice
     //
     this.gridColumnItemNetPrice.Caption = "จำนวนเงินสุทธิ";
     this.gridColumnItemNetPrice.DisplayFormat.FormatString = "n2";
     this.gridColumnItemNetPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnItemNetPrice.FieldName = "item_netprice";
     this.gridColumnItemNetPrice.Name = "gridColumnItemNetPrice";
     this.gridColumnItemNetPrice.OptionsColumn.AllowEdit = false;
     this.gridColumnItemNetPrice.OptionsColumn.AllowFocus = false;
     this.gridColumnItemNetPrice.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnItemNetPrice.OptionsColumn.AllowMove = false;
     this.gridColumnItemNetPrice.OptionsColumn.AllowSize = false;
     this.gridColumnItemNetPrice.OptionsColumn.FixedWidth = true;
     this.gridColumnItemNetPrice.OptionsColumn.ReadOnly = true;
     this.gridColumnItemNetPrice.OptionsColumn.ShowCaption = false;
     this.gridColumnItemNetPrice.Visible = true;
     this.gridColumnItemNetPrice.VisibleIndex = 6;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // panelControl4
     //
     this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.bttRemoveItem);
     this.panelControl4.Controls.Add(this.bttAddItem);
     this.panelControl4.Controls.Add(this.labelControlBaht3);
     this.panelControl4.Controls.Add(this.textEditRefund);
     this.panelControl4.Controls.Add(this.labelControlRefund);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl4.Location = new System.Drawing.Point(2, 289);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(603, 56);
     this.panelControl4.TabIndex = 315;
     //
     // bttRemoveItem
     //
     this.bttRemoveItem.Location = new System.Drawing.Point(105, 19);
     this.bttRemoveItem.Name = "bttRemoveItem";
     this.bttRemoveItem.Size = new System.Drawing.Size(90, 25);
     this.bttRemoveItem.TabIndex = 311;
     this.bttRemoveItem.Text = "ลบ";
     //
     // bttAddItem
     //
     this.bttAddItem.Location = new System.Drawing.Point(9, 19);
     this.bttAddItem.Name = "bttAddItem";
     this.bttAddItem.Size = new System.Drawing.Size(90, 25);
     this.bttAddItem.TabIndex = 310;
     this.bttAddItem.Text = "เพิ่ม";
     //
     // labelControlBaht3
     //
     this.labelControlBaht3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlBaht3.Location = new System.Drawing.Point(570, 31);
     this.labelControlBaht3.Name = "labelControlBaht3";
     this.labelControlBaht3.Size = new System.Drawing.Size(20, 13);
     this.labelControlBaht3.TabIndex = 313;
     this.labelControlBaht3.Text = "บาท";
     //
     // textEditRefund
     //
     this.textEditRefund.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textEditRefund.EditValue = "";
     this.textEditRefund.Enabled = false;
     this.textEditRefund.Location = new System.Drawing.Point(359, 24);
     this.textEditRefund.Name = "textEditRefund";
     this.textEditRefund.Properties.Mask.EditMask = "n2";
     this.textEditRefund.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditRefund.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditRefund.Size = new System.Drawing.Size(205, 20);
     this.textEditRefund.TabIndex = 309;
     //
     // labelControlRefund
     //
     this.labelControlRefund.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControlRefund.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRefund.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRefund.Location = new System.Drawing.Point(267, 31);
     this.labelControlRefund.Name = "labelControlRefund";
     this.labelControlRefund.Size = new System.Drawing.Size(86, 13);
     this.labelControlRefund.TabIndex = 312;
     this.labelControlRefund.Text = "จำนวนเงินคืน :";
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.gridControlGeneralCost);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl2.Location = new System.Drawing.Point(2, 22);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(603, 116);
     this.panelControl2.TabIndex = 314;
     //
     // gridControlGeneralCost
     //
     this.gridControlGeneralCost.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlGeneralCost.Enabled = false;
     this.gridControlGeneralCost.Location = new System.Drawing.Point(2, 2);
     this.gridControlGeneralCost.MainView = this.gridViewGeneralCost;
     this.gridControlGeneralCost.Name = "gridControlGeneralCost";
     this.gridControlGeneralCost.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit2});
     this.gridControlGeneralCost.Size = new System.Drawing.Size(599, 112);
     this.gridControlGeneralCost.TabIndex = 285;
     this.gridControlGeneralCost.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewGeneralCost,
     this.gridView1});
     //
     // gridViewGeneralCost
     //
     this.gridViewGeneralCost.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridViewGeneralCost.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumnNetPrice});
     this.gridViewGeneralCost.GridControl = this.gridControlGeneralCost;
     this.gridViewGeneralCost.Name = "gridViewGeneralCost";
     this.gridViewGeneralCost.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn1.AppearanceHeader.Options.UseFont = true;
     this.gridColumn1.Caption = "ลำดับ";
     this.gridColumn1.FieldName = "order";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.AllowFocus = false;
     this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn1.OptionsColumn.AllowMove = false;
     this.gridColumn1.OptionsColumn.FixedWidth = true;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 39;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn2.AppearanceHeader.Options.UseFont = true;
     this.gridColumn2.Caption = "รายการ";
     this.gridColumn2.FieldName = "item_name";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsColumn.AllowFocus = false;
     this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn2.OptionsColumn.AllowMove = false;
     this.gridColumn2.OptionsColumn.FixedWidth = true;
     this.gridColumn2.OptionsColumn.ReadOnly = true;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 63;
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn3.AppearanceHeader.Options.UseFont = true;
     this.gridColumn3.Caption = "จำนวน";
     this.gridColumn3.DisplayFormat.FormatString = "n2";
     this.gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn3.FieldName = "item_amount";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.AllowFocus = false;
     this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn3.OptionsColumn.AllowMove = false;
     this.gridColumn3.OptionsColumn.FixedWidth = true;
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 63;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn4.AppearanceHeader.Options.UseFont = true;
     this.gridColumn4.Caption = "จำนวนเงินต่อหน่วย";
     this.gridColumn4.DisplayFormat.FormatString = "n2";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn4.FieldName = "item_priceperunit";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsColumn.AllowFocus = false;
     this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn4.OptionsColumn.AllowMove = false;
     this.gridColumn4.OptionsColumn.FixedWidth = true;
     this.gridColumn4.OptionsColumn.ReadOnly = true;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 134;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn5.AppearanceHeader.Options.UseFont = true;
     this.gridColumn5.Caption = "จำนวนเงินรวม";
     this.gridColumn5.DisplayFormat.FormatString = "n2";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "item_sumprice";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.AllowFocus = false;
     this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn5.OptionsColumn.AllowMove = false;
     this.gridColumn5.OptionsColumn.FixedWidth = true;
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 134;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn6.AppearanceHeader.Options.UseFont = true;
     this.gridColumn6.Caption = "ภาษี";
     this.gridColumn6.DisplayFormat.FormatString = "n2";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "item_vatprice";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsColumn.AllowFocus = false;
     this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn6.OptionsColumn.AllowMove = false;
     this.gridColumn6.OptionsColumn.FixedWidth = true;
     this.gridColumn6.OptionsColumn.ReadOnly = true;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 63;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumn7.AppearanceHeader.Options.UseFont = true;
     this.gridColumn7.Caption = "คิดภาษี";
     this.gridColumn7.FieldName = "item_vat_bool";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.AllowFocus = false;
     this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumn7.OptionsColumn.AllowMove = false;
     this.gridColumn7.OptionsColumn.FixedWidth = true;
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 7;
     this.gridColumn7.Width = 67;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "ItemId";
     this.gridColumn8.FieldName = "item_id";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowEdit = false;
     this.gridColumn8.OptionsColumn.AllowFocus = false;
     //
     // gridColumnNetPrice
     //
     this.gridColumnNetPrice.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.gridColumnNetPrice.AppearanceHeader.Options.UseFont = true;
     this.gridColumnNetPrice.Caption = "จำนวนเงินสุทธิ";
     this.gridColumnNetPrice.DisplayFormat.FormatString = "n2";
     this.gridColumnNetPrice.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnNetPrice.FieldName = "item_netprice";
     this.gridColumnNetPrice.Name = "gridColumnNetPrice";
     this.gridColumnNetPrice.OptionsColumn.AllowEdit = false;
     this.gridColumnNetPrice.OptionsColumn.AllowFocus = false;
     this.gridColumnNetPrice.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
     this.gridColumnNetPrice.OptionsColumn.AllowMove = false;
     this.gridColumnNetPrice.OptionsColumn.AllowSize = false;
     this.gridColumnNetPrice.OptionsColumn.FixedWidth = true;
     this.gridColumnNetPrice.OptionsColumn.ReadOnly = true;
     this.gridColumnNetPrice.Visible = true;
     this.gridColumnNetPrice.VisibleIndex = 6;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControlGeneralCost;
     this.gridView1.Name = "gridView1";
     //
     // panelControlCalculate
     //
     this.panelControlCalculate.Controls.Add(this.dateEditInvoiceDueDate);
     this.panelControlCalculate.Controls.Add(this.panelControlPricePerDay);
     this.panelControlCalculate.Controls.Add(this.labelControlTipMSG);
     this.panelControlCalculate.Controls.Add(this.dateEditLeaveDate);
     this.panelControlCalculate.Controls.Add(this.bttCalculate);
     this.panelControlCalculate.Controls.Add(this.labelControlRentalPrice);
     this.panelControlCalculate.Controls.Add(this.labelControlCheckOutDate);
     this.panelControlCalculate.Controls.Add(this.lookUpEditCharge);
     this.panelControlCalculate.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControlCalculate.Location = new System.Drawing.Point(0, 470);
     this.panelControlCalculate.Name = "panelControlCalculate";
     this.panelControlCalculate.Size = new System.Drawing.Size(607, 142);
     this.panelControlCalculate.TabIndex = 366;
     //
     // dateEditInvoiceDueDate
     //
     this.dateEditInvoiceDueDate.EditValue = new System.DateTime(2013, 3, 15, 0, 0, 0, 0);
     this.dateEditInvoiceDueDate.Enabled = false;
     this.dateEditInvoiceDueDate.Location = new System.Drawing.Point(457, 72);
     this.dateEditInvoiceDueDate.Name = "dateEditInvoiceDueDate";
     this.dateEditInvoiceDueDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditInvoiceDueDate.Properties.DisplayFormat.FormatString = "dd MMMM yyyy";
     this.dateEditInvoiceDueDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditInvoiceDueDate.Properties.EditFormat.FormatString = "dd MMMM yyyy";
     this.dateEditInvoiceDueDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditInvoiceDueDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditInvoiceDueDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditInvoiceDueDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditInvoiceDueDate.Size = new System.Drawing.Size(86, 20);
     this.dateEditInvoiceDueDate.TabIndex = 458;
     this.dateEditInvoiceDueDate.Visible = false;
     //
     // panelControlPricePerDay
     //
     this.panelControlPricePerDay.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlPricePerDay.Controls.Add(this.textEditChargePrice);
     this.panelControlPricePerDay.Controls.Add(this.labelControlPrice);
     this.panelControlPricePerDay.Controls.Add(this.labelControlBaht2);
     this.panelControlPricePerDay.Location = new System.Drawing.Point(11, 63);
     this.panelControlPricePerDay.Name = "panelControlPricePerDay";
     this.panelControlPricePerDay.Size = new System.Drawing.Size(323, 30);
     this.panelControlPricePerDay.TabIndex = 457;
     this.panelControlPricePerDay.Visible = false;
     //
     // textEditChargePrice
     //
     this.textEditChargePrice.EditValue = "0.00";
     this.textEditChargePrice.Enabled = false;
     this.textEditChargePrice.Location = new System.Drawing.Point(94, 5);
     this.textEditChargePrice.Name = "textEditChargePrice";
     this.textEditChargePrice.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditChargePrice.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditChargePrice.Properties.Mask.BeepOnError = true;
     this.textEditChargePrice.Properties.Mask.EditMask = "0*([0-9]{1,7}|1000000)|0*([0-9]{1,7}|1000000)\\.([0-9]){2}";
     this.textEditChargePrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditChargePrice.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditChargePrice.Size = new System.Drawing.Size(156, 20);
     this.textEditChargePrice.TabIndex = 455;
     //
     // labelControlPrice
     //
     this.labelControlPrice.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlPrice.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlPrice.Location = new System.Drawing.Point(0, 12);
     this.labelControlPrice.Name = "labelControlPrice";
     this.labelControlPrice.Size = new System.Drawing.Size(92, 13);
     this.labelControlPrice.TabIndex = 454;
     this.labelControlPrice.Text = "ราคา :";
     //
     // labelControlBaht2
     //
     this.labelControlBaht2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht2.Location = new System.Drawing.Point(256, 12);
     this.labelControlBaht2.Name = "labelControlBaht2";
     this.labelControlBaht2.Size = new System.Drawing.Size(53, 13);
     this.labelControlBaht2.TabIndex = 453;
     this.labelControlBaht2.Text = "บาท/วัน";
     //
     // labelControlTipMSG
     //
     this.labelControlTipMSG.Appearance.ForeColor = System.Drawing.Color.Green;
     this.labelControlTipMSG.Location = new System.Drawing.Point(109, 78);
     this.labelControlTipMSG.Name = "labelControlTipMSG";
     this.labelControlTipMSG.Padding = new System.Windows.Forms.Padding(10);
     this.labelControlTipMSG.Size = new System.Drawing.Size(151, 33);
     this.labelControlTipMSG.TabIndex = 456;
     this.labelControlTipMSG.Text = "คิดเต็มเดือนตามประเภทห้อง";
     //
     // dateEditLeaveDate
     //
     this.dateEditLeaveDate.EditValue = new System.DateTime(2013, 3, 3, 23, 51, 3, 0);
     this.dateEditLeaveDate.Enabled = false;
     this.dateEditLeaveDate.Location = new System.Drawing.Point(107, 11);
     this.dateEditLeaveDate.Name = "dateEditLeaveDate";
     this.dateEditLeaveDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditLeaveDate.Properties.DisplayFormat.FormatString = "dd MMMM yyyy";
     this.dateEditLeaveDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditLeaveDate.Properties.EditFormat.FormatString = "dd MMMM yyyy";
     this.dateEditLeaveDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditLeaveDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditLeaveDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditLeaveDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditLeaveDate.Size = new System.Drawing.Size(157, 20);
     this.dateEditLeaveDate.TabIndex = 448;
     //
     // bttCalculate
     //
     this.bttCalculate.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.bttCalculate.Appearance.Options.UseFont = true;
     this.bttCalculate.Enabled = false;
     this.bttCalculate.Location = new System.Drawing.Point(448, 14);
     this.bttCalculate.Name = "bttCalculate";
     this.bttCalculate.Size = new System.Drawing.Size(105, 39);
     this.bttCalculate.TabIndex = 449;
     this.bttCalculate.Text = "คำนวนค่าใช้จ่าย";
     //
     // labelControlRentalPrice
     //
     this.labelControlRentalPrice.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRentalPrice.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRentalPrice.Location = new System.Drawing.Point(20, 44);
     this.labelControlRentalPrice.Name = "labelControlRentalPrice";
     this.labelControlRentalPrice.Size = new System.Drawing.Size(84, 13);
     this.labelControlRentalPrice.TabIndex = 452;
     this.labelControlRentalPrice.Text = "คิดค่าห้อง :";
     //
     // labelControlCheckOutDate
     //
     this.labelControlCheckOutDate.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlCheckOutDate.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlCheckOutDate.Location = new System.Drawing.Point(20, 18);
     this.labelControlCheckOutDate.Name = "labelControlCheckOutDate";
     this.labelControlCheckOutDate.Size = new System.Drawing.Size(84, 13);
     this.labelControlCheckOutDate.TabIndex = 451;
     this.labelControlCheckOutDate.Text = "วันที่ย้ายออก :";
     //
     // lookUpEditCharge
     //
     this.lookUpEditCharge.Enabled = false;
     this.lookUpEditCharge.Location = new System.Drawing.Point(107, 37);
     this.lookUpEditCharge.Name = "lookUpEditCharge";
     this.lookUpEditCharge.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditCharge.Size = new System.Drawing.Size(156, 20);
     this.lookUpEditCharge.TabIndex = 105;
     //
     // groupControlMeter
     //
     this.groupControlMeter.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlMeter.AppearanceCaption.Options.UseFont = true;
     this.groupControlMeter.Controls.Add(this.textEditPhonePrice);
     this.groupControlMeter.Controls.Add(this.groupControlEndMeter);
     this.groupControlMeter.Controls.Add(this.groupControlEndDate);
     this.groupControlMeter.Controls.Add(this.dateEditPhoneStart);
     this.groupControlMeter.Controls.Add(this.dateEditPhoneEnd);
     this.groupControlMeter.Controls.Add(this.textEditWaterMeterId);
     this.groupControlMeter.Controls.Add(this.textEditElectricMeterId);
     this.groupControlMeter.Controls.Add(this.groupControlStartMeter);
     this.groupControlMeter.Controls.Add(this.labelControlPhoneMeter);
     this.groupControlMeter.Controls.Add(this.labelControlTelAmount);
     this.groupControlMeter.Controls.Add(this.labelControlTelEnd);
     this.groupControlMeter.Controls.Add(this.labelControlTelStart);
     this.groupControlMeter.Controls.Add(this.labelControlWaterMeter);
     this.groupControlMeter.Controls.Add(this.labelControlElectricMeter);
     this.groupControlMeter.Controls.Add(this.groupControlStartDate);
     this.groupControlMeter.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlMeter.Location = new System.Drawing.Point(0, 304);
     this.groupControlMeter.Name = "groupControlMeter";
     this.groupControlMeter.Size = new System.Drawing.Size(607, 166);
     this.groupControlMeter.TabIndex = 354;
     this.groupControlMeter.Text = "บันทึกค่าสาธารณูปโภค";
     //
     // textEditPhonePrice
     //
     this.textEditPhonePrice.EditValue = "0.000";
     this.textEditPhonePrice.Enabled = false;
     this.textEditPhonePrice.Location = new System.Drawing.Point(337, 125);
     this.textEditPhonePrice.Name = "textEditPhonePrice";
     this.textEditPhonePrice.Properties.DisplayFormat.FormatString = "n2";
     this.textEditPhonePrice.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditPhonePrice.Properties.EditFormat.FormatString = "n2";
     this.textEditPhonePrice.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditPhonePrice.Properties.Mask.EditMask = "n2";
     this.textEditPhonePrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditPhonePrice.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditPhonePrice.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditPhonePrice.Size = new System.Drawing.Size(94, 20);
     this.textEditPhonePrice.TabIndex = 357;
     //
     // groupControlEndMeter
     //
     this.groupControlEndMeter.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlEndMeter.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlEndMeter.Controls.Add(this.textEditWMeterPresent);
     this.groupControlEndMeter.Controls.Add(this.textEditEMeterPresent);
     this.groupControlEndMeter.Location = new System.Drawing.Point(331, 25);
     this.groupControlEndMeter.Name = "groupControlEndMeter";
     this.groupControlEndMeter.Size = new System.Drawing.Size(111, 82);
     this.groupControlEndMeter.TabIndex = 389;
     this.groupControlEndMeter.Text = "เลขมิเตอร์ล่าสุด";
     //
     // textEditWMeterPresent
     //
     this.textEditWMeterPresent.EditValue = "0.000";
     this.textEditWMeterPresent.Enabled = false;
     this.textEditWMeterPresent.Location = new System.Drawing.Point(6, 51);
     this.textEditWMeterPresent.Name = "textEditWMeterPresent";
     this.textEditWMeterPresent.Properties.DisplayFormat.FormatString = "n3";
     this.textEditWMeterPresent.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditWMeterPresent.Properties.EditFormat.FormatString = "n3";
     this.textEditWMeterPresent.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditWMeterPresent.Properties.Mask.EditMask = "n2";
     this.textEditWMeterPresent.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditWMeterPresent.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditWMeterPresent.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditWMeterPresent.Size = new System.Drawing.Size(94, 20);
     this.textEditWMeterPresent.TabIndex = 357;
     //
     // textEditEMeterPresent
     //
     this.textEditEMeterPresent.EditValue = "0.000";
     this.textEditEMeterPresent.Enabled = false;
     this.textEditEMeterPresent.Location = new System.Drawing.Point(6, 25);
     this.textEditEMeterPresent.Name = "textEditEMeterPresent";
     this.textEditEMeterPresent.Properties.DisplayFormat.FormatString = "n3";
     this.textEditEMeterPresent.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditEMeterPresent.Properties.EditFormat.FormatString = "n3";
     this.textEditEMeterPresent.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditEMeterPresent.Properties.Mask.EditMask = "n2";
     this.textEditEMeterPresent.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditEMeterPresent.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditEMeterPresent.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditEMeterPresent.Size = new System.Drawing.Size(94, 20);
     this.textEditEMeterPresent.TabIndex = 356;
     //
     // groupControlEndDate
     //
     this.groupControlEndDate.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlEndDate.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlEndDate.Controls.Add(this.dateEditWMeterPresentDate);
     this.groupControlEndDate.Controls.Add(this.dateEditEMeterPresentDate);
     this.groupControlEndDate.Location = new System.Drawing.Point(448, 25);
     this.groupControlEndDate.Name = "groupControlEndDate";
     this.groupControlEndDate.Size = new System.Drawing.Size(105, 82);
     this.groupControlEndDate.TabIndex = 388;
     this.groupControlEndDate.Text = "วันที่บันทึก";
     //
     // dateEditWMeterPresentDate
     //
     this.dateEditWMeterPresentDate.EditValue = new System.DateTime(2013, 3, 3, 23, 56, 50, 0);
     this.dateEditWMeterPresentDate.Enabled = false;
     this.dateEditWMeterPresentDate.Location = new System.Drawing.Point(5, 51);
     this.dateEditWMeterPresentDate.Name = "dateEditWMeterPresentDate";
     this.dateEditWMeterPresentDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditWMeterPresentDate.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditWMeterPresentDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditWMeterPresentDate.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditWMeterPresentDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditWMeterPresentDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditWMeterPresentDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditWMeterPresentDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditWMeterPresentDate.Size = new System.Drawing.Size(91, 20);
     this.dateEditWMeterPresentDate.TabIndex = 371;
     //
     // dateEditEMeterPresentDate
     //
     this.dateEditEMeterPresentDate.EditValue = new System.DateTime(2013, 3, 3, 23, 56, 50, 0);
     this.dateEditEMeterPresentDate.Enabled = false;
     this.dateEditEMeterPresentDate.Location = new System.Drawing.Point(5, 25);
     this.dateEditEMeterPresentDate.Name = "dateEditEMeterPresentDate";
     this.dateEditEMeterPresentDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditEMeterPresentDate.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditEMeterPresentDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEMeterPresentDate.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditEMeterPresentDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEMeterPresentDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditEMeterPresentDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditEMeterPresentDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditEMeterPresentDate.Size = new System.Drawing.Size(91, 20);
     this.dateEditEMeterPresentDate.TabIndex = 370;
     //
     // dateEditPhoneStart
     //
     this.dateEditPhoneStart.EditValue = new System.DateTime(2013, 3, 3, 0, 0, 0, 0);
     this.dateEditPhoneStart.Enabled = false;
     this.dateEditPhoneStart.Location = new System.Drawing.Point(113, 125);
     this.dateEditPhoneStart.Name = "dateEditPhoneStart";
     this.dateEditPhoneStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditPhoneStart.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditPhoneStart.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditPhoneStart.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditPhoneStart.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditPhoneStart.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditPhoneStart.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditPhoneStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditPhoneStart.Size = new System.Drawing.Size(94, 20);
     this.dateEditPhoneStart.TabIndex = 372;
     //
     // dateEditPhoneEnd
     //
     this.dateEditPhoneEnd.EditValue = new System.DateTime(2013, 3, 3, 0, 0, 0, 0);
     this.dateEditPhoneEnd.Enabled = false;
     this.dateEditPhoneEnd.Location = new System.Drawing.Point(224, 125);
     this.dateEditPhoneEnd.Name = "dateEditPhoneEnd";
     this.dateEditPhoneEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditPhoneEnd.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditPhoneEnd.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditPhoneEnd.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditPhoneEnd.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditPhoneEnd.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditPhoneEnd.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditPhoneEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditPhoneEnd.Size = new System.Drawing.Size(91, 20);
     this.dateEditPhoneEnd.TabIndex = 372;
     //
     // textEditWaterMeterId
     //
     this.textEditWaterMeterId.EditValue = 0;
     this.textEditWaterMeterId.Enabled = false;
     this.textEditWaterMeterId.Location = new System.Drawing.Point(58, 25);
     this.textEditWaterMeterId.Name = "textEditWaterMeterId";
     this.textEditWaterMeterId.Properties.Mask.EditMask = "([0-9]*)";
     this.textEditWaterMeterId.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditWaterMeterId.Size = new System.Drawing.Size(21, 20);
     this.textEditWaterMeterId.TabIndex = 389;
     this.textEditWaterMeterId.Visible = false;
     //
     // textEditElectricMeterId
     //
     this.textEditElectricMeterId.EditValue = 0;
     this.textEditElectricMeterId.Enabled = false;
     this.textEditElectricMeterId.Location = new System.Drawing.Point(85, 25);
     this.textEditElectricMeterId.Name = "textEditElectricMeterId";
     this.textEditElectricMeterId.Properties.Mask.EditMask = "([0-9]*)";
     this.textEditElectricMeterId.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
     this.textEditElectricMeterId.Size = new System.Drawing.Size(20, 20);
     this.textEditElectricMeterId.TabIndex = 388;
     this.textEditElectricMeterId.Visible = false;
     //
     // groupControlStartMeter
     //
     this.groupControlStartMeter.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlStartMeter.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlStartMeter.Controls.Add(this.textEditWMeterPreviousUnit);
     this.groupControlStartMeter.Controls.Add(this.textEditEMeterPreviousUnit);
     this.groupControlStartMeter.Location = new System.Drawing.Point(107, 25);
     this.groupControlStartMeter.Name = "groupControlStartMeter";
     this.groupControlStartMeter.Size = new System.Drawing.Size(111, 82);
     this.groupControlStartMeter.TabIndex = 387;
     this.groupControlStartMeter.Text = "เลขมิเตอร์ครั้งก่อน";
     //
     // textEditWMeterPreviousUnit
     //
     this.textEditWMeterPreviousUnit.EditValue = "0.000";
     this.textEditWMeterPreviousUnit.Enabled = false;
     this.textEditWMeterPreviousUnit.Location = new System.Drawing.Point(6, 51);
     this.textEditWMeterPreviousUnit.Name = "textEditWMeterPreviousUnit";
     this.textEditWMeterPreviousUnit.Properties.DisplayFormat.FormatString = "n3";
     this.textEditWMeterPreviousUnit.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditWMeterPreviousUnit.Properties.EditFormat.FormatString = "n3";
     this.textEditWMeterPreviousUnit.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditWMeterPreviousUnit.Properties.Mask.EditMask = "n2";
     this.textEditWMeterPreviousUnit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditWMeterPreviousUnit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditWMeterPreviousUnit.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditWMeterPreviousUnit.Size = new System.Drawing.Size(94, 20);
     this.textEditWMeterPreviousUnit.TabIndex = 357;
     //
     // textEditEMeterPreviousUnit
     //
     this.textEditEMeterPreviousUnit.EditValue = "0.000";
     this.textEditEMeterPreviousUnit.Enabled = false;
     this.textEditEMeterPreviousUnit.Location = new System.Drawing.Point(6, 25);
     this.textEditEMeterPreviousUnit.Name = "textEditEMeterPreviousUnit";
     this.textEditEMeterPreviousUnit.Properties.DisplayFormat.FormatString = "n3";
     this.textEditEMeterPreviousUnit.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditEMeterPreviousUnit.Properties.EditFormat.FormatString = "n3";
     this.textEditEMeterPreviousUnit.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.textEditEMeterPreviousUnit.Properties.Mask.EditMask = "n2";
     this.textEditEMeterPreviousUnit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditEMeterPreviousUnit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditEMeterPreviousUnit.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.textEditEMeterPreviousUnit.Size = new System.Drawing.Size(94, 20);
     this.textEditEMeterPreviousUnit.TabIndex = 356;
     //
     // labelControlPhoneMeter
     //
     this.labelControlPhoneMeter.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlPhoneMeter.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlPhoneMeter.Location = new System.Drawing.Point(46, 128);
     this.labelControlPhoneMeter.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlPhoneMeter.Name = "labelControlPhoneMeter";
     this.labelControlPhoneMeter.Size = new System.Drawing.Size(59, 13);
     this.labelControlPhoneMeter.TabIndex = 386;
     this.labelControlPhoneMeter.Text = "โทรศัพท์ :";
     //
     // labelControlTelAmount
     //
     this.labelControlTelAmount.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControlTelAmount.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlTelAmount.Location = new System.Drawing.Point(337, 109);
     this.labelControlTelAmount.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlTelAmount.Name = "labelControlTelAmount";
     this.labelControlTelAmount.Size = new System.Drawing.Size(94, 13);
     this.labelControlTelAmount.TabIndex = 385;
     this.labelControlTelAmount.Text = "ค่าโทร";
     //
     // labelControlTelEnd
     //
     this.labelControlTelEnd.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControlTelEnd.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlTelEnd.Location = new System.Drawing.Point(224, 110);
     this.labelControlTelEnd.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlTelEnd.Name = "labelControlTelEnd";
     this.labelControlTelEnd.Size = new System.Drawing.Size(91, 13);
     this.labelControlTelEnd.TabIndex = 385;
     this.labelControlTelEnd.Text = "วันที่สิ้นสุด";
     //
     // labelControlTelStart
     //
     this.labelControlTelStart.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.labelControlTelStart.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlTelStart.Location = new System.Drawing.Point(113, 110);
     this.labelControlTelStart.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlTelStart.Name = "labelControlTelStart";
     this.labelControlTelStart.Size = new System.Drawing.Size(94, 13);
     this.labelControlTelStart.TabIndex = 385;
     this.labelControlTelStart.Text = "วันที่เริ่ม";
     //
     // labelControlWaterMeter
     //
     this.labelControlWaterMeter.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlWaterMeter.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlWaterMeter.Location = new System.Drawing.Point(58, 79);
     this.labelControlWaterMeter.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlWaterMeter.Name = "labelControlWaterMeter";
     this.labelControlWaterMeter.Size = new System.Drawing.Size(46, 13);
     this.labelControlWaterMeter.TabIndex = 385;
     this.labelControlWaterMeter.Text = "น้ำ :";
     //
     // labelControlElectricMeter
     //
     this.labelControlElectricMeter.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlElectricMeter.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlElectricMeter.Location = new System.Drawing.Point(58, 53);
     this.labelControlElectricMeter.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlElectricMeter.Name = "labelControlElectricMeter";
     this.labelControlElectricMeter.Size = new System.Drawing.Size(46, 13);
     this.labelControlElectricMeter.TabIndex = 384;
     this.labelControlElectricMeter.Text = "ไฟฟ้า :";
     //
     // groupControlStartDate
     //
     this.groupControlStartDate.AppearanceCaption.Options.UseTextOptions = true;
     this.groupControlStartDate.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.groupControlStartDate.Controls.Add(this.dateEditWMeterPreviousDate);
     this.groupControlStartDate.Controls.Add(this.dateEditEMeterPreviousDate);
     this.groupControlStartDate.Location = new System.Drawing.Point(220, 25);
     this.groupControlStartDate.Name = "groupControlStartDate";
     this.groupControlStartDate.Size = new System.Drawing.Size(105, 82);
     this.groupControlStartDate.TabIndex = 382;
     this.groupControlStartDate.Text = "วันที่บันทึก";
     //
     // dateEditWMeterPreviousDate
     //
     this.dateEditWMeterPreviousDate.EditValue = new System.DateTime(2013, 3, 3, 23, 56, 23, 0);
     this.dateEditWMeterPreviousDate.Enabled = false;
     this.dateEditWMeterPreviousDate.Location = new System.Drawing.Point(5, 51);
     this.dateEditWMeterPreviousDate.Name = "dateEditWMeterPreviousDate";
     this.dateEditWMeterPreviousDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditWMeterPreviousDate.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditWMeterPreviousDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditWMeterPreviousDate.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditWMeterPreviousDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditWMeterPreviousDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditWMeterPreviousDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditWMeterPreviousDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditWMeterPreviousDate.Size = new System.Drawing.Size(91, 20);
     this.dateEditWMeterPreviousDate.TabIndex = 371;
     //
     // dateEditEMeterPreviousDate
     //
     this.dateEditEMeterPreviousDate.EditValue = new System.DateTime(2013, 3, 3, 0, 0, 0, 0);
     this.dateEditEMeterPreviousDate.Enabled = false;
     this.dateEditEMeterPreviousDate.Location = new System.Drawing.Point(5, 25);
     this.dateEditEMeterPreviousDate.Name = "dateEditEMeterPreviousDate";
     this.dateEditEMeterPreviousDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditEMeterPreviousDate.Properties.DisplayFormat.FormatString = "dd MMM yyyy";
     this.dateEditEMeterPreviousDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEMeterPreviousDate.Properties.EditFormat.FormatString = "dd MMM yyyy";
     this.dateEditEMeterPreviousDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditEMeterPreviousDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditEMeterPreviousDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditEMeterPreviousDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditEMeterPreviousDate.Size = new System.Drawing.Size(91, 20);
     this.dateEditEMeterPreviousDate.TabIndex = 370;
     //
     // groupRoomInfo
     //
     this.groupRoomInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupRoomInfo.AppearanceCaption.Options.UseFont = true;
     this.groupRoomInfo.Controls.Add(this.textEditRoomPrice);
     this.groupRoomInfo.Controls.Add(this.labelControlBaht0);
     this.groupRoomInfo.Controls.Add(this.labelControlMonth2);
     this.groupRoomInfo.Controls.Add(this.labelControlBaht1);
     this.groupRoomInfo.Controls.Add(this.textEditInsurerate);
     this.groupRoomInfo.Controls.Add(this.textEditAdvance);
     this.groupRoomInfo.Controls.Add(this.labelControlInsurance);
     this.groupRoomInfo.Controls.Add(this.labelControlDeposit);
     this.groupRoomInfo.Controls.Add(this.labelControlMonthlyRate);
     this.groupRoomInfo.Controls.Add(this.lookUpEditFloorId);
     this.groupRoomInfo.Controls.Add(this.labelControlFloor);
     this.groupRoomInfo.Controls.Add(this.textEditRoomLabel);
     this.groupRoomInfo.Controls.Add(this.labelControlRoomName);
     this.groupRoomInfo.Controls.Add(this.lookUpEditRoomTypeId);
     this.groupRoomInfo.Controls.Add(this.lookUpEditBuildingId);
     this.groupRoomInfo.Controls.Add(this.labelControlRoomType);
     this.groupRoomInfo.Controls.Add(this.labelControlBuilding);
     this.groupRoomInfo.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupRoomInfo.Location = new System.Drawing.Point(0, 169);
     this.groupRoomInfo.Name = "groupRoomInfo";
     this.groupRoomInfo.Size = new System.Drawing.Size(607, 135);
     this.groupRoomInfo.TabIndex = 353;
     this.groupRoomInfo.Text = "ห้อง";
     //
     // textEditRoomPrice
     //
     this.textEditRoomPrice.EditValue = "";
     this.textEditRoomPrice.Enabled = false;
     this.textEditRoomPrice.Location = new System.Drawing.Point(397, 29);
     this.textEditRoomPrice.Name = "textEditRoomPrice";
     this.textEditRoomPrice.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditRoomPrice.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditRoomPrice.Properties.Mask.EditMask = "n2";
     this.textEditRoomPrice.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditRoomPrice.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditRoomPrice.Size = new System.Drawing.Size(163, 20);
     this.textEditRoomPrice.TabIndex = 118;
     //
     // labelControlBaht0
     //
     this.labelControlBaht0.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht0.Location = new System.Drawing.Point(563, 62);
     this.labelControlBaht0.Name = "labelControlBaht0";
     this.labelControlBaht0.Size = new System.Drawing.Size(33, 13);
     this.labelControlBaht0.TabIndex = 115;
     this.labelControlBaht0.Text = "บาท";
     //
     // labelControlMonth2
     //
     this.labelControlMonth2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMonth2.Location = new System.Drawing.Point(563, 84);
     this.labelControlMonth2.Name = "labelControlMonth2";
     this.labelControlMonth2.Size = new System.Drawing.Size(33, 13);
     this.labelControlMonth2.TabIndex = 117;
     this.labelControlMonth2.Text = "เดือน";
     //
     // labelControlBaht1
     //
     this.labelControlBaht1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBaht1.Location = new System.Drawing.Point(563, 36);
     this.labelControlBaht1.Name = "labelControlBaht1";
     this.labelControlBaht1.Size = new System.Drawing.Size(33, 13);
     this.labelControlBaht1.TabIndex = 112;
     this.labelControlBaht1.Text = "บาท";
     //
     // textEditInsurerate
     //
     this.textEditInsurerate.EditValue = "0.00";
     this.textEditInsurerate.Enabled = false;
     this.textEditInsurerate.Location = new System.Drawing.Point(397, 55);
     this.textEditInsurerate.Name = "textEditInsurerate";
     this.textEditInsurerate.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditInsurerate.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditInsurerate.Properties.Mask.EditMask = "n2";
     this.textEditInsurerate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textEditInsurerate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.textEditInsurerate.Size = new System.Drawing.Size(163, 20);
     this.textEditInsurerate.TabIndex = 119;
     //
     // textEditAdvance
     //
     this.textEditAdvance.EditValue = "0";
     this.textEditAdvance.Enabled = false;
     this.textEditAdvance.Location = new System.Drawing.Point(397, 81);
     this.textEditAdvance.Name = "textEditAdvance";
     this.textEditAdvance.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditAdvance.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditAdvance.Size = new System.Drawing.Size(163, 20);
     this.textEditAdvance.TabIndex = 120;
     //
     // labelControlInsurance
     //
     this.labelControlInsurance.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlInsurance.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlInsurance.Location = new System.Drawing.Point(302, 62);
     this.labelControlInsurance.Name = "labelControlInsurance";
     this.labelControlInsurance.Size = new System.Drawing.Size(92, 13);
     this.labelControlInsurance.TabIndex = 114;
     this.labelControlInsurance.Text = "ค่าประกัน :";
     //
     // labelControlDeposit
     //
     this.labelControlDeposit.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlDeposit.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlDeposit.Location = new System.Drawing.Point(280, 84);
     this.labelControlDeposit.Name = "labelControlDeposit";
     this.labelControlDeposit.Size = new System.Drawing.Size(114, 13);
     this.labelControlDeposit.TabIndex = 113;
     this.labelControlDeposit.Text = "ค่าเช่าล่วงหน้า :";
     //
     // labelControlMonthlyRate
     //
     this.labelControlMonthlyRate.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlMonthlyRate.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMonthlyRate.Location = new System.Drawing.Point(302, 36);
     this.labelControlMonthlyRate.Name = "labelControlMonthlyRate";
     this.labelControlMonthlyRate.Size = new System.Drawing.Size(92, 13);
     this.labelControlMonthlyRate.TabIndex = 116;
     this.labelControlMonthlyRate.Text = "ค่าเช่า :";
     //
     // lookUpEditFloorId
     //
     this.lookUpEditFloorId.Enabled = false;
     this.lookUpEditFloorId.Location = new System.Drawing.Point(107, 81);
     this.lookUpEditFloorId.Name = "lookUpEditFloorId";
     this.lookUpEditFloorId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditFloorId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("floor_id", "floor_id", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("floor_code", "ชั้น")});
     this.lookUpEditFloorId.Size = new System.Drawing.Size(133, 20);
     this.lookUpEditFloorId.TabIndex = 111;
     //
     // labelControlFloor
     //
     this.labelControlFloor.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlFloor.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlFloor.Location = new System.Drawing.Point(23, 88);
     this.labelControlFloor.Name = "labelControlFloor";
     this.labelControlFloor.Size = new System.Drawing.Size(81, 13);
     this.labelControlFloor.TabIndex = 110;
     this.labelControlFloor.Text = "ชั้น :";
     //
     // textEditRoomLabel
     //
     this.textEditRoomLabel.Enabled = false;
     this.textEditRoomLabel.Location = new System.Drawing.Point(107, 29);
     this.textEditRoomLabel.Name = "textEditRoomLabel";
     this.textEditRoomLabel.Size = new System.Drawing.Size(133, 20);
     this.textEditRoomLabel.TabIndex = 107;
     //
     // labelControlRoomName
     //
     this.labelControlRoomName.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRoomName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRoomName.Location = new System.Drawing.Point(23, 36);
     this.labelControlRoomName.Name = "labelControlRoomName";
     this.labelControlRoomName.Size = new System.Drawing.Size(81, 13);
     this.labelControlRoomName.TabIndex = 106;
     this.labelControlRoomName.Text = "ชื่อห้อง :";
     //
     // lookUpEditRoomTypeId
     //
     this.lookUpEditRoomTypeId.Enabled = false;
     this.lookUpEditRoomTypeId.Location = new System.Drawing.Point(107, 107);
     this.lookUpEditRoomTypeId.Name = "lookUpEditRoomTypeId";
     this.lookUpEditRoomTypeId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditRoomTypeId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("roomtype_label", "ประเภทห้อง"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("roomtype_id", "roomtype_id", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lookUpEditRoomTypeId.Size = new System.Drawing.Size(133, 20);
     this.lookUpEditRoomTypeId.TabIndex = 105;
     //
     // lookUpEditBuildingId
     //
     this.lookUpEditBuildingId.Enabled = false;
     this.lookUpEditBuildingId.Location = new System.Drawing.Point(107, 55);
     this.lookUpEditBuildingId.Name = "lookUpEditBuildingId";
     this.lookUpEditBuildingId.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditBuildingId.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("building_label", "ชื่ออาคาร"),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("building_id", "building_id", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default)});
     this.lookUpEditBuildingId.Size = new System.Drawing.Size(133, 20);
     this.lookUpEditBuildingId.TabIndex = 104;
     //
     // labelControlRoomType
     //
     this.labelControlRoomType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRoomType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRoomType.Location = new System.Drawing.Point(23, 114);
     this.labelControlRoomType.Name = "labelControlRoomType";
     this.labelControlRoomType.Size = new System.Drawing.Size(81, 13);
     this.labelControlRoomType.TabIndex = 102;
     this.labelControlRoomType.Text = "ประเภทห้อง :";
     //
     // labelControlBuilding
     //
     this.labelControlBuilding.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlBuilding.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlBuilding.Location = new System.Drawing.Point(23, 62);
     this.labelControlBuilding.Name = "labelControlBuilding";
     this.labelControlBuilding.Size = new System.Drawing.Size(81, 13);
     this.labelControlBuilding.TabIndex = 101;
     this.labelControlBuilding.Text = "อาคาร :";
     //
     // groupControlRental
     //
     this.groupControlRental.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlRental.AppearanceCaption.Options.UseFont = true;
     this.groupControlRental.Controls.Add(this.labelControl5);
     this.groupControlRental.Controls.Add(this.labelControl23);
     this.groupControlRental.Controls.Add(this.labelControl22);
     this.groupControlRental.Controls.Add(this.labelControl21);
     this.groupControlRental.Controls.Add(this.textEditTenantName);
     this.groupControlRental.Controls.Add(this.labelControlSurname);
     this.groupControlRental.Controls.Add(this.labelControlName);
     this.groupControlRental.Controls.Add(this.textEditTenantSurname);
     this.groupControlRental.Controls.Add(this.labelControlTitle);
     this.groupControlRental.Controls.Add(this.textEditPrefix);
     this.groupControlRental.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlRental.Location = new System.Drawing.Point(0, 85);
     this.groupControlRental.Name = "groupControlRental";
     this.groupControlRental.Size = new System.Drawing.Size(607, 84);
     this.groupControlRental.TabIndex = 352;
     this.groupControlRental.Text = "ผู้เช่า";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl5.Location = new System.Drawing.Point(605, 298);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(6, 13);
     this.labelControl5.TabIndex = 444;
     this.labelControl5.Text = "*";
     //
     // labelControl23
     //
     this.labelControl23.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl23.Location = new System.Drawing.Point(605, 167);
     this.labelControl23.Name = "labelControl23";
     this.labelControl23.Size = new System.Drawing.Size(6, 13);
     this.labelControl23.TabIndex = 443;
     this.labelControl23.Text = "*";
     //
     // labelControl22
     //
     this.labelControl22.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl22.Location = new System.Drawing.Point(605, 120);
     this.labelControl22.Name = "labelControl22";
     this.labelControl22.Size = new System.Drawing.Size(6, 13);
     this.labelControl22.TabIndex = 441;
     this.labelControl22.Text = "*";
     //
     // labelControl21
     //
     this.labelControl21.Appearance.ForeColor = System.Drawing.Color.Red;
     this.labelControl21.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControl21.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl21.Location = new System.Drawing.Point(605, 94);
     this.labelControl21.Name = "labelControl21";
     this.labelControl21.Size = new System.Drawing.Size(6, 13);
     this.labelControl21.TabIndex = 440;
     this.labelControl21.Text = "*";
     //
     // textEditTenantName
     //
     this.textEditTenantName.EditValue = "";
     this.textEditTenantName.Enabled = false;
     this.textEditTenantName.Location = new System.Drawing.Point(107, 57);
     this.textEditTenantName.Name = "textEditTenantName";
     this.textEditTenantName.Properties.MaxLength = 200;
     this.textEditTenantName.Size = new System.Drawing.Size(133, 20);
     this.textEditTenantName.TabIndex = 412;
     //
     // labelControlSurname
     //
     this.labelControlSurname.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlSurname.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlSurname.Location = new System.Drawing.Point(310, 64);
     this.labelControlSurname.Name = "labelControlSurname";
     this.labelControlSurname.Size = new System.Drawing.Size(84, 13);
     this.labelControlSurname.TabIndex = 424;
     this.labelControlSurname.Text = "นามสกุล :";
     //
     // labelControlName
     //
     this.labelControlName.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlName.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlName.Location = new System.Drawing.Point(20, 64);
     this.labelControlName.Name = "labelControlName";
     this.labelControlName.Size = new System.Drawing.Size(84, 13);
     this.labelControlName.TabIndex = 423;
     this.labelControlName.Text = "ชื่อ :";
     //
     // textEditTenantSurname
     //
     this.textEditTenantSurname.EditValue = "";
     this.textEditTenantSurname.Enabled = false;
     this.textEditTenantSurname.Location = new System.Drawing.Point(397, 57);
     this.textEditTenantSurname.Name = "textEditTenantSurname";
     this.textEditTenantSurname.Properties.MaxLength = 200;
     this.textEditTenantSurname.Size = new System.Drawing.Size(163, 20);
     this.textEditTenantSurname.TabIndex = 413;
     //
     // labelControlTitle
     //
     this.labelControlTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlTitle.Location = new System.Drawing.Point(20, 38);
     this.labelControlTitle.Name = "labelControlTitle";
     this.labelControlTitle.Size = new System.Drawing.Size(84, 13);
     this.labelControlTitle.TabIndex = 422;
     this.labelControlTitle.Text = "คำนำหน้า :";
     //
     // textEditPrefix
     //
     this.textEditPrefix.EditValue = "";
     this.textEditPrefix.Enabled = false;
     this.textEditPrefix.Location = new System.Drawing.Point(107, 31);
     this.textEditPrefix.Name = "textEditPrefix";
     this.textEditPrefix.Properties.MaxLength = 50;
     this.textEditPrefix.Size = new System.Drawing.Size(133, 20);
     this.textEditPrefix.TabIndex = 411;
     //
     // groupControlCheckOut
     //
     this.groupControlCheckOut.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.groupControlCheckOut.AppearanceCaption.Options.UseFont = true;
     this.groupControlCheckOut.Controls.Add(this.lookUpEditContractType);
     this.groupControlCheckOut.Controls.Add(this.dateEditCheckInDate);
     this.groupControlCheckOut.Controls.Add(this.labelControlMonth);
     this.groupControlCheckOut.Controls.Add(this.labelControlMinimum);
     this.groupControlCheckOut.Controls.Add(this.labelControlRentType);
     this.groupControlCheckOut.Controls.Add(this.labelControlContractDate);
     this.groupControlCheckOut.Controls.Add(this.labelControlContractNo);
     this.groupControlCheckOut.Controls.Add(this.textEditMinimum);
     this.groupControlCheckOut.Controls.Add(this.textEditContractNo);
     this.groupControlCheckOut.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupControlCheckOut.Location = new System.Drawing.Point(0, 0);
     this.groupControlCheckOut.Name = "groupControlCheckOut";
     this.groupControlCheckOut.Size = new System.Drawing.Size(607, 85);
     this.groupControlCheckOut.TabIndex = 3;
     this.groupControlCheckOut.Text = "ย้ายออก";
     //
     // lookUpEditContractType
     //
     this.lookUpEditContractType.Enabled = false;
     this.lookUpEditContractType.Location = new System.Drawing.Point(107, 56);
     this.lookUpEditContractType.Name = "lookUpEditContractType";
     this.lookUpEditContractType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lookUpEditContractType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("contracttype_id", "รหัสประเภทสัญญา", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("contracttype_label", "ประเภทสัญญา")});
     this.lookUpEditContractType.Size = new System.Drawing.Size(133, 20);
     this.lookUpEditContractType.TabIndex = 444;
     //
     // dateEditCheckInDate
     //
     this.dateEditCheckInDate.EditValue = new System.DateTime(2013, 3, 8, 0, 0, 0, 0);
     this.dateEditCheckInDate.Enabled = false;
     this.dateEditCheckInDate.Location = new System.Drawing.Point(398, 31);
     this.dateEditCheckInDate.Name = "dateEditCheckInDate";
     this.dateEditCheckInDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEditCheckInDate.Properties.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.dateEditCheckInDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditCheckInDate.Properties.EditFormat.FormatString = "dd/MM/yyyy";
     this.dateEditCheckInDate.Properties.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.dateEditCheckInDate.Properties.Mask.EditMask = "dd/MM/yyyy";
     this.dateEditCheckInDate.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.dateEditCheckInDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEditCheckInDate.Size = new System.Drawing.Size(162, 20);
     this.dateEditCheckInDate.TabIndex = 443;
     //
     // labelControlMonth
     //
     this.labelControlMonth.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMonth.Location = new System.Drawing.Point(563, 63);
     this.labelControlMonth.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlMonth.Name = "labelControlMonth";
     this.labelControlMonth.Size = new System.Drawing.Size(37, 13);
     this.labelControlMonth.TabIndex = 441;
     this.labelControlMonth.Text = "เดือน";
     //
     // labelControlMinimum
     //
     this.labelControlMinimum.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlMinimum.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlMinimum.Location = new System.Drawing.Point(261, 59);
     this.labelControlMinimum.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlMinimum.Name = "labelControlMinimum";
     this.labelControlMinimum.Size = new System.Drawing.Size(134, 13);
     this.labelControlMinimum.TabIndex = 442;
     this.labelControlMinimum.Text = "ระยะเวลาเช่าขั้นต่ำ :";
     //
     // labelControlRentType
     //
     this.labelControlRentType.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlRentType.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlRentType.Location = new System.Drawing.Point(5, 63);
     this.labelControlRentType.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlRentType.Name = "labelControlRentType";
     this.labelControlRentType.Size = new System.Drawing.Size(99, 13);
     this.labelControlRentType.TabIndex = 440;
     this.labelControlRentType.Text = "ประเภทการเช่า :";
     //
     // labelControlContractDate
     //
     this.labelControlContractDate.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlContractDate.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlContractDate.Location = new System.Drawing.Point(296, 38);
     this.labelControlContractDate.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlContractDate.Name = "labelControlContractDate";
     this.labelControlContractDate.Size = new System.Drawing.Size(99, 13);
     this.labelControlContractDate.TabIndex = 438;
     this.labelControlContractDate.Text = "วันที่ทำสัญญา :";
     //
     // labelControlContractNo
     //
     this.labelControlContractNo.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.labelControlContractNo.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControlContractNo.Location = new System.Drawing.Point(5, 38);
     this.labelControlContractNo.Margin = new System.Windows.Forms.Padding(0);
     this.labelControlContractNo.Name = "labelControlContractNo";
     this.labelControlContractNo.Size = new System.Drawing.Size(99, 13);
     this.labelControlContractNo.TabIndex = 439;
     this.labelControlContractNo.Text = "เลขที่สัญญา :";
     //
     // textEditMinimum
     //
     this.textEditMinimum.EditValue = "0";
     this.textEditMinimum.Enabled = false;
     this.textEditMinimum.Location = new System.Drawing.Point(398, 56);
     this.textEditMinimum.Name = "textEditMinimum";
     this.textEditMinimum.Properties.Appearance.Options.UseTextOptions = true;
     this.textEditMinimum.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.textEditMinimum.Properties.MaxLength = 2;
     this.textEditMinimum.Size = new System.Drawing.Size(162, 20);
     this.textEditMinimum.TabIndex = 436;
     //
     // textEditContractNo
     //
     this.textEditContractNo.EditValue = "";
     this.textEditContractNo.Enabled = false;
     this.textEditContractNo.Location = new System.Drawing.Point(107, 31);
     this.textEditContractNo.Name = "textEditContractNo";
     this.textEditContractNo.Size = new System.Drawing.Size(133, 20);
     this.textEditContractNo.TabIndex = 437;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.bttPrintInvoice);
     this.panelControl1.Controls.Add(this.bttPrintInsurance);
     this.panelControl1.Controls.Add(this.textEditRoomStatus);
     this.panelControl1.Controls.Add(this.textEditCheckInId);
     this.panelControl1.Controls.Add(this.textEditTenantId);
     this.panelControl1.Controls.Add(this.textEditRoomId);
     this.panelControl1.Controls.Add(this.labelControl4);
     this.panelControl1.Controls.Add(this.textEditRoomCode);
     this.panelControl1.Controls.Add(this.bttEdit);
     this.panelControl1.Controls.Add(this.bttCancel);
     this.panelControl1.Controls.Add(this.bttSave);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 568);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(624, 66);
     this.panelControl1.TabIndex = 77;
     //
     // bttPrintInvoice
     //
     this.bttPrintInvoice.Image = ((System.Drawing.Image)(resources.GetObject("bttPrintInvoice.Image")));
     this.bttPrintInvoice.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttPrintInvoice.Location = new System.Drawing.Point(5, 5);
     this.bttPrintInvoice.Name = "bttPrintInvoice";
     this.bttPrintInvoice.Size = new System.Drawing.Size(123, 55);
     this.bttPrintInvoice.TabIndex = 364;
     this.bttPrintInvoice.Text = "สร้างใบแจ้งหนี้";
     //
     // bttPrintInsurance
     //
     this.bttPrintInsurance.Image = ((System.Drawing.Image)(resources.GetObject("bttPrintInsurance.Image")));
     this.bttPrintInsurance.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttPrintInsurance.Location = new System.Drawing.Point(134, 5);
     this.bttPrintInsurance.Name = "bttPrintInsurance";
     this.bttPrintInsurance.Size = new System.Drawing.Size(127, 55);
     this.bttPrintInsurance.TabIndex = 363;
     this.bttPrintInsurance.Text = "สร้างใบคืนเงินประกัน";
     //
     // textEditRoomStatus
     //
     this.textEditRoomStatus.EditValue = "";
     this.textEditRoomStatus.Enabled = false;
     this.textEditRoomStatus.Location = new System.Drawing.Point(324, 19);
     this.textEditRoomStatus.Name = "textEditRoomStatus";
     this.textEditRoomStatus.Size = new System.Drawing.Size(10, 20);
     this.textEditRoomStatus.TabIndex = 362;
     this.textEditRoomStatus.Visible = false;
     //
     // textEditCheckInId
     //
     this.textEditCheckInId.EditValue = "";
     this.textEditCheckInId.Enabled = false;
     this.textEditCheckInId.Location = new System.Drawing.Point(308, 19);
     this.textEditCheckInId.Name = "textEditCheckInId";
     this.textEditCheckInId.Size = new System.Drawing.Size(10, 20);
     this.textEditCheckInId.TabIndex = 362;
     this.textEditCheckInId.Visible = false;
     //
     // textEditTenantId
     //
     this.textEditTenantId.EditValue = "";
     this.textEditTenantId.Enabled = false;
     this.textEditTenantId.Location = new System.Drawing.Point(345, 19);
     this.textEditTenantId.Name = "textEditTenantId";
     this.textEditTenantId.Size = new System.Drawing.Size(39, 20);
     this.textEditTenantId.TabIndex = 361;
     this.textEditTenantId.Visible = false;
     //
     // textEditRoomId
     //
     this.textEditRoomId.EditValue = "";
     this.textEditRoomId.Enabled = false;
     this.textEditRoomId.Location = new System.Drawing.Point(292, 19);
     this.textEditRoomId.Name = "textEditRoomId";
     this.textEditRoomId.Size = new System.Drawing.Size(10, 20);
     this.textEditRoomId.TabIndex = 360;
     this.textEditRoomId.Visible = false;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(273, 44);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(45, 13);
     this.labelControl4.TabIndex = 359;
     this.labelControl4.Text = "รหัสห้อง :";
     this.labelControl4.Visible = false;
     //
     // textEditRoomCode
     //
     this.textEditRoomCode.EditValue = "";
     this.textEditRoomCode.Enabled = false;
     this.textEditRoomCode.Location = new System.Drawing.Point(260, 19);
     this.textEditRoomCode.Name = "textEditRoomCode";
     this.textEditRoomCode.Size = new System.Drawing.Size(13, 20);
     this.textEditRoomCode.TabIndex = 358;
     this.textEditRoomCode.Visible = false;
     //
     // bttEdit
     //
     this.bttEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttEdit.Image = global::DXWindowsApplication2.Properties.Resources.edit;
     this.bttEdit.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttEdit.Location = new System.Drawing.Point(397, 5);
     this.bttEdit.Name = "bttEdit";
     this.bttEdit.Size = new System.Drawing.Size(70, 55);
     this.bttEdit.TabIndex = 19;
     this.bttEdit.Text = "แก้ไขข้อมูล";
     //
     // bttCancel
     //
     this.bttCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttCancel.Enabled = false;
     this.bttCancel.Image = global::DXWindowsApplication2.Properties.Resources.Close;
     this.bttCancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttCancel.Location = new System.Drawing.Point(549, 5);
     this.bttCancel.Name = "bttCancel";
     this.bttCancel.Size = new System.Drawing.Size(70, 55);
     this.bttCancel.TabIndex = 22;
     this.bttCancel.Text = "ยกเลิก";
     //
     // bttSave
     //
     this.bttSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.bttSave.Enabled = false;
     this.bttSave.Image = global::DXWindowsApplication2.Properties.Resources.preview;
     this.bttSave.ImageLocation = DevExpress.XtraEditors.ImageLocation.TopCenter;
     this.bttSave.Location = new System.Drawing.Point(473, 5);
     this.bttSave.Name = "bttSave";
     this.bttSave.Size = new System.Drawing.Size(70, 55);
     this.bttSave.TabIndex = 21;
     this.bttSave.Text = "ปิดสัญญา";
     this.bttSave.Click += new System.EventHandler(this.bttSave_Click);
     //
     // RoomCheckOut
     //
     this.Appearance.BackColor = System.Drawing.Color.White;
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl2);
     this.Name = "RoomCheckOut";
     this.Padding = new System.Windows.Forms.Padding(7);
     this.Size = new System.Drawing.Size(1310, 648);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlList)).EndInit();
     this.groupControlList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlRoom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.xtraScrollableControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupExpense)).EndInit();
     this.groupExpense.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlItem)).EndInit();
     this.groupControlItem.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlItem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewItemList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     this.panelControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRefund.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlGeneralCost)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewGeneralCost)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlCalculate)).EndInit();
     this.panelControlCalculate.ResumeLayout(false);
     this.panelControlCalculate.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditInvoiceDueDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditInvoiceDueDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPricePerDay)).EndInit();
     this.panelControlPricePerDay.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditChargePrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLeaveDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLeaveDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditCharge.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlMeter)).EndInit();
     this.groupControlMeter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditPhonePrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEndMeter)).EndInit();
     this.groupControlEndMeter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditWMeterPresent.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditEMeterPresent.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlEndDate)).EndInit();
     this.groupControlEndDate.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPresentDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPresentDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPresentDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPresentDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneStart.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneStart.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneEnd.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditPhoneEnd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditWaterMeterId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditElectricMeterId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlStartMeter)).EndInit();
     this.groupControlStartMeter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditWMeterPreviousUnit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditEMeterPreviousUnit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlStartDate)).EndInit();
     this.groupControlStartDate.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPreviousDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditWMeterPreviousDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPreviousDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditEMeterPreviousDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupRoomInfo)).EndInit();
     this.groupRoomInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomPrice.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditInsurerate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditAdvance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditFloorId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomLabel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditRoomTypeId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditBuildingId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlRental)).EndInit();
     this.groupControlRental.ResumeLayout(false);
     this.groupControlRental.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantSurname.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditPrefix.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlCheckOut)).EndInit();
     this.groupControlCheckOut.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditContractType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditCheckInDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditCheckInDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditMinimum.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditContractNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomStatus.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditCheckInId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditTenantId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomId.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEditRoomCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #24
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.simpleButton1            = new DevExpress.XtraEditors.SimpleButton();
     this.txtPromotionCode         = new System.Windows.Forms.Label();
     this.label3                   = new System.Windows.Forms.Label();
     this.textEdit1                = new DevExpress.XtraEditors.TextEdit();
     this.textEdit2                = new DevExpress.XtraEditors.TextEdit();
     this.gridControl1             = new DevExpress.XtraGrid.GridControl();
     this.gridView1                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn4              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.simpleButton2            = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton1
     //
     this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton1.Enabled     = false;
     this.simpleButton1.Location    = new System.Drawing.Point(120, 306);
     this.simpleButton1.Name        = "simpleButton1";
     this.simpleButton1.TabIndex    = 51;
     this.simpleButton1.Text        = "Save";
     this.simpleButton1.Click      += new System.EventHandler(this.simpleButton1_Click);
     //
     // txtPromotionCode
     //
     this.txtPromotionCode.Location = new System.Drawing.Point(8, 8);
     this.txtPromotionCode.Name     = "txtPromotionCode";
     this.txtPromotionCode.Size     = new System.Drawing.Size(112, 23);
     this.txtPromotionCode.TabIndex = 39;
     this.txtPromotionCode.Text     = "Promotion Code";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(8, 32);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(112, 23);
     this.label3.TabIndex = 42;
     this.label3.Text     = "ReceiptNo";
     //
     // textEdit1
     //
     this.textEdit1.EditValue = "";
     this.textEdit1.Location  = new System.Drawing.Point(120, 8);
     this.textEdit1.Name      = "textEdit1";
     //
     // textEdit1.Properties
     //
     this.textEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.textEdit1.Size     = new System.Drawing.Size(104, 20);
     this.textEdit1.TabIndex = 52;
     //
     // textEdit2
     //
     this.textEdit2.EditValue = "";
     this.textEdit2.Location  = new System.Drawing.Point(120, 32);
     this.textEdit2.Name      = "textEdit2";
     //
     // textEdit2.Properties
     //
     this.textEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.textEdit2.Size     = new System.Drawing.Size(104, 20);
     this.textEdit2.TabIndex = 53;
     //
     // gridControl1
     //
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(120, 60);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit2
     });
     this.gridControl1.Size     = new System.Drawing.Size(456, 234);
     this.gridControl1.TabIndex = 55;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn3,
         this.gridColumn2,
         this.gridColumn4
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Item Code";
     this.gridColumn1.FieldName    = "strItemCode";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "Promotion Code";
     this.gridColumn3.FieldName    = "strPromotionCode";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 1;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "OutStock";
     this.gridColumn2.ColumnEdit   = this.repositoryItemCheckEdit2;
     this.gridColumn2.FieldName    = "OutStock";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 2;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name       = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "PromotionType";
     this.gridColumn4.FieldName    = "PromotionType";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // simpleButton2
     //
     this.simpleButton2.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton2.Location    = new System.Drawing.Point(204, 306);
     this.simpleButton2.Name        = "simpleButton2";
     this.simpleButton2.TabIndex    = 56;
     this.simpleButton2.Text        = "Cancel";
     this.simpleButton2.Click      += new System.EventHandler(this.simpleButton2_Click);
     //
     // frmNewPromotionAdjustment
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(582, 335);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.textEdit2);
     this.Controls.Add(this.textEdit1);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.txtPromotionCode);
     this.Controls.Add(this.label3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmNewPromotionAdjustment";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "New Adjustment";
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     this.ResumeLayout(false);
 }
        public void Initialize( )
        {
            treeList1.OptionsBehavior.ShowEditorOnMouseUp       = false;
            treeList1.OptionsBehavior.CloseEditorOnLostFocus    = true;
            treeList1.OptionsBehavior.ImmediateEditor           = false;
            treeList1.OptionsSelection.UseIndicatorForSelection = false;
            treeList1.OptionsView.ShowColumns      = true;
            treeList1.OptionsView.ShowVertLines    = false;
            treeList1.OptionsView.ShowHorzLines    = false;
            treeList1.OptionsView.ShowFocusedFrame = false;
            treeList1.OptionsBehavior.DragNodes    = false;

            #region Columns
            DevExpress.XtraTreeList.Columns.TreeListColumn colField = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            colField.Caption                 = "Field";
            colField.FieldName               = "FieldName";
            colField.Visible                 = true;
            colField.VisibleIndex            = 0;
            colField.OptionsColumn.AllowEdit = false;

            DevExpress.XtraTreeList.Columns.TreeListColumn colCheck = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            colCheck.Caption                 = "Select";
            colCheck.FieldName               = "Selected";
            colCheck.Visible                 = true;
            colCheck.VisibleIndex            = 0;
            colCheck.OptionsColumn.AllowEdit = true;
            colCheck.Width = 20;

            repoCheck           = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            colCheck.ColumnEdit = repoCheck;


            treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] { colCheck, colField });

            #endregion

            ABCCommonTreeListNode root = new ABCCommonTreeListNode(null, null);
            foreach (String strFieldName in DataStructureProvider.DataTablesList[this.TableName].ColumnsList.Keys)
            {
                DataStructInfo dataInfo = new DataStructInfo(TableName, strFieldName);
                new ABCCommonTreeListNode(root, dataInfo);
                lstData.Add(dataInfo);
            }

            treeList1.DataSource = root;
            treeList1.RefreshDataSource();
            treeList1.Refresh();
            if (treeList1.Nodes.Count > 0)
            {
                treeList1.FocusedNode = treeList1.Nodes[0];
            }

            InitOldResult(root);

            treeList1.ExpandAll();
            colCheck.Width = 20;

            treeList1.MouseClick         += new MouseEventHandler(treeList1_MouseClick);
            treeList1.CustomDrawNodeCell += new CustomDrawNodeCellEventHandler(treeList1_CustomDrawNodeCell);
            repoCheck.EditValueChanged   += new EventHandler(repoCheck_EditValueChanged);

            InitPopupMenu();
        }
 /// <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(frmPhanQuyen));
     DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridIsUse              = new DevExpress.XtraGrid.GridControl();
     this.contextMenuRemove      = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.btnXoaQuyen            = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2     = new System.Windows.Forms.ToolStripSeparator();
     this.btnChonTatCaRemove     = new System.Windows.Forms.ToolStripMenuItem();
     this.btnBoChonTatCaRemove   = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3     = new System.Windows.Forms.ToolStripSeparator();
     this.btnSaoChepQuyen        = new System.Windows.Forms.ToolStripMenuItem();
     this.bandedgirdIsUse        = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand2              = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridNotUseDetail       = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridNotUse             = new DevExpress.XtraGrid.GridControl();
     this.contextMenuAdd         = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.btnThemQuyen           = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1     = new System.Windows.Forms.ToolStripSeparator();
     this.btnChonTatCaAdd        = new System.Windows.Forms.ToolStripMenuItem();
     this.btnBoChonTatCaAdd      = new System.Windows.Forms.ToolStripMenuItem();
     this.bandedgridNotUse       = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1              = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeAccount            = new DevExpress.XtraTreeList.TreeList();
     this.contextMenuCopy        = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.btnDanQuyen            = new System.Windows.Forms.ToolStripMenuItem();
     this.imageCollection1       = new DevExpress.Utils.ImageCollection(this.components);
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeListColumn1        = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2        = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.colChecUsekAll         = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn2      = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn3      = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn4      = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.bandedGridColumn1      = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.PicNhanVien            = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.checkValue             = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colID                      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colObject_ID               = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colObject_Name             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDescription             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCheckAllNotUse          = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colIsObject_ID             = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colIsObject_Name           = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.colIsObject_Description    = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.checkValueNotUse           = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridIsUse)).BeginInit();
     this.contextMenuRemove.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bandedgirdIsUse)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridNotUseDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridNotUse)).BeginInit();
     this.contextMenuAdd.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bandedgridNotUse)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeAccount)).BeginInit();
     this.contextMenuCopy.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PicNhanVien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkValue)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkValueNotUse)).BeginInit();
     this.SuspendLayout();
     //
     // gridIsUse
     //
     this.gridIsUse.ContextMenuStrip = this.contextMenuRemove;
     this.gridIsUse.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.gridIsUse.Font             = new System.Drawing.Font("Tahoma", 9F);
     this.gridIsUse.Location         = new System.Drawing.Point(0, 0);
     this.gridIsUse.MainView         = this.bandedgirdIsUse;
     this.gridIsUse.Name             = "gridIsUse";
     this.gridIsUse.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemPictureEdit1,
         this.checkValueNotUse
     });
     this.gridIsUse.Size                 = new System.Drawing.Size(389, 400);
     this.gridIsUse.TabIndex             = 2;
     this.gridIsUse.UseEmbeddedNavigator = true;
     this.gridIsUse.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.bandedgirdIsUse
     });
     //
     // contextMenuRemove
     //
     this.contextMenuRemove.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.btnXoaQuyen,
         this.toolStripMenuItem2,
         this.btnChonTatCaRemove,
         this.btnBoChonTatCaRemove,
         this.toolStripMenuItem3,
         this.btnSaoChepQuyen
     });
     this.contextMenuRemove.Name = "contextMenuRemove";
     this.contextMenuRemove.Size = new System.Drawing.Size(151, 104);
     //
     // btnXoaQuyen
     //
     this.btnXoaQuyen.Name   = "btnXoaQuyen";
     this.btnXoaQuyen.Size   = new System.Drawing.Size(152, 22);
     this.btnXoaQuyen.Text   = "Xóa Quyền";
     this.btnXoaQuyen.Click += new System.EventHandler(this.btnXoaQuyen_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(147, 6);
     //
     // btnChonTatCaRemove
     //
     this.btnChonTatCaRemove.Name = "btnChonTatCaRemove";
     this.btnChonTatCaRemove.Size = new System.Drawing.Size(150, 22);
     this.btnChonTatCaRemove.Text = "Chọn tất cả";
     //
     // btnBoChonTatCaRemove
     //
     this.btnBoChonTatCaRemove.Name   = "btnBoChonTatCaRemove";
     this.btnBoChonTatCaRemove.Size   = new System.Drawing.Size(152, 22);
     this.btnBoChonTatCaRemove.Text   = "Bỏ chọn tất cả";
     this.btnBoChonTatCaRemove.Click += new System.EventHandler(this.btnBoChonTatCaRemove_Click);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(147, 6);
     //
     // btnSaoChepQuyen
     //
     this.btnSaoChepQuyen.Name = "btnSaoChepQuyen";
     this.btnSaoChepQuyen.Size = new System.Drawing.Size(150, 22);
     this.btnSaoChepQuyen.Text = "Copy quyền";
     //
     // bandedgirdIsUse
     //
     this.bandedgirdIsUse.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
         this.gridBand2
     });
     this.bandedgirdIsUse.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
         this.colCheckAllNotUse,
         this.colIsObject_ID,
         this.colIsObject_Name,
         this.colIsObject_Description
     });
     this.bandedgirdIsUse.GridControl = this.gridIsUse;
     this.bandedgirdIsUse.GroupCount  = 1;
     this.bandedgirdIsUse.Name        = "bandedgirdIsUse";
     this.bandedgirdIsUse.OptionsCustomization.AllowRowSizing = true;
     this.bandedgirdIsUse.OptionsView.RowAutoHeight           = true;
     this.bandedgirdIsUse.OptionsView.ShowAutoFilterRow       = true;
     this.bandedgirdIsUse.OptionsView.ShowGroupPanel          = false;
     this.bandedgirdIsUse.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
         new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colIsObject_Description, DevExpress.Data.ColumnSortOrder.Ascending)
     });
     //
     // gridBand2
     //
     this.gridBand2.AppearanceHeader.Font                   = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gridBand2.AppearanceHeader.Options.UseFont        = true;
     this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand2.Caption = "Phân Quyền Đã Cấp";
     this.gridBand2.Columns.Add(this.colCheckAllNotUse);
     this.gridBand2.Columns.Add(this.colIsObject_ID);
     this.gridBand2.Columns.Add(this.colIsObject_Name);
     this.gridBand2.Columns.Add(this.colIsObject_Description);
     this.gridBand2.Name         = "gridBand2";
     this.gridBand2.VisibleIndex = 0;
     this.gridBand2.Width        = 663;
     //
     // gridNotUseDetail
     //
     this.gridNotUseDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.colID,
         this.colObject_ID,
         this.colObject_Name,
         this.colDescription
     });
     this.gridNotUseDetail.GridControl = this.gridNotUse;
     this.gridNotUseDetail.Name        = "gridNotUseDetail";
     this.gridNotUseDetail.OptionsBehavior.Editable            = false;
     this.gridNotUseDetail.OptionsCustomization.AllowRowSizing = true;
     this.gridNotUseDetail.OptionsView.RowAutoHeight           = true;
     this.gridNotUseDetail.OptionsView.ShowAutoFilterRow       = true;
     this.gridNotUseDetail.OptionsView.ShowGroupPanel          = false;
     //
     // gridNotUse
     //
     this.gridNotUse.ContextMenuStrip = this.contextMenuAdd;
     this.gridNotUse.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.gridNotUse.Font             = new System.Drawing.Font("Tahoma", 9F);
     this.gridNotUse.Location         = new System.Drawing.Point(0, 0);
     this.gridNotUse.MainView         = this.bandedgridNotUse;
     this.gridNotUse.Name             = "gridNotUse";
     this.gridNotUse.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.PicNhanVien,
         this.checkValue
     });
     this.gridNotUse.Size                 = new System.Drawing.Size(385, 400);
     this.gridNotUse.TabIndex             = 2;
     this.gridNotUse.UseEmbeddedNavigator = true;
     this.gridNotUse.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.bandedgridNotUse,
         this.gridNotUseDetail
     });
     //
     // contextMenuAdd
     //
     this.contextMenuAdd.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.btnThemQuyen,
         this.toolStripMenuItem1,
         this.btnChonTatCaAdd,
         this.btnBoChonTatCaAdd
     });
     this.contextMenuAdd.Name = "contextMenuAdd";
     this.contextMenuAdd.Size = new System.Drawing.Size(153, 98);
     //
     // btnThemQuyen
     //
     this.btnThemQuyen.Name   = "btnThemQuyen";
     this.btnThemQuyen.Size   = new System.Drawing.Size(152, 22);
     this.btnThemQuyen.Text   = "Thêm quyền";
     this.btnThemQuyen.Click += new System.EventHandler(this.btnThemQuyen_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(147, 6);
     //
     // btnChonTatCaAdd
     //
     this.btnChonTatCaAdd.Name   = "btnChonTatCaAdd";
     this.btnChonTatCaAdd.Size   = new System.Drawing.Size(152, 22);
     this.btnChonTatCaAdd.Text   = "Chọn tất cả";
     this.btnChonTatCaAdd.Click += new System.EventHandler(this.btnChonTatCaAdd_Click);
     //
     // btnBoChonTatCaAdd
     //
     this.btnBoChonTatCaAdd.Name   = "btnBoChonTatCaAdd";
     this.btnBoChonTatCaAdd.Size   = new System.Drawing.Size(152, 22);
     this.btnBoChonTatCaAdd.Text   = "Bỏ chọn tất cả";
     this.btnBoChonTatCaAdd.Click += new System.EventHandler(this.btnBoChonTatCaAdd_Click);
     //
     // bandedgridNotUse
     //
     this.bandedgridNotUse.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
         this.gridBand1
     });
     this.bandedgridNotUse.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
         this.colChecUsekAll,
         this.bandedGridColumn1,
         this.bandedGridColumn2,
         this.bandedGridColumn3,
         this.bandedGridColumn4
     });
     this.bandedgridNotUse.CustomizationFormBounds = new System.Drawing.Rectangle(532, 384, 222, 212);
     this.bandedgridNotUse.GridControl             = this.gridNotUse;
     this.bandedgridNotUse.GroupCount = 1;
     this.bandedgridNotUse.Name       = "bandedgridNotUse";
     this.bandedgridNotUse.OptionsCustomization.AllowRowSizing = true;
     this.bandedgridNotUse.OptionsView.RowAutoHeight           = true;
     this.bandedgridNotUse.OptionsView.ShowAutoFilterRow       = true;
     this.bandedgridNotUse.OptionsView.ShowGroupPanel          = false;
     this.bandedgridNotUse.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
         new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.bandedGridColumn4, DevExpress.Data.ColumnSortOrder.Ascending)
     });
     //
     // gridBand1
     //
     this.gridBand1.AppearanceHeader.Font                   = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
     this.gridBand1.AppearanceHeader.Options.UseFont        = true;
     this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBand1.Caption = "Phân Quyền Chưa Cấp";
     this.gridBand1.Columns.Add(this.colChecUsekAll);
     this.gridBand1.Columns.Add(this.bandedGridColumn2);
     this.gridBand1.Columns.Add(this.bandedGridColumn3);
     this.gridBand1.Columns.Add(this.bandedGridColumn4);
     this.gridBand1.MinWidth     = 20;
     this.gridBand1.Name         = "gridBand1";
     this.gridBand1.VisibleIndex = 0;
     this.gridBand1.Width        = 660;
     //
     // 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.treeAccount);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.splitContainerControl2);
     this.splitContainerControl1.Panel2.Text      = "Panel2";
     this.splitContainerControl1.Size             = new System.Drawing.Size(931, 400);
     this.splitContainerControl1.SplitterPosition = 147;
     this.splitContainerControl1.TabIndex         = 3;
     this.splitContainerControl1.Text             = "splitContainerControl1";
     //
     // treeAccount
     //
     this.treeAccount.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
         this.treeListColumn1,
         this.treeListColumn2
     });
     this.treeAccount.ContextMenuStrip        = this.contextMenuCopy;
     this.treeAccount.CustomizationFormBounds = new System.Drawing.Rectangle(1055, 487, 216, 178);
     this.treeAccount.Dock                     = System.Windows.Forms.DockStyle.Fill;
     this.treeAccount.Font                     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.treeAccount.KeyFieldName             = "";
     this.treeAccount.Location                 = new System.Drawing.Point(0, 0);
     this.treeAccount.Name                     = "treeAccount";
     this.treeAccount.OptionsBehavior.Editable = false;
     this.treeAccount.OptionsBehavior.PopulateServiceColumns = true;
     this.treeAccount.OptionsLayout.AddNewColumns            = false;
     this.treeAccount.OptionsSelection.InvertSelection       = true;
     this.treeAccount.OptionsView.ShowColumns   = false;
     this.treeAccount.OptionsView.ShowHorzLines = false;
     this.treeAccount.OptionsView.ShowIndicator = false;
     this.treeAccount.OptionsView.ShowVertLines = false;
     this.treeAccount.ParentFieldName           = "";
     this.treeAccount.RootValue       = null;
     this.treeAccount.SelectImageList = this.imageCollection1;
     this.treeAccount.Size            = new System.Drawing.Size(147, 400);
     this.treeAccount.TabIndex        = 1;
     this.treeAccount.Click          += new System.EventHandler(this.treeAccount_Click);
     //
     // contextMenuCopy
     //
     this.contextMenuCopy.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.btnDanQuyen
     });
     this.contextMenuCopy.Name = "contextMenuCopy";
     this.contextMenuCopy.Size = new System.Drawing.Size(141, 26);
     //
     // btnDanQuyen
     //
     this.btnDanQuyen.Name = "btnDanQuyen";
     this.btnDanQuyen.Size = new System.Drawing.Size(140, 22);
     this.btnDanQuyen.Text = "Paste Quyền";
     //
     // imageCollection1
     //
     this.imageCollection1.ImageSize   = new System.Drawing.Size(22, 22);
     this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.None;
     this.splitContainerControl2.Location   = new System.Drawing.Point(0, 0);
     this.splitContainerControl2.Name       = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.gridNotUse);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.gridIsUse);
     this.splitContainerControl2.Panel2.Text      = "Panel2";
     this.splitContainerControl2.Size             = new System.Drawing.Size(779, 400);
     this.splitContainerControl2.SplitterPosition = 385;
     this.splitContainerControl2.TabIndex         = 3;
     this.splitContainerControl2.Text             = "splitContainerControl2";
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption   = "tài khoản";
     this.treeListColumn1.FieldName = "tài khoản";
     this.treeListColumn1.MinWidth  = 114;
     this.treeListColumn1.Name      = "treeListColumn1";
     this.treeListColumn1.OptionsColumn.AllowEdit = false;
     this.treeListColumn1.OptionsColumn.AllowMove = false;
     this.treeListColumn1.Visible      = true;
     this.treeListColumn1.VisibleIndex = 0;
     this.treeListColumn1.Width        = 114;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption   = "Value";
     this.treeListColumn2.FieldName = "Value";
     this.treeListColumn2.Name      = "treeListColumn2";
     //
     // colChecUsekAll
     //
     repositoryItemCheckEdit1.AutoHeight           = false;
     repositoryItemCheckEdit1.Name                 = "checkValue";
     this.colChecUsekAll.ColumnEdit                = repositoryItemCheckEdit1;
     this.colChecUsekAll.FieldName                 = "selectvalue";
     this.colChecUsekAll.Name                      = "colChecUsekAll";
     this.colChecUsekAll.OptionsColumn.ShowCaption = false;
     this.colChecUsekAll.Visible                   = true;
     this.colChecUsekAll.Width                     = 41;
     //
     // bandedGridColumn2
     //
     this.bandedGridColumn2.Caption   = "Object_ID";
     this.bandedGridColumn2.FieldName = "Object_ID";
     this.bandedGridColumn2.Name      = "bandedGridColumn2";
     this.bandedGridColumn2.OptionsColumn.AllowEdit  = false;
     this.bandedGridColumn2.OptionsColumn.FixedWidth = true;
     this.bandedGridColumn2.Visible = true;
     this.bandedGridColumn2.Width   = 134;
     //
     // bandedGridColumn3
     //
     this.bandedGridColumn3.Caption   = "Object_Name";
     this.bandedGridColumn3.FieldName = "Object_Name";
     this.bandedGridColumn3.Name      = "bandedGridColumn3";
     this.bandedGridColumn3.OptionsColumn.AllowEdit = false;
     this.bandedGridColumn3.Visible = true;
     this.bandedGridColumn3.Width   = 314;
     //
     // bandedGridColumn4
     //
     this.bandedGridColumn4.Caption   = "Nhóm Quyền";
     this.bandedGridColumn4.FieldName = "Description";
     this.bandedGridColumn4.Name      = "bandedGridColumn4";
     this.bandedGridColumn4.OptionsColumn.AllowEdit = false;
     this.bandedGridColumn4.Visible = true;
     this.bandedGridColumn4.Width   = 171;
     //
     // bandedGridColumn1
     //
     this.bandedGridColumn1.Caption   = "ID";
     this.bandedGridColumn1.FieldName = "ID";
     this.bandedGridColumn1.Name      = "bandedGridColumn1";
     this.bandedGridColumn1.OptionsColumn.AllowEdit = false;
     this.bandedGridColumn1.Visible = true;
     this.bandedGridColumn1.Width   = 277;
     //
     // PicNhanVien
     //
     this.PicNhanVien.CustomHeight = 105;
     this.PicNhanVien.Name         = "PicNhanVien";
     this.PicNhanVien.NullText     = "[Chưa có hình]";
     this.PicNhanVien.SizeMode     = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
     //
     // checkValue
     //
     this.checkValue.AutoHeight = false;
     this.checkValue.Name       = "checkValue";
     //
     // colID
     //
     this.colID.Caption   = "ID";
     this.colID.FieldName = "ID";
     this.colID.Name      = "colID";
     this.colID.Width     = 277;
     //
     // colObject_ID
     //
     this.colObject_ID.Caption      = "Object_ID";
     this.colObject_ID.FieldName    = "Object_ID";
     this.colObject_ID.Name         = "colObject_ID";
     this.colObject_ID.Visible      = true;
     this.colObject_ID.VisibleIndex = 0;
     this.colObject_ID.Width        = 132;
     //
     // colObject_Name
     //
     this.colObject_Name.Caption      = "Object_Name";
     this.colObject_Name.FieldName    = "Object_Name";
     this.colObject_Name.Name         = "colObject_Name";
     this.colObject_Name.Visible      = true;
     this.colObject_Name.VisibleIndex = 1;
     this.colObject_Name.Width        = 946;
     //
     // colDescription
     //
     this.colDescription.Caption   = "Description";
     this.colDescription.FieldName = "Description";
     this.colDescription.Name      = "colDescription";
     this.colDescription.Width     = 636;
     //
     // colCheckAllNotUse
     //
     repositoryItemCheckEdit3.AutoHeight = false;
     repositoryItemCheckEdit3.Name       = "checkValueNotUse";
     this.colCheckAllNotUse.ColumnEdit   = repositoryItemCheckEdit3;
     this.colCheckAllNotUse.FieldName    = "selectvalue";
     this.colCheckAllNotUse.Name         = "colCheckAllNotUse";
     this.colCheckAllNotUse.OptionsColumn.ShowCaption = false;
     this.colCheckAllNotUse.Visible = true;
     this.colCheckAllNotUse.Width   = 49;
     //
     // colIsObject_ID
     //
     this.colIsObject_ID.Caption   = "Object_ID";
     this.colIsObject_ID.FieldName = "Object_ID";
     this.colIsObject_ID.Name      = "colIsObject_ID";
     this.colIsObject_ID.OptionsColumn.AllowEdit  = false;
     this.colIsObject_ID.OptionsColumn.FixedWidth = true;
     this.colIsObject_ID.Visible = true;
     this.colIsObject_ID.Width   = 239;
     //
     // colIsObject_Name
     //
     this.colIsObject_Name.Caption   = "Object_Name";
     this.colIsObject_Name.FieldName = "Object_Name";
     this.colIsObject_Name.Name      = "colIsObject_Name";
     this.colIsObject_Name.OptionsColumn.AllowEdit = false;
     this.colIsObject_Name.Visible = true;
     this.colIsObject_Name.Width   = 284;
     //
     // colIsObject_Description
     //
     this.colIsObject_Description.Caption   = "Nhóm Quyền";
     this.colIsObject_Description.FieldName = "Description";
     this.colIsObject_Description.Name      = "colIsObject_Description";
     this.colIsObject_Description.Visible   = true;
     this.colIsObject_Description.Width     = 91;
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.CustomHeight = 105;
     this.repositoryItemPictureEdit1.Name         = "repositoryItemPictureEdit1";
     this.repositoryItemPictureEdit1.NullText     = "[Chưa có hình]";
     this.repositoryItemPictureEdit1.SizeMode     = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
     //
     // checkValueNotUse
     //
     this.checkValueNotUse.AutoHeight = false;
     this.checkValueNotUse.Name       = "checkValueNotUse";
     //
     // frmPhanQuyen
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(931, 400);
     this.Controls.Add(this.splitContainerControl1);
     this.Name  = "frmPhanQuyen";
     this.Text  = "frmPhanQuyen";
     this.Load += new System.EventHandler(this.frmPhanQuyen_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridIsUse)).EndInit();
     this.contextMenuRemove.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bandedgirdIsUse)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridNotUseDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridNotUse)).EndInit();
     this.contextMenuAdd.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bandedgridNotUse)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeAccount)).EndInit();
     this.contextMenuCopy.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PicNhanVien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkValue)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkValueNotUse)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components        = new System.ComponentModel.Container();
     this.monthEdit1        = new DevExpress.XtraScheduler.UI.MonthEdit();
     this.schedulerStorage1 = new DevExpress.XtraScheduler.SchedulerStorage(this.components);
     this.gridCalendar      = new DevExpress.XtraGrid.GridControl();
     this.gridViewCalendar  = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Select        = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn4       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lblMonth          = new System.Windows.Forms.Label();
     this.btn_Save          = new DevExpress.XtraEditors.SimpleButton();
     this.lblDay            = new System.Windows.Forms.Label();
     this.cmbDay            = new DevExpress.XtraEditors.ComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.monthEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCalendar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCalendar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Select)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDay.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // monthEdit1
     //
     this.monthEdit1.Location = new System.Drawing.Point(80, 48);
     this.monthEdit1.Name     = "monthEdit1";
     //
     // monthEdit1.Properties
     //
     this.monthEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.monthEdit1.TabIndex = 0;
     //
     // gridCalendar
     //
     this.gridCalendar.Anchor = System.Windows.Forms.AnchorStyles.Left;
     //
     // gridCalendar.EmbeddedNavigator
     //
     this.gridCalendar.EmbeddedNavigator.Name = "";
     this.gridCalendar.Location          = new System.Drawing.Point(0, 88);
     this.gridCalendar.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridCalendar.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridCalendar.MainView = this.gridViewCalendar;
     this.gridCalendar.Name     = "gridCalendar";
     this.gridCalendar.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.chk_Select
     });
     this.gridCalendar.Size     = new System.Drawing.Size(496, 176);
     this.gridCalendar.TabIndex = 180;
     this.gridCalendar.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewCalendar
     });
     //
     // gridViewCalendar
     //
     this.gridViewCalendar.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumn4
     });
     this.gridViewCalendar.GridControl = this.gridCalendar;
     this.gridViewCalendar.Name        = "gridViewCalendar";
     this.gridViewCalendar.OptionsBehavior.Editable         = false;
     this.gridViewCalendar.OptionsCustomization.AllowFilter = false;
     this.gridViewCalendar.OptionsCustomization.AllowSort   = false;
     this.gridViewCalendar.OptionsView.ShowGroupPanel       = false;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn2.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn2.FieldName    = "dtDate";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width        = 147;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption    = "Select";
     this.gridColumn3.ColumnEdit = this.chk_Select;
     this.gridColumn3.DisplayFormat.FormatString = "hh:mm tt";
     this.gridColumn3.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn3.FieldName    = "chkSelect";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 1;
     this.gridColumn3.Width        = 59;
     //
     // chk_Select
     //
     this.chk_Select.AutoHeight = false;
     this.chk_Select.Name       = "chk_Select";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "Remarks";
     this.gridColumn4.FieldName    = "strRemarks";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 2;
     this.gridColumn4.Width        = 276;
     //
     // lblMonth
     //
     this.lblMonth.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblMonth.Location = new System.Drawing.Point(0, 48);
     this.lblMonth.Name     = "lblMonth";
     this.lblMonth.Size     = new System.Drawing.Size(80, 23);
     this.lblMonth.TabIndex = 181;
     this.lblMonth.Text     = "Month";
     //
     // btn_Save
     //
     this.btn_Save.Location = new System.Drawing.Point(392, 280);
     this.btn_Save.Name     = "btn_Save";
     this.btn_Save.TabIndex = 182;
     this.btn_Save.Text     = "Save";
     //
     // lblDay
     //
     this.lblDay.Font     = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblDay.Location = new System.Drawing.Point(0, 16);
     this.lblDay.Name     = "lblDay";
     this.lblDay.Size     = new System.Drawing.Size(56, 23);
     this.lblDay.TabIndex = 184;
     this.lblDay.Text     = "Day";
     //
     // cmbDay
     //
     this.cmbDay.EditValue = "";
     this.cmbDay.Location  = new System.Drawing.Point(80, 16);
     this.cmbDay.Name      = "cmbDay";
     //
     // cmbDay.Properties
     //
     this.cmbDay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cmbDay.Properties.Items.AddRange(new object[] {
         "Monday",
         "Tuesday",
         "Wednesday",
         "Thursday",
         "Friday",
         "Saturday",
         "Sunday"
     });
     this.cmbDay.TabIndex = 185;
     //
     // Attendance
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(576, 350);
     this.Controls.Add(this.cmbDay);
     this.Controls.Add(this.lblDay);
     this.Controls.Add(this.btn_Save);
     this.Controls.Add(this.lblMonth);
     this.Controls.Add(this.gridCalendar);
     this.Controls.Add(this.monthEdit1);
     this.Name  = "Attendance";
     this.Text  = "Attendance Calendar";
     this.Load += new System.EventHandler(this.Attendance_Load);
     ((System.ComponentModel.ISupportInitialize)(this.monthEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridCalendar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCalendar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Select)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbDay.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDivideRoom));
     this.gridRoom = new DevExpress.XtraGrid.GridControl();
     this.gridViewRoom = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colRoomStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.checkRoomStatus = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemImageEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
     this.repositoryItemImageEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemImageEdit();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.gridBillProduct = new DevExpress.XtraGrid.GridControl();
     this.gridViewBillProduct = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colIDChitietHDXuat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBillNum = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTransfer = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.colBillReduce = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.colGo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit9 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.deleteChitietHD = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridTransferedProductControlNew = new DevExpress.XtraGrid.GridControl();
     this.gridViewTransferedProductNew = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTransferUp = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemSpinEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
     this.colGoUp = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit10 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit8 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.btnRefresh = new DevExpress.XtraEditors.SimpleButton();
     this.btnUpdate = new DevExpress.XtraEditors.SimpleButton();
     this.btnExit = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.gcOldRoomproduct = new DevExpress.XtraEditors.GroupControl();
     this.gcNewRoomProduct = new DevExpress.XtraEditors.GroupControl();
     this.groupControl6 = new DevExpress.XtraEditors.GroupControl();
     ((System.ComponentModel.ISupportInitialize)(this.gridRoom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoom)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkRoomStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridBillProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBillProduct)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deleteChitietHD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTransferedProductControlNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTransferedProductNew)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcOldRoomproduct)).BeginInit();
     this.gcOldRoomproduct.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gcNewRoomProduct)).BeginInit();
     this.gcNewRoomProduct.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit();
     this.groupControl6.SuspendLayout();
     this.SuspendLayout();
     //
     // gridRoom
     //
     this.gridRoom.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridRoom.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(4);
     this.gridRoom.EmbeddedNavigator.Name = "";
     this.gridRoom.Font = new System.Drawing.Font("Tahoma", 12F);
     this.gridRoom.FormsUseDefaultLookAndFeel = false;
     this.gridRoom.Location = new System.Drawing.Point(2, 20);
     this.gridRoom.MainView = this.gridViewRoom;
     this.gridRoom.Margin = new System.Windows.Forms.Padding(4);
     this.gridRoom.Name = "gridRoom";
     this.gridRoom.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemImageEdit1,
     this.checkRoomStatus,
     this.repositoryItemImageEdit2,
     this.repositoryItemPictureEdit1});
     this.gridRoom.Size = new System.Drawing.Size(266, 544);
     this.gridRoom.TabIndex = 4;
     this.gridRoom.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewRoom});
     //
     // gridViewRoom
     //
     this.gridViewRoom.Appearance.FocusedCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridViewRoom.Appearance.FocusedCell.Options.UseFont = true;
     this.gridViewRoom.Appearance.FocusedRow.BackColor = System.Drawing.Color.Blue;
     this.gridViewRoom.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewRoom.Appearance.FocusedRow.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridViewRoom.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewRoom.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewRoom.Appearance.FocusedRow.Options.UseFont = true;
     this.gridViewRoom.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewRoom.Appearance.GroupFooter.Font = new System.Drawing.Font("Tahoma", 11F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridViewRoom.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Green;
     this.gridViewRoom.Appearance.GroupFooter.Image = ((System.Drawing.Image)(resources.GetObject("gridViewRoom.Appearance.GroupFooter.Image")));
     this.gridViewRoom.Appearance.GroupFooter.Options.UseFont = true;
     this.gridViewRoom.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gridViewRoom.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridViewRoom.Appearance.GroupRow.ForeColor = System.Drawing.Color.Red;
     this.gridViewRoom.Appearance.GroupRow.Options.UseFont = true;
     this.gridViewRoom.Appearance.GroupRow.Options.UseForeColor = true;
     this.gridViewRoom.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridViewRoom.Appearance.HeaderPanel.Options.UseFont = true;
     this.gridViewRoom.Appearance.SelectedRow.BackColor = System.Drawing.Color.Blue;
     this.gridViewRoom.Appearance.SelectedRow.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewRoom.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewRoom.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewRoom.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gridViewRoom.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colTT,
     this.gridColumn22,
     this.gridColumn3,
     this.colRoomStatus,
     this.gridColumn6,
     this.gridColumn23});
     this.gridViewRoom.GridControl = this.gridRoom;
     this.gridViewRoom.GroupCount = 1;
     this.gridViewRoom.GroupFooterShowMode = DevExpress.XtraGrid.Views.Grid.GroupFooterShowMode.VisibleAlways;
     this.gridViewRoom.GroupFormat = "{0} [#image]{1} {2} ";
     this.gridViewRoom.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "TT", this.colRoomStatus, "")});
     this.gridViewRoom.Name = "gridViewRoom";
     this.gridViewRoom.NewItemRowText = "Click vào đây để thêm mới";
     this.gridViewRoom.OptionsMenu.EnableFooterMenu = false;
     this.gridViewRoom.OptionsView.ShowGroupPanel = false;
     this.gridViewRoom.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn22, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewRoom.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewRoom_FocusedRowChanged);
     //
     // colTT
     //
     this.colTT.Caption = "TT";
     this.colTT.FieldName = "TT";
     this.colTT.Name = "colTT";
     //
     // gridColumn22
     //
     this.gridColumn22.FieldName = "TenLoaiPhong";
     this.gridColumn22.Name = "gridColumn22";
     //
     // gridColumn3
     //
     this.gridColumn3.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn3.AppearanceCell.Options.UseFont = true;
     this.gridColumn3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn3.AppearanceHeader.Options.UseFont = true;
     this.gridColumn3.Caption = "IDPhong";
     this.gridColumn3.FieldName = "IDPhong";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     //
     // colRoomStatus
     //
     this.colRoomStatus.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.colRoomStatus.AppearanceCell.Options.UseFont = true;
     this.colRoomStatus.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.colRoomStatus.AppearanceHeader.Options.UseFont = true;
     this.colRoomStatus.Caption = "Trạng Thái";
     this.colRoomStatus.ColumnEdit = this.checkRoomStatus;
     this.colRoomStatus.FieldName = "Trangthai";
     this.colRoomStatus.Name = "colRoomStatus";
     this.colRoomStatus.OptionsColumn.AllowEdit = false;
     this.colRoomStatus.OptionsColumn.AllowMove = false;
     this.colRoomStatus.OptionsColumn.AllowSize = false;
     this.colRoomStatus.OptionsColumn.FixedWidth = true;
     this.colRoomStatus.OptionsColumn.ReadOnly = true;
     this.colRoomStatus.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;
     this.colRoomStatus.Visible = true;
     this.colRoomStatus.VisibleIndex = 1;
     this.colRoomStatus.Width = 86;
     //
     // checkRoomStatus
     //
     this.checkRoomStatus.AllowFocused = false;
     this.checkRoomStatus.AutoHeight = false;
     this.checkRoomStatus.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.checkRoomStatus.FullFocusRect = true;
     this.checkRoomStatus.Name = "checkRoomStatus";
     this.checkRoomStatus.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Inactive;
     this.checkRoomStatus.PictureChecked = global::Karaoke.Properties.Resources.Status_user_busy_icon1;
     this.checkRoomStatus.PictureGrayed = global::Karaoke.Properties.Resources.user1;
     this.checkRoomStatus.PictureUnchecked = global::Karaoke.Properties.Resources.blank;
     //
     // gridColumn6
     //
     this.gridColumn6.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn6.AppearanceCell.Options.UseFont = true;
     this.gridColumn6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn6.AppearanceHeader.Options.UseFont = true;
     this.gridColumn6.Caption = "Phòng";
     this.gridColumn6.FieldName = "TenPhong";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.OptionsColumn.AllowEdit = false;
     this.gridColumn6.OptionsColumn.FixedWidth = true;
     this.gridColumn6.OptionsColumn.ReadOnly = true;
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 89;
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "IDLoaiPhong";
     this.gridColumn23.FieldName = "IDLoaiPhong";
     this.gridColumn23.Name = "gridColumn23";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.PictureChecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit1.PictureGrayed = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit1.PictureUnchecked = global::Karaoke.Properties.Resources._1325149282_button_ok;
     //
     // repositoryItemImageEdit1
     //
     this.repositoryItemImageEdit1.AutoHeight = false;
     this.repositoryItemImageEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageEdit1.Name = "repositoryItemImageEdit1";
     //
     // repositoryItemImageEdit2
     //
     this.repositoryItemImageEdit2.AutoHeight = false;
     this.repositoryItemImageEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageEdit2.Name = "repositoryItemImageEdit2";
     this.repositoryItemImageEdit2.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.Never;
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Appearance.Image = global::Karaoke.Properties.Resources.user;
     this.repositoryItemPictureEdit1.Appearance.Options.UseImage = true;
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // gridBillProduct
     //
     this.gridBillProduct.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridBillProduct.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(4);
     this.gridBillProduct.EmbeddedNavigator.Name = "";
     this.gridBillProduct.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridBillProduct.FormsUseDefaultLookAndFeel = false;
     this.gridBillProduct.Location = new System.Drawing.Point(2, 20);
     this.gridBillProduct.MainView = this.gridViewBillProduct;
     this.gridBillProduct.Margin = new System.Windows.Forms.Padding(4);
     this.gridBillProduct.Name = "gridBillProduct";
     this.gridBillProduct.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit4,
     this.deleteChitietHD,
     this.repositoryItemSpinEdit1,
     this.repositoryItemSpinEdit2,
     this.repositoryItemCheckEdit2,
     this.repositoryItemCheckEdit3,
     this.repositoryItemCheckEdit9,
     this.repositoryItemSpinEdit5});
     this.gridBillProduct.Size = new System.Drawing.Size(401, 204);
     this.gridBillProduct.TabIndex = 45;
     this.gridBillProduct.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewBillProduct});
     //
     // gridViewBillProduct
     //
     this.gridViewBillProduct.Appearance.FocusedCell.BackColor = System.Drawing.Color.Blue;
     this.gridViewBillProduct.Appearance.FocusedCell.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewBillProduct.Appearance.FocusedCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridViewBillProduct.Appearance.FocusedCell.ForeColor = System.Drawing.Color.White;
     this.gridViewBillProduct.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gridViewBillProduct.Appearance.FocusedCell.Options.UseFont = true;
     this.gridViewBillProduct.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gridViewBillProduct.Appearance.FocusedRow.BackColor = System.Drawing.Color.Blue;
     this.gridViewBillProduct.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewBillProduct.Appearance.FocusedRow.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.gridViewBillProduct.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewBillProduct.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewBillProduct.Appearance.FocusedRow.Options.UseFont = true;
     this.gridViewBillProduct.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewBillProduct.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridViewBillProduct.Appearance.HeaderPanel.Options.UseFont = true;
     this.gridViewBillProduct.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridViewBillProduct.Appearance.Row.Options.UseFont = true;
     this.gridViewBillProduct.Appearance.SelectedRow.BackColor = System.Drawing.Color.Blue;
     this.gridViewBillProduct.Appearance.SelectedRow.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewBillProduct.Appearance.SelectedRow.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridViewBillProduct.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewBillProduct.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewBillProduct.Appearance.SelectedRow.Options.UseFont = true;
     this.gridViewBillProduct.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gridViewBillProduct.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colIDChitietHDXuat,
     this.gridColumn1,
     this.gridColumn2,
     this.colBillNum,
     this.gridColumn19,
     this.colTransfer,
     this.colBillReduce,
     this.colGo});
     this.gridViewBillProduct.GridControl = this.gridBillProduct;
     this.gridViewBillProduct.Name = "gridViewBillProduct";
     this.gridViewBillProduct.NewItemRowText = "Click vào đây để thêm mới";
     this.gridViewBillProduct.OptionsView.ShowGroupPanel = false;
     this.gridViewBillProduct.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewBillProduct_CellValueChanging);
     //
     // colIDChitietHDXuat
     //
     this.colIDChitietHDXuat.Caption = "gridColumn21";
     this.colIDChitietHDXuat.FieldName = "IDChitietHDxuat";
     this.colIDChitietHDXuat.Name = "colIDChitietHDXuat";
     //
     // gridColumn1
     //
     this.gridColumn1.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn1.AppearanceCell.Options.UseFont = true;
     this.gridColumn1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn1.AppearanceHeader.Options.UseFont = true;
     this.gridColumn1.Caption = "IDSanpham";
     this.gridColumn1.FieldName = "IDSanpham";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     //
     // gridColumn2
     //
     this.gridColumn2.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn2.AppearanceCell.Options.UseFont = true;
     this.gridColumn2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn2.AppearanceHeader.Options.UseFont = true;
     this.gridColumn2.Caption = "Sản phẩm";
     this.gridColumn2.FieldName = "TenSanPham";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.ReadOnly = true;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     this.gridColumn2.Width = 90;
     //
     // colBillNum
     //
     this.colBillNum.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.colBillNum.AppearanceCell.Options.UseFont = true;
     this.colBillNum.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.colBillNum.AppearanceHeader.Options.UseFont = true;
     this.colBillNum.Caption = "Số lượng";
     this.colBillNum.ColumnEdit = this.repositoryItemSpinEdit1;
     this.colBillNum.FieldName = "Soluong";
     this.colBillNum.Name = "colBillNum";
     this.colBillNum.OptionsColumn.ReadOnly = true;
     this.colBillNum.Visible = true;
     this.colBillNum.VisibleIndex = 1;
     this.colBillNum.Width = 82;
     //
     // repositoryItemSpinEdit1
     //
     this.repositoryItemSpinEdit1.AutoHeight = false;
     this.repositoryItemSpinEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit1.MaxValue = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit1.Name = "repositoryItemSpinEdit1";
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "IDGiaXuatSP";
     this.gridColumn19.FieldName = "IDGiaXuatSP";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.OptionsColumn.ReadOnly = true;
     //
     // colTransfer
     //
     this.colTransfer.Caption = "Chuyển";
     this.colTransfer.ColumnEdit = this.repositoryItemSpinEdit5;
     this.colTransfer.FieldName = "Transfer";
     this.colTransfer.Name = "colTransfer";
     this.colTransfer.Visible = true;
     this.colTransfer.VisibleIndex = 2;
     //
     // repositoryItemSpinEdit5
     //
     this.repositoryItemSpinEdit5.AutoHeight = false;
     this.repositoryItemSpinEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit5.MaxValue = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit5.Name = "repositoryItemSpinEdit5";
     //
     // colBillReduce
     //
     this.colBillReduce.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.colBillReduce.AppearanceCell.Options.UseFont = true;
     this.colBillReduce.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.colBillReduce.AppearanceHeader.Options.UseFont = true;
     this.colBillReduce.Caption = "Giảm";
     this.colBillReduce.ColumnEdit = this.repositoryItemSpinEdit2;
     this.colBillReduce.DisplayFormat.FormatString = "###,###,###";
     this.colBillReduce.FieldName = "Giam";
     this.colBillReduce.Name = "colBillReduce";
     this.colBillReduce.Width = 63;
     //
     // repositoryItemSpinEdit2
     //
     this.repositoryItemSpinEdit2.AutoHeight = false;
     this.repositoryItemSpinEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit2.DisplayFormat.FormatString = "###,###";
     this.repositoryItemSpinEdit2.Increment = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit2.IsFloatValue = false;
     this.repositoryItemSpinEdit2.Mask.EditMask = "N00";
     this.repositoryItemSpinEdit2.MaxValue = new decimal(new int[] {
     100000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit2.Name = "repositoryItemSpinEdit2";
     //
     // colGo
     //
     this.colGo.ColumnEdit = this.repositoryItemCheckEdit9;
     this.colGo.FieldName = "Go";
     this.colGo.Name = "colGo";
     this.colGo.Visible = true;
     this.colGo.VisibleIndex = 3;
     //
     // repositoryItemCheckEdit9
     //
     this.repositoryItemCheckEdit9.AutoHeight = false;
     this.repositoryItemCheckEdit9.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.repositoryItemCheckEdit9.Name = "repositoryItemCheckEdit9";
     this.repositoryItemCheckEdit9.PictureChecked = global::Karaoke.Properties.Resources.Actions_arrow_down_double_icon_small;
     this.repositoryItemCheckEdit9.PictureGrayed = global::Karaoke.Properties.Resources.Actions_arrow_down_double_icon_small;
     this.repositoryItemCheckEdit9.PictureUnchecked = global::Karaoke.Properties.Resources.Actions_arrow_down_double_icon_small;
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
     this.repositoryItemCheckEdit4.PictureChecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit4.PictureGrayed = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit4.PictureUnchecked = global::Karaoke.Properties.Resources._1325149282_button_ok;
     //
     // deleteChitietHD
     //
     this.deleteChitietHD.AutoHeight = false;
     this.deleteChitietHD.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.deleteChitietHD.Name = "deleteChitietHD";
     this.deleteChitietHD.PictureChecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.deleteChitietHD.PictureGrayed = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.deleteChitietHD.PictureUnchecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     this.repositoryItemCheckEdit3.PictureChecked = global::Karaoke.Properties.Resources.Actions_go_next_icon;
     this.repositoryItemCheckEdit3.PictureGrayed = global::Karaoke.Properties.Resources.Actions_go_next_icon;
     this.repositoryItemCheckEdit3.PictureUnchecked = global::Karaoke.Properties.Resources.Actions_go_next_icon;
     //
     // gridTransferedProductControlNew
     //
     this.gridTransferedProductControlNew.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridTransferedProductControlNew.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(4);
     this.gridTransferedProductControlNew.EmbeddedNavigator.Name = "";
     this.gridTransferedProductControlNew.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridTransferedProductControlNew.FormsUseDefaultLookAndFeel = false;
     this.gridTransferedProductControlNew.Location = new System.Drawing.Point(2, 20);
     this.gridTransferedProductControlNew.MainView = this.gridViewTransferedProductNew;
     this.gridTransferedProductControlNew.Margin = new System.Windows.Forms.Padding(4);
     this.gridTransferedProductControlNew.Name = "gridTransferedProductControlNew";
     this.gridTransferedProductControlNew.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit5,
     this.repositoryItemCheckEdit6,
     this.repositoryItemSpinEdit3,
     this.repositoryItemSpinEdit4,
     this.repositoryItemCheckEdit7,
     this.repositoryItemCheckEdit8,
     this.repositoryItemCheckEdit10,
     this.repositoryItemSpinEdit6});
     this.gridTransferedProductControlNew.Size = new System.Drawing.Size(401, 296);
     this.gridTransferedProductControlNew.TabIndex = 46;
     this.gridTransferedProductControlNew.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewTransferedProductNew});
     //
     // gridViewTransferedProductNew
     //
     this.gridViewTransferedProductNew.Appearance.FocusedCell.BackColor = System.Drawing.Color.Blue;
     this.gridViewTransferedProductNew.Appearance.FocusedCell.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewTransferedProductNew.Appearance.FocusedCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.gridViewTransferedProductNew.Appearance.FocusedCell.ForeColor = System.Drawing.Color.White;
     this.gridViewTransferedProductNew.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gridViewTransferedProductNew.Appearance.FocusedCell.Options.UseFont = true;
     this.gridViewTransferedProductNew.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gridViewTransferedProductNew.Appearance.FocusedRow.BackColor = System.Drawing.Color.Blue;
     this.gridViewTransferedProductNew.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewTransferedProductNew.Appearance.FocusedRow.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
     this.gridViewTransferedProductNew.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewTransferedProductNew.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridViewTransferedProductNew.Appearance.FocusedRow.Options.UseFont = true;
     this.gridViewTransferedProductNew.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridViewTransferedProductNew.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridViewTransferedProductNew.Appearance.HeaderPanel.Options.UseFont = true;
     this.gridViewTransferedProductNew.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridViewTransferedProductNew.Appearance.Row.Options.UseFont = true;
     this.gridViewTransferedProductNew.Appearance.SelectedRow.BackColor = System.Drawing.Color.Blue;
     this.gridViewTransferedProductNew.Appearance.SelectedRow.BackColor2 = System.Drawing.Color.Blue;
     this.gridViewTransferedProductNew.Appearance.SelectedRow.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridViewTransferedProductNew.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gridViewTransferedProductNew.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridViewTransferedProductNew.Appearance.SelectedRow.Options.UseFont = true;
     this.gridViewTransferedProductNew.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gridViewTransferedProductNew.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.colTransferUp,
     this.gridColumn11,
     this.colGoUp});
     this.gridViewTransferedProductNew.GridControl = this.gridTransferedProductControlNew;
     this.gridViewTransferedProductNew.Name = "gridViewTransferedProductNew";
     this.gridViewTransferedProductNew.NewItemRowText = "Click vào đây để thêm mới";
     this.gridViewTransferedProductNew.OptionsView.ShowGroupPanel = false;
     this.gridViewTransferedProductNew.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridViewTransferedProductNew_CellValueChanging);
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "gridColumn21";
     this.gridColumn4.FieldName = "IDChitietHDXuat";
     this.gridColumn4.Name = "gridColumn4";
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn5.AppearanceCell.Options.UseFont = true;
     this.gridColumn5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn5.AppearanceHeader.Options.UseFont = true;
     this.gridColumn5.Caption = "IDSanpham";
     this.gridColumn5.FieldName = "IDSanpham";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn7.AppearanceCell.Options.UseFont = true;
     this.gridColumn7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn7.AppearanceHeader.Options.UseFont = true;
     this.gridColumn7.Caption = "Sản phẩm";
     this.gridColumn7.FieldName = "TenSanPham";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 0;
     this.gridColumn7.Width = 90;
     //
     // gridColumn8
     //
     this.gridColumn8.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn8.AppearanceCell.Options.UseFont = true;
     this.gridColumn8.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn8.AppearanceHeader.Options.UseFont = true;
     this.gridColumn8.Caption = "Số lượng";
     this.gridColumn8.ColumnEdit = this.repositoryItemSpinEdit3;
     this.gridColumn8.FieldName = "Soluong";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.ReadOnly = true;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 1;
     this.gridColumn8.Width = 82;
     //
     // repositoryItemSpinEdit3
     //
     this.repositoryItemSpinEdit3.AutoHeight = false;
     this.repositoryItemSpinEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit3.MaxValue = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit3.Name = "repositoryItemSpinEdit3";
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "IDGiaXuatSP";
     this.gridColumn9.FieldName = "IDGiaXuatSP";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     //
     // colTransferUp
     //
     this.colTransferUp.Caption = "Chuyển";
     this.colTransferUp.ColumnEdit = this.repositoryItemSpinEdit6;
     this.colTransferUp.FieldName = "Transfer";
     this.colTransferUp.Name = "colTransferUp";
     this.colTransferUp.Visible = true;
     this.colTransferUp.VisibleIndex = 2;
     //
     // repositoryItemSpinEdit6
     //
     this.repositoryItemSpinEdit6.AutoHeight = false;
     this.repositoryItemSpinEdit6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit6.MaxValue = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit6.Name = "repositoryItemSpinEdit6";
     //
     // gridColumn11
     //
     this.gridColumn11.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F);
     this.gridColumn11.AppearanceCell.Options.UseFont = true;
     this.gridColumn11.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 11F);
     this.gridColumn11.AppearanceHeader.Options.UseFont = true;
     this.gridColumn11.Caption = "Giảm";
     this.gridColumn11.ColumnEdit = this.repositoryItemSpinEdit4;
     this.gridColumn11.DisplayFormat.FormatString = "###,###,###";
     this.gridColumn11.FieldName = "Giam";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Width = 63;
     //
     // repositoryItemSpinEdit4
     //
     this.repositoryItemSpinEdit4.AutoHeight = false;
     this.repositoryItemSpinEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemSpinEdit4.DisplayFormat.FormatString = "###,###";
     this.repositoryItemSpinEdit4.Increment = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit4.IsFloatValue = false;
     this.repositoryItemSpinEdit4.Mask.EditMask = "N00";
     this.repositoryItemSpinEdit4.MaxValue = new decimal(new int[] {
     100000,
     0,
     0,
     0});
     this.repositoryItemSpinEdit4.Name = "repositoryItemSpinEdit4";
     //
     // colGoUp
     //
     this.colGoUp.ColumnEdit = this.repositoryItemCheckEdit10;
     this.colGoUp.FieldName = "Go";
     this.colGoUp.Name = "colGoUp";
     this.colGoUp.Visible = true;
     this.colGoUp.VisibleIndex = 3;
     //
     // repositoryItemCheckEdit10
     //
     this.repositoryItemCheckEdit10.AutoHeight = false;
     this.repositoryItemCheckEdit10.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.repositoryItemCheckEdit10.Name = "repositoryItemCheckEdit10";
     this.repositoryItemCheckEdit10.PictureChecked = global::Karaoke.Properties.Resources.Actions_arrow_up_double_icon_small;
     this.repositoryItemCheckEdit10.PictureGrayed = global::Karaoke.Properties.Resources.Actions_arrow_up_double_icon_small;
     this.repositoryItemCheckEdit10.PictureUnchecked = global::Karaoke.Properties.Resources.Actions_arrow_up_double_icon_small;
     //
     // repositoryItemCheckEdit5
     //
     this.repositoryItemCheckEdit5.AutoHeight = false;
     this.repositoryItemCheckEdit5.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.repositoryItemCheckEdit5.Name = "repositoryItemCheckEdit5";
     this.repositoryItemCheckEdit5.PictureChecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit5.PictureGrayed = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit5.PictureUnchecked = global::Karaoke.Properties.Resources._1325149282_button_ok;
     //
     // repositoryItemCheckEdit6
     //
     this.repositoryItemCheckEdit6.AutoHeight = false;
     this.repositoryItemCheckEdit6.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
     this.repositoryItemCheckEdit6.Name = "repositoryItemCheckEdit6";
     this.repositoryItemCheckEdit6.PictureChecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit6.PictureGrayed = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     this.repositoryItemCheckEdit6.PictureUnchecked = global::Karaoke.Properties.Resources._1325149327_recycle_bin;
     //
     // repositoryItemCheckEdit7
     //
     this.repositoryItemCheckEdit7.AutoHeight = false;
     this.repositoryItemCheckEdit7.Name = "repositoryItemCheckEdit7";
     //
     // repositoryItemCheckEdit8
     //
     this.repositoryItemCheckEdit8.AutoHeight = false;
     this.repositoryItemCheckEdit8.Name = "repositoryItemCheckEdit8";
     this.repositoryItemCheckEdit8.PictureChecked = global::Karaoke.Properties.Resources.Actions_go_next_icon;
     this.repositoryItemCheckEdit8.PictureGrayed = global::Karaoke.Properties.Resources.Actions_go_next_icon;
     this.repositoryItemCheckEdit8.PictureUnchecked = global::Karaoke.Properties.Resources.Actions_go_next_icon;
     //
     // btnRefresh
     //
     this.btnRefresh.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnRefresh.Appearance.Options.UseFont = true;
     this.btnRefresh.Location = new System.Drawing.Point(73, 24);
     this.btnRefresh.Margin = new System.Windows.Forms.Padding(4);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new System.Drawing.Size(100, 30);
     this.btnRefresh.TabIndex = 64;
     this.btnRefresh.Text = "Phục hồi";
     this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
     //
     // btnUpdate
     //
     this.btnUpdate.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnUpdate.Appearance.Options.UseFont = true;
     this.btnUpdate.Location = new System.Drawing.Point(329, 24);
     this.btnUpdate.Margin = new System.Windows.Forms.Padding(4);
     this.btnUpdate.Name = "btnUpdate";
     this.btnUpdate.Size = new System.Drawing.Size(100, 30);
     this.btnUpdate.TabIndex = 65;
     this.btnUpdate.Text = "Đồng ý";
     this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
     //
     // btnExit
     //
     this.btnExit.Appearance.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnExit.Appearance.Options.UseFont = true;
     this.btnExit.Location = new System.Drawing.Point(461, 24);
     this.btnExit.Margin = new System.Windows.Forms.Padding(4);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(100, 30);
     this.btnExit.TabIndex = 66;
     this.btnExit.Text = "Thoát";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // groupControl1
     //
     this.groupControl1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl1.Controls.Add(this.groupControl3);
     this.groupControl1.Controls.Add(this.groupControl2);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(683, 588);
     this.groupControl1.TabIndex = 67;
     this.groupControl1.Text = "Bảng chuyển đổi";
     //
     // groupControl2
     //
     this.groupControl2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl2.Controls.Add(this.gridRoom);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Left;
     this.groupControl2.Location = new System.Drawing.Point(2, 20);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(270, 566);
     this.groupControl2.TabIndex = 0;
     this.groupControl2.Text = "Chọn phòng";
     //
     // groupControl3
     //
     this.groupControl3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl3.Controls.Add(this.gcNewRoomProduct);
     this.groupControl3.Controls.Add(this.gcOldRoomproduct);
     this.groupControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl3.Location = new System.Drawing.Point(272, 20);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(409, 566);
     this.groupControl3.TabIndex = 1;
     this.groupControl3.Text = "Chuyển sản phẩm";
     //
     // gcOldRoomproduct
     //
     this.gcOldRoomproduct.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.gcOldRoomproduct.Controls.Add(this.gridBillProduct);
     this.gcOldRoomproduct.Dock = System.Windows.Forms.DockStyle.Top;
     this.gcOldRoomproduct.Location = new System.Drawing.Point(2, 20);
     this.gcOldRoomproduct.Name = "gcOldRoomproduct";
     this.gcOldRoomproduct.Size = new System.Drawing.Size(405, 226);
     this.gcOldRoomproduct.TabIndex = 0;
     this.gcOldRoomproduct.Text = "Sản phẩm phòng cũ";
     //
     // gcNewRoomProduct
     //
     this.gcNewRoomProduct.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.gcNewRoomProduct.Controls.Add(this.gridTransferedProductControlNew);
     this.gcNewRoomProduct.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcNewRoomProduct.Location = new System.Drawing.Point(2, 246);
     this.gcNewRoomProduct.Name = "gcNewRoomProduct";
     this.gcNewRoomProduct.Size = new System.Drawing.Size(405, 318);
     this.gcNewRoomProduct.TabIndex = 1;
     this.gcNewRoomProduct.Text = "Sản phẩm phòng mới";
     //
     // groupControl6
     //
     this.groupControl6.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowOnly;
     this.groupControl6.Controls.Add(this.btnRefresh);
     this.groupControl6.Controls.Add(this.btnUpdate);
     this.groupControl6.Controls.Add(this.btnExit);
     this.groupControl6.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl6.Location = new System.Drawing.Point(0, 508);
     this.groupControl6.Name = "groupControl6";
     this.groupControl6.Size = new System.Drawing.Size(683, 80);
     this.groupControl6.TabIndex = 68;
     //
     // frmDivideRoom
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(683, 588);
     this.ControlBox = false;
     this.Controls.Add(this.groupControl6);
     this.Controls.Add(this.groupControl1);
     this.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmDivideRoom";
     this.Text = "Chọn phòng và sản phẩm cho tách phòng/hợp phòng";
     this.Load += new System.EventHandler(this.frmDivideRoom_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridRoom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewRoom)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkRoomStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridBillProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewBillProduct)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deleteChitietHD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridTransferedProductControlNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTransferedProductNew)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemSpinEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcOldRoomproduct)).EndInit();
     this.gcOldRoomproduct.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gcNewRoomProduct)).EndInit();
     this.gcNewRoomProduct.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit();
     this.groupControl6.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.gridControl1 = 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.repositoryItemRadioGroup1 = new DevExpress.XtraEditors.Repository.RepositoryItemRadioGroup();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(277, 309);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(66, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text = "确定";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(358, 309);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(66, 23);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text = "取消";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(12, 309);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "全选";
     this.checkEdit1.Size = new System.Drawing.Size(75, 19);
     this.checkEdit1.TabIndex = 2;
     this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.comboBox1);
     this.panelControl1.Controls.Add(this.checkEdit1);
     this.panelControl1.Controls.Add(this.simpleButton2);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Controls.Add(this.gridControl1);
     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(462, 344);
     this.panelControl1.TabIndex = 0;
     this.panelControl1.Text = "panelControl1";
     //
     // comboBox1
     //
     this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(46, 12);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(404, 20);
     this.comboBox1.Sorted = true;
     this.comboBox1.TabIndex = 5;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // gridControl1
     //
     this.gridControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(3, 3);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemRadioGroup1});
     this.gridControl1.Size = new System.Drawing.Size(456, 293);
     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.gridColumn1,
     this.gridColumn2,
     this.gridColumn3});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.GroupPanelText = "设备";
     this.gridView1.Name = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "设备ID";
     this.gridColumn1.FieldName = "A";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "设备名称";
     this.gridColumn2.FieldName = "B";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "是否选择";
     this.gridColumn3.ColumnEdit = this.repositoryItemRadioGroup1;
     this.gridColumn3.FieldName = "C";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     //
     // repositoryItemRadioGroup1
     //
     this.repositoryItemRadioGroup1.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] {
     new DevExpress.XtraEditors.Controls.RadioGroupItem()});
     this.repositoryItemRadioGroup1.Name = "repositoryItemRadioGroup1";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // frmDeviceList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(462, 344);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmDeviceList";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "选择设备";
     this.Load += new System.EventHandler(this.frmDeviceList_Load);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRadioGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).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.repositoryItemCheckEditUtilizationSelection = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn299 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label1 = new System.Windows.Forms.Label();
     this.pnlCtrlCenter = new DevExpress.XtraEditors.PanelControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colItemCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colItemDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colItemPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBrand = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStyle = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSize = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colColor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStockQty = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlCtrlBankInfo = new DevExpress.XtraEditors.PanelControl();
     this.lblAmount = new System.Windows.Forms.Label();
     this.txtCreditCardNo = new DevExpress.XtraEditors.TextEdit();
     this.dtProrateFrom = new System.Windows.Forms.DateTimePicker();
     this.lblTotalAmt = new System.Windows.Forms.Label();
     this.txtCardHolder = new DevExpress.XtraEditors.TextEdit();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     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.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.pnlCtrlSearchProduct = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.label6 = new System.Windows.Forms.Label();
     this.txtEditSearchWord = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).BeginInit();
     this.pnlCtrlCenter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditUtilizationSelection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBankInfo)).BeginInit();
     this.pnlCtrlBankInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCardNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCardHolder.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlSearchProduct)).BeginInit();
     this.pnlCtrlSearchProduct.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtEditSearchWord.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(18, 4);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(516, 23);
     this.label1.TabIndex = 0;
     this.label1.Text = "label1";
     //
     // pnlCtrlCenter
     //
     this.pnlCtrlCenter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlCenter.Controls.Add(this.gridControl1);
     this.pnlCtrlCenter.Controls.Add(this.pnlCtrlBankInfo);
     this.pnlCtrlCenter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlCtrlCenter.Location = new System.Drawing.Point(0, 72);
     this.pnlCtrlCenter.Name = "pnlCtrlCenter";
     this.pnlCtrlCenter.Size = new System.Drawing.Size(840, 355);
     this.pnlCtrlCenter.TabIndex = 2;
     //
     // 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.repositoryItemCheckEditUtilizationSelection});
     this.gridControl1.Size = new System.Drawing.Size(840, 205);
     this.gridControl1.TabIndex = 2;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     this.gridControl1.Click += new System.EventHandler(this.gridControl1_Click);
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn299,
     this.colItemCode,
     this.colItemDescription,
     this.colItemPrice,
     this.colBrand,
     this.colStyle,
     this.colSize,
     this.colColor,
     this.colStockQty});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.DoubleClick += new System.EventHandler(this.gridView1_DoubleClick);
     //
     // gridColumn299
     //
     this.gridColumn299.Caption = "Utl";
     this.gridColumn299.ColumnEdit = this.repositoryItemCheckEditUtilizationSelection;
     this.gridColumn299.FieldName = "UtlCheck";
     this.gridColumn299.Name = "gridColumn299";
     this.gridColumn299.OptionsColumn.ShowCaption = false;
     this.gridColumn299.Visible = true;
     this.gridColumn299.VisibleIndex = 0;
     this.gridColumn299.Width = 25;
     //
     // repositoryItemCheckEditUtilizationSelection
     //
     this.repositoryItemCheckEditUtilizationSelection.AutoHeight = false;
     this.repositoryItemCheckEditUtilizationSelection.Name = "repositoryItemCheckEditUtilizationSelection";
     //
     // colItemCode
     //
     this.colItemCode.Caption = "Item Code";
     this.colItemCode.Name = "colItemCode";
     this.colItemCode.OptionsColumn.AllowEdit = false;
     this.colItemCode.OptionsFilter.AllowFilter = false;
     this.colItemCode.Visible = true;
     this.colItemCode.VisibleIndex = 0;
     this.colItemCode.Width = 117;
     //
     // colItemDescription
     //
     this.colItemDescription.Caption = "Item Description";
     this.colItemDescription.Name = "colItemDescription";
     this.colItemDescription.OptionsColumn.AllowEdit = false;
     this.colItemDescription.OptionsFilter.AllowFilter = false;
     this.colItemDescription.Visible = true;
     this.colItemDescription.VisibleIndex = 1;
     this.colItemDescription.Width = 180;
     //
     // colItemPrice
     //
     this.colItemPrice.Caption = "Item Price";
     this.colItemPrice.Name = "colItemPrice";
     this.colItemPrice.OptionsColumn.AllowEdit = false;
     this.colItemPrice.OptionsFilter.AllowFilter = false;
     this.colItemPrice.Visible = true;
     this.colItemPrice.VisibleIndex = 2;
     this.colItemPrice.Width = 133;
     //
     // colBrand
     //
     this.colBrand.Caption = "Brand";
     this.colBrand.FieldName = "BrandDesc";
     this.colBrand.Name = "colBrand";
     this.colBrand.OptionsColumn.AllowEdit = false;
     this.colBrand.OptionsColumn.ShowInCustomizationForm = false;
     this.colBrand.OptionsFilter.AllowFilter = false;
     this.colBrand.Width = 74;
     //
     // colStyle
     //
     this.colStyle.Caption = "Style";
     this.colStyle.FieldName = "StyleDesc";
     this.colStyle.Name = "colStyle";
     this.colStyle.OptionsColumn.AllowEdit = false;
     this.colStyle.OptionsColumn.ShowInCustomizationForm = false;
     this.colStyle.OptionsFilter.AllowFilter = false;
     this.colStyle.Width = 74;
     //
     // colSize
     //
     this.colSize.Caption = "Size";
     this.colSize.FieldName = "SizeDesc";
     this.colSize.Name = "colSize";
     this.colSize.OptionsColumn.AllowEdit = false;
     this.colSize.OptionsColumn.ShowInCustomizationForm = false;
     this.colSize.OptionsFilter.AllowFilter = false;
     this.colSize.Width = 74;
     //
     // colColor
     //
     this.colColor.Caption = "Color";
     this.colColor.FieldName = "ColorDesc";
     this.colColor.Name = "colColor";
     this.colColor.OptionsColumn.AllowEdit = false;
     this.colColor.OptionsColumn.ShowInCustomizationForm = false;
     this.colColor.OptionsFilter.AllowFilter = false;
     this.colColor.Width = 74;
     //
     // colStockQty
     //
     this.colStockQty.Caption = "Stock Qty";
     this.colStockQty.FieldName = "nQty";
     this.colStockQty.Name = "colStockQty";
     this.colStockQty.Visible = true;
     this.colStockQty.VisibleIndex = 3;
     //
     // pnlCtrlBankInfo
     //
     this.pnlCtrlBankInfo.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBankInfo.Controls.Add(this.lblAmount);
     this.pnlCtrlBankInfo.Controls.Add(this.txtCreditCardNo);
     this.pnlCtrlBankInfo.Controls.Add(this.dtProrateFrom);
     this.pnlCtrlBankInfo.Controls.Add(this.lblTotalAmt);
     this.pnlCtrlBankInfo.Controls.Add(this.txtCardHolder);
     this.pnlCtrlBankInfo.Controls.Add(this.label5);
     this.pnlCtrlBankInfo.Controls.Add(this.label4);
     this.pnlCtrlBankInfo.Controls.Add(this.label3);
     this.pnlCtrlBankInfo.Controls.Add(this.label2);
     this.pnlCtrlBankInfo.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlCtrlBankInfo.Location = new System.Drawing.Point(0, 205);
     this.pnlCtrlBankInfo.Name = "pnlCtrlBankInfo";
     this.pnlCtrlBankInfo.Size = new System.Drawing.Size(840, 150);
     this.pnlCtrlBankInfo.TabIndex = 3;
     //
     // lblAmount
     //
     this.lblAmount.AutoSize = true;
     this.lblAmount.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAmount.Location = new System.Drawing.Point(156, 115);
     this.lblAmount.Name = "lblAmount";
     this.lblAmount.Size = new System.Drawing.Size(22, 23);
     this.lblAmount.TabIndex = 48;
     this.lblAmount.Text = "$";
     //
     // txtCreditCardNo
     //
     this.txtCreditCardNo.AllowDrop = true;
     this.txtCreditCardNo.EditValue = "";
     this.txtCreditCardNo.Location = new System.Drawing.Point(105, 59);
     this.txtCreditCardNo.Name = "txtCreditCardNo";
     this.txtCreditCardNo.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCreditCardNo.Properties.Appearance.Options.UseFont = true;
     this.txtCreditCardNo.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.txtCreditCardNo.Properties.MaxLength = 19;
     this.txtCreditCardNo.Size = new System.Drawing.Size(168, 22);
     this.txtCreditCardNo.TabIndex = 45;
     //
     // dtProrateFrom
     //
     this.dtProrateFrom.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtProrateFrom.Location = new System.Drawing.Point(105, 85);
     this.dtProrateFrom.Name = "dtProrateFrom";
     this.dtProrateFrom.Size = new System.Drawing.Size(128, 20);
     this.dtProrateFrom.TabIndex = 46;
     //
     // lblTotalAmt
     //
     this.lblTotalAmt.AutoSize = true;
     this.lblTotalAmt.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTotalAmt.Location = new System.Drawing.Point(3, 115);
     this.lblTotalAmt.Name = "lblTotalAmt";
     this.lblTotalAmt.Size = new System.Drawing.Size(147, 23);
     this.lblTotalAmt.TabIndex = 47;
     this.lblTotalAmt.Text = "Total Amount:";
     //
     // txtCardHolder
     //
     this.txtCardHolder.EditValue = "";
     this.txtCardHolder.Location = new System.Drawing.Point(105, 30);
     this.txtCardHolder.Name = "txtCardHolder";
     this.txtCardHolder.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.txtCardHolder.Properties.Appearance.Options.UseFont = true;
     this.txtCardHolder.Size = new System.Drawing.Size(328, 23);
     this.txtCardHolder.TabIndex = 44;
     //
     // label5
     //
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.Location = new System.Drawing.Point(4, 4);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(192, 23);
     this.label5.TabIndex = 8;
     this.label5.Text = "Giro Information";
     //
     // label4
     //
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.Location = new System.Drawing.Point(4, 85);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(106, 23);
     this.label4.TabIndex = 6;
     this.label4.Text = "Date :";
     //
     // label3
     //
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.Location = new System.Drawing.Point(4, 62);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(106, 23);
     this.label3.TabIndex = 5;
     this.label3.Text = "Bank Acct No :";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label2.Location = new System.Drawing.Point(4, 32);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(106, 23);
     this.label2.TabIndex = 3;
     this.label2.Text = "EDDA Ref :";
     //
     // 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, 427);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(840, 40);
     this.panelControl2.TabIndex = 3;
     this.panelControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.panelControl2_Paint);
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(750, 10);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonCancel.TabIndex = 10;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(664, 10);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonOK.TabIndex = 9;
     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.label1);
     this.panelControl3.Controls.Add(this.simpleButton2);
     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(840, 36);
     this.panelControl3.TabIndex = 4;
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(554, 4);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 3;
     this.simpleButton2.Text = "Book Session";
     this.simpleButton2.Visible = false;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // pnlCtrlSearchProduct
     //
     this.pnlCtrlSearchProduct.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlSearchProduct.Controls.Add(this.simpleButton1);
     this.pnlCtrlSearchProduct.Controls.Add(this.label6);
     this.pnlCtrlSearchProduct.Controls.Add(this.txtEditSearchWord);
     this.pnlCtrlSearchProduct.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlCtrlSearchProduct.Location = new System.Drawing.Point(0, 36);
     this.pnlCtrlSearchProduct.Name = "pnlCtrlSearchProduct";
     this.pnlCtrlSearchProduct.Size = new System.Drawing.Size(840, 36);
     this.pnlCtrlSearchProduct.TabIndex = 5;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(316, 6);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 2;
     this.simpleButton1.Text = "Search";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // label6
     //
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.Location = new System.Drawing.Point(16, 8);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(112, 20);
     this.label6.TabIndex = 1;
     this.label6.Text = "Search Product:";
     //
     // txtEditSearchWord
     //
     this.txtEditSearchWord.EditValue = "";
     this.txtEditSearchWord.Location = new System.Drawing.Point(130, 6);
     this.txtEditSearchWord.Name = "txtEditSearchWord";
     this.txtEditSearchWord.Properties.MaxLength = 25;
     this.txtEditSearchWord.Size = new System.Drawing.Size(180, 20);
     this.txtEditSearchWord.TabIndex = 0;
     this.txtEditSearchWord.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtEditSearchWord_KeyDown);
     //
     // FormAddCreditPackage
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = new System.Drawing.Size(840, 467);
     this.Controls.Add(this.pnlCtrlCenter);
     this.Controls.Add(this.pnlCtrlSearchProduct);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.panelControl2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormAddCreditPackage";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Add Credit Package";
     this.Load += new System.EventHandler(this.FormAddCreditPackage_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FormAddCreditPackage_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).EndInit();
     this.pnlCtrlCenter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditUtilizationSelection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBankInfo)).EndInit();
     this.pnlCtrlBankInfo.ResumeLayout(false);
     this.pnlCtrlBankInfo.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtCreditCardNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCardHolder.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlSearchProduct)).EndInit();
     this.pnlCtrlSearchProduct.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtEditSearchWord.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.grpGroup = new DevExpress.XtraEditors.GroupControl();
     this.grdGroup = new DevExpress.XtraGrid.GridControl();
     this.grdvGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colGroupID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGroupName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnXoa = new System.Windows.Forms.Button();
     this.btnThem = new System.Windows.Forms.Button();
     this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
     this.grpModule = new DevExpress.XtraEditors.GroupControl();
     this.grdModule = new DevExpress.XtraGrid.GridControl();
     this.grdvModule = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colModuId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colModule = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCheck = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_grdChecked = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.btnUpdateGroupModule = new System.Windows.Forms.Button();
     this.grpFunction = new DevExpress.XtraEditors.GroupControl();
     this.grdFunction = new DevExpress.XtraGrid.GridControl();
     this.grdvFunction = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colModuleName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colFunction = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colModuleID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colFunctionID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colValue = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_grdValue = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.btnCapNhat = new System.Windows.Forms.Button();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpGroup)).BeginInit();
     this.grpGroup.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdvGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
     this.splitContainerControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpModule)).BeginInit();
     this.grpModule.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdModule)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdvModule)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_grdChecked)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpFunction)).BeginInit();
     this.grpFunction.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdFunction)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdvFunction)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_grdValue)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridView3
     //
     this.gridView3.Name = "gridView3";
     //
     // 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.grpGroup);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.splitContainerControl2);
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1288, 619);
     this.splitContainerControl1.SplitterPosition = 435;
     this.splitContainerControl1.TabIndex = 0;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // grpGroup
     //
     this.grpGroup.Controls.Add(this.grdGroup);
     this.grpGroup.Controls.Add(this.panelControl1);
     this.grpGroup.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grpGroup.Location = new System.Drawing.Point(0, 0);
     this.grpGroup.Name = "grpGroup";
     this.grpGroup.Size = new System.Drawing.Size(435, 619);
     this.grpGroup.TabIndex = 0;
     this.grpGroup.Text = "Danh sách nhóm sử dụng";
     //
     // grdGroup
     //
     this.grdGroup.Dock = System.Windows.Forms.DockStyle.Fill;
     gridLevelNode2.RelationName = "Level1";
     this.grdGroup.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     this.grdGroup.Location = new System.Drawing.Point(2, 21);
     this.grdGroup.MainView = this.grdvGroup;
     this.grdGroup.Name = "grdGroup";
     this.grdGroup.Size = new System.Drawing.Size(431, 534);
     this.grdGroup.TabIndex = 1;
     this.grdGroup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grdvGroup});
     this.grdGroup.Click += new System.EventHandler(this.grdGroup_Click);
     //
     // grdvGroup
     //
     this.grdvGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colGroupID,
     this.colGroupName});
     this.grdvGroup.GridControl = this.grdGroup;
     this.grdvGroup.Name = "grdvGroup";
     this.grdvGroup.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.grdvGroup.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.grdvGroup.OptionsBehavior.Editable = false;
     this.grdvGroup.OptionsBehavior.ReadOnly = true;
     this.grdvGroup.OptionsView.ShowGroupPanel = false;
     this.grdvGroup.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.grdvGroup_FocusedRowChanged);
     //
     // colGroupID
     //
     this.colGroupID.Caption = "Mã nhóm";
     this.colGroupID.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.colGroupID.FieldName = "GROUPID";
     this.colGroupID.Name = "colGroupID";
     this.colGroupID.Visible = true;
     this.colGroupID.VisibleIndex = 0;
     this.colGroupID.Width = 98;
     //
     // colGroupName
     //
     this.colGroupName.Caption = "Tên nhóm";
     this.colGroupName.FieldName = "GROUPNAME";
     this.colGroupName.Name = "colGroupName";
     this.colGroupName.Visible = true;
     this.colGroupName.VisibleIndex = 1;
     this.colGroupName.Width = 446;
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.btnXoa);
     this.panelControl1.Controls.Add(this.btnThem);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(2, 555);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(431, 62);
     this.panelControl1.TabIndex = 0;
     //
     // btnXoa
     //
     this.btnXoa.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnXoa.Location = new System.Drawing.Point(308, 12);
     this.btnXoa.Name = "btnXoa";
     this.btnXoa.Size = new System.Drawing.Size(75, 34);
     this.btnXoa.TabIndex = 0;
     this.btnXoa.Text = "Xóa";
     this.btnXoa.UseVisualStyleBackColor = true;
     this.btnXoa.Click += new System.EventHandler(this.btnXoa_Click);
     //
     // btnThem
     //
     this.btnThem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnThem.Location = new System.Drawing.Point(208, 12);
     this.btnThem.Name = "btnThem";
     this.btnThem.Size = new System.Drawing.Size(75, 34);
     this.btnThem.TabIndex = 0;
     this.btnThem.Text = "Thêm";
     this.btnThem.UseVisualStyleBackColor = true;
     this.btnThem.Click += new System.EventHandler(this.btnThem_Click);
     //
     // splitContainerControl2
     //
     this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl2.Name = "splitContainerControl2";
     this.splitContainerControl2.Panel1.Controls.Add(this.grpModule);
     this.splitContainerControl2.Panel1.Text = "Panel1";
     this.splitContainerControl2.Panel2.Controls.Add(this.grpFunction);
     this.splitContainerControl2.Panel2.Text = "Panel2";
     this.splitContainerControl2.Size = new System.Drawing.Size(848, 619);
     this.splitContainerControl2.SplitterPosition = 352;
     this.splitContainerControl2.TabIndex = 0;
     this.splitContainerControl2.Text = "splitContainerControl2";
     //
     // grpModule
     //
     this.grpModule.Controls.Add(this.grdModule);
     this.grpModule.Controls.Add(this.panelControl3);
     this.grpModule.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grpModule.Location = new System.Drawing.Point(0, 0);
     this.grpModule.Name = "grpModule";
     this.grpModule.Size = new System.Drawing.Size(352, 619);
     this.grpModule.TabIndex = 1;
     this.grpModule.Text = "Quyền sử dụng của nhóm";
     //
     // grdModule
     //
     this.grdModule.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdModule.Location = new System.Drawing.Point(2, 21);
     this.grdModule.MainView = this.grdvModule;
     this.grdModule.Name = "grdModule";
     this.grdModule.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.chk_grdChecked});
     this.grdModule.Size = new System.Drawing.Size(348, 534);
     this.grdModule.TabIndex = 1;
     this.grdModule.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grdvModule});
     //
     // grdvModule
     //
     this.grdvModule.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colModuId,
     this.colModule,
     this.colCheck});
     this.grdvModule.GridControl = this.grdModule;
     this.grdvModule.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Value", this.colCheck, "(Số quyền được cấp: {0:n0})")});
     this.grdvModule.Name = "grdvModule";
     this.grdvModule.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.grdvModule.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.grdvModule.OptionsBehavior.AllowFixedGroups = DevExpress.Utils.DefaultBoolean.False;
     this.grdvModule.OptionsCustomization.AllowColumnMoving = false;
     this.grdvModule.OptionsCustomization.AllowFilter = false;
     this.grdvModule.OptionsCustomization.AllowGroup = false;
     this.grdvModule.OptionsCustomization.AllowQuickHideColumns = false;
     this.grdvModule.OptionsFind.AlwaysVisible = true;
     this.grdvModule.OptionsView.ShowGroupPanel = false;
     //
     // colModuId
     //
     this.colModuId.Caption = "Module";
     this.colModuId.FieldName = "ModuleID";
     this.colModuId.Name = "colModuId";
     //
     // colModule
     //
     this.colModule.Caption = "Chức năng";
     this.colModule.FieldName = "ModuleName";
     this.colModule.Name = "colModule";
     this.colModule.OptionsColumn.AllowEdit = false;
     this.colModule.OptionsColumn.ReadOnly = true;
     this.colModule.Visible = true;
     this.colModule.VisibleIndex = 0;
     this.colModule.Width = 205;
     //
     // colCheck
     //
     this.colCheck.Caption = "Chọn";
     this.colCheck.ColumnEdit = this.chk_grdChecked;
     this.colCheck.FieldName = "Value";
     this.colCheck.Name = "colCheck";
     this.colCheck.UnboundExpression = "False";
     this.colCheck.Visible = true;
     this.colCheck.VisibleIndex = 1;
     this.colCheck.Width = 108;
     //
     // chk_grdChecked
     //
     this.chk_grdChecked.AutoHeight = false;
     this.chk_grdChecked.Name = "chk_grdChecked";
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.btnUpdateGroupModule);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl3.Location = new System.Drawing.Point(2, 555);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(348, 62);
     this.panelControl3.TabIndex = 0;
     //
     // btnUpdateGroupModule
     //
     this.btnUpdateGroupModule.Location = new System.Drawing.Point(37, 12);
     this.btnUpdateGroupModule.Name = "btnUpdateGroupModule";
     this.btnUpdateGroupModule.Size = new System.Drawing.Size(75, 34);
     this.btnUpdateGroupModule.TabIndex = 0;
     this.btnUpdateGroupModule.Text = "Cập nhật";
     this.btnUpdateGroupModule.UseVisualStyleBackColor = true;
     this.btnUpdateGroupModule.Click += new System.EventHandler(this.btnUpdateGroupModule_Click);
     //
     // grpFunction
     //
     this.grpFunction.Controls.Add(this.grdFunction);
     this.grpFunction.Controls.Add(this.panelControl2);
     this.grpFunction.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grpFunction.Location = new System.Drawing.Point(0, 0);
     this.grpFunction.Name = "grpFunction";
     this.grpFunction.Size = new System.Drawing.Size(491, 619);
     this.grpFunction.TabIndex = 1;
     this.grpFunction.Text = "Quyền sử dụng của nhóm";
     //
     // grdFunction
     //
     this.grdFunction.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdFunction.Location = new System.Drawing.Point(2, 21);
     this.grdFunction.MainView = this.grdvFunction;
     this.grdFunction.Name = "grdFunction";
     this.grdFunction.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.chk_grdValue});
     this.grdFunction.Size = new System.Drawing.Size(487, 534);
     this.grdFunction.TabIndex = 1;
     this.grdFunction.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grdvFunction});
     //
     // grdvFunction
     //
     this.grdvFunction.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colModuleName,
     this.colFunction,
     this.colModuleID,
     this.colFunctionID,
     this.colValue});
     this.grdvFunction.GridControl = this.grdFunction;
     this.grdvFunction.GroupCount = 1;
     this.grdvFunction.GroupSummary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridGroupSummaryItem(DevExpress.Data.SummaryItemType.Sum, "Value", null, "-----Số quyền được cấp: {0:n0}")});
     this.grdvFunction.Name = "grdvFunction";
     this.grdvFunction.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.grdvFunction.OptionsBehavior.AllowDeleteRows = DevExpress.Utils.DefaultBoolean.False;
     this.grdvFunction.OptionsBehavior.AllowFixedGroups = DevExpress.Utils.DefaultBoolean.False;
     this.grdvFunction.OptionsCustomization.AllowColumnMoving = false;
     this.grdvFunction.OptionsCustomization.AllowFilter = false;
     this.grdvFunction.OptionsCustomization.AllowGroup = false;
     this.grdvFunction.OptionsCustomization.AllowQuickHideColumns = false;
     this.grdvFunction.OptionsFind.AlwaysVisible = true;
     this.grdvFunction.OptionsView.ShowGroupPanel = false;
     this.grdvFunction.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colModuleName, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colModuleName
     //
     this.colModuleName.Caption = "Module";
     this.colModuleName.FieldName = "ModuleName";
     this.colModuleName.Name = "colModuleName";
     this.colModuleName.Visible = true;
     this.colModuleName.VisibleIndex = 0;
     //
     // colFunction
     //
     this.colFunction.Caption = "Chức năng";
     this.colFunction.FieldName = "FunctionName";
     this.colFunction.Name = "colFunction";
     this.colFunction.OptionsColumn.AllowEdit = false;
     this.colFunction.OptionsColumn.ReadOnly = true;
     this.colFunction.Visible = true;
     this.colFunction.VisibleIndex = 0;
     //
     // colModuleID
     //
     this.colModuleID.Caption = "gridColumn1";
     this.colModuleID.FieldName = "ModuleID";
     this.colModuleID.Name = "colModuleID";
     //
     // colFunctionID
     //
     this.colFunctionID.Caption = "gridColumn1";
     this.colFunctionID.FieldName = "FunctionID";
     this.colFunctionID.Name = "colFunctionID";
     //
     // colValue
     //
     this.colValue.Caption = "Chọn";
     this.colValue.ColumnEdit = this.chk_grdValue;
     this.colValue.FieldName = "Value";
     this.colValue.Name = "colValue";
     this.colValue.UnboundExpression = "False";
     this.colValue.Visible = true;
     this.colValue.VisibleIndex = 1;
     //
     // chk_grdValue
     //
     this.chk_grdValue.AutoHeight = false;
     this.chk_grdValue.Name = "chk_grdValue";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.btnCapNhat);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl2.Location = new System.Drawing.Point(2, 555);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(487, 62);
     this.panelControl2.TabIndex = 0;
     //
     // btnCapNhat
     //
     this.btnCapNhat.Location = new System.Drawing.Point(37, 12);
     this.btnCapNhat.Name = "btnCapNhat";
     this.btnCapNhat.Size = new System.Drawing.Size(75, 34);
     this.btnCapNhat.TabIndex = 0;
     this.btnCapNhat.Text = "Cập nhật";
     this.btnCapNhat.UseVisualStyleBackColor = true;
     this.btnCapNhat.Click += new System.EventHandler(this.btnCapNhat_Click);
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
     this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
     //
     // usrGroup
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.splitContainerControl1);
     this.Name = "usrGroup";
     this.Size = new System.Drawing.Size(1288, 619);
     this.Load += new System.EventHandler(this.Group_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpGroup)).EndInit();
     this.grpGroup.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdvGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
     this.splitContainerControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpModule)).EndInit();
     this.grpModule.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdModule)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdvModule)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_grdChecked)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpFunction)).EndInit();
     this.grpFunction.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdFunction)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdvFunction)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_grdValue)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #32
0
        private void BuildVisibleColumnsProc()
        {
            bool isContainPic     = false;
            int  iGroupIndexCount = -1;
            int  i = 0;

            DevExpress.XtraGrid.Columns.GridColumn[] grdCol = new DevExpress.XtraGrid.Columns.GridColumn[m_dtTableData.Columns.Count];

            foreach (DataColumn dc in m_dtTableData.Columns)
            {
                DevExpress.XtraGrid.Columns.GridColumn colAdd = new DevExpress.XtraGrid.Columns.GridColumn()
                {
                    FieldName = dc.Caption, Caption = dc.Caption, Name = dc.Caption
                };
                foreach (string readOnl in strColumnReadOnly)
                {
                    if (readOnl.ToLower().Equals(dc.Caption.ToLower()))
                    {
                        m_dtTableData.Columns[readOnl].ReadOnly = true;
                        break;
                    }
                }
                switch (dc.DataType.Name.ToLower())
                {
                case "boolean":
                    DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit colBool = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit()
                    {
                        AllowFocused = false, BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder, ValueChecked = true, ValueUnchecked = false
                    };

                    isShowCheckAllBtn = true;
                    if (colAdd.Name.ToLower().Contains("modifed"))
                    {
                        isContainModifedColumn = true;
                    }
                    colAdd.ColumnEdit   = colBool;
                    colAdd.VisibleIndex = i;

                    break;

                case strDATETIME:
                    if (colAdd.Name.ToLower().Contains("time"))
                    {
                        colAdd.ColumnEdit = rpeDateTimeMask;
                    }
                    else
                    {
                        DevExpress.XtraEditors.Repository.RepositoryItemDateEdit colDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
                        colDate.Mask.EditMask = CommonConst.DATE_FORMAT_PATTEN;
                        colDate.Mask.UseMaskAsDisplayFormat = true;
                        colDate.AllowFocused = false;
                        colDate.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;

                        colAdd.ColumnEdit = colDate;
                    }
                    colAdd.VisibleIndex = i;
                    break;

                case strFLOAT:
                case strREAL:
                    colAdd.DisplayFormat.FormatString = "f";
                    colAdd.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                    colAdd.SummaryItem.DisplayFormat  = "{0:#,##0;(#,##0);Zero}";
                    colAdd.SummaryItem.SummaryType    = DevExpress.Data.SummaryItemType.Sum;
                    colAdd.VisibleIndex = i;
                    break;

                case strBIGINT:
                case strINT:
                case strNUMERIC:
                case strSMALLINT:
                case strTINYINT:
                case strDecimal:
                    colAdd.DisplayFormat.FormatString = "n0";
                    colAdd.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                    colAdd.ColumnEdit = this.rpeNumberMask;
                    colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                    colAdd.SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Sum;
                    colAdd.VisibleIndex = i;
                    break;

                case strMONEY:
                case strSMALLMONEY:
                    colAdd.DisplayFormat.FormatString = "n0";
                    colAdd.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
                    colAdd.ColumnEdit = this.rpeNumberMask;
                    colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                    colAdd.SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Sum;
                    colAdd.VisibleIndex = i;
                    break;

                case strIMAGE:
                case "byte[]":
                    DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit colPhoto = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
                    colAdd.ColumnEdit   = colPhoto;
                    colAdd.VisibleIndex = i;
                    isContainPic        = true;
                    break;

                default:

                    colAdd.VisibleIndex = i;
                    break;
                }
                if (colAdd.Name.ToLower().Equals(CommonConst.EmployeeID.ToLower()))
                {
                    //colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    colAdd.ColumnEdit = null;//this.rpeNumberMask;
                    colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                    colAdd.SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Count;
                    colAdd.Fixed = FixedStyle.Left;
                }
                if (colAdd.Name.ToLower().Equals(CommonConst.FullName.ToLower()))
                {
                    //colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    colAdd.Fixed = FixedStyle.Left;
                }
                if (strColumnFormatFont != null && strColumnFormatFont.Length > 0 && strColumnFormatFont[0] != "")
                {
                    foreach (string strPairs in strColumnFormatFont)
                    {
                        if (colAdd.FieldName.Equals(strPairs.Split('#')[0]))
                        {
                            switch (strPairs.Split('#')[1].ToLower())
                            {
                            case "b":
                                colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
                                break;

                            case "i":
                                colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic);
                                break;

                            case "s":
                                colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Strikeout);
                                break;

                            case "u":
                                colAdd.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline);
                                break;
                            }
                        }
                    }
                }
                if (colAdd.Name.ToLower().Equals("month") || colAdd.Name.ToLower().Equals("year"))
                {
                    colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.None;
                    colAdd.ColumnEdit = null;
                    colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.None;
                }
                //Set list box columns
                DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repCom = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
                //set combobox value data
                if (strColumnCombobox.Length > 0)
                {
                    foreach (string com in strColumnCombobox)
                    {
                        string[] comboCol = com.Split('&');
                        if (comboCol.Length < 2)
                        {
                            continue;
                        }
                        if (dc.Caption == comboCol[0])
                        {
                            DataTable dtCom = DBEngine.execReturnDataTable(comboCol[1]);
                            if (dtCom != null && dtCom.Rows.Count > 0)
                            {
                                repCom.DataSource    = dtCom;
                                repCom.ValueMember   = dtCom.Columns[0].Caption;
                                repCom.DisplayMember = dtCom.Columns[1].Caption;
                                repCom.NullText      = string.Empty;
                                repCom.CloseUp      += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(repCom_CloseUp);
                                colAdd.ColumnEdit    = repCom;
                                break;
                            }
                        }
                    }
                }
                if (strColumnHide != null && strColumnHide.Length > 0)
                {
                    foreach (string com in strColumnHide)
                    {
                        if (colAdd.Name.ToLower() == com.ToLower())
                        {
                            colAdd.VisibleIndex = -1;
                        }
                    }
                }
                if (strColumnFixed != null && strColumnFixed.Length > 0)
                {
                    foreach (string com in strColumnFixed)
                    {
                        if (colAdd.Name.ToLower() == com.ToLower())
                        {
                            colAdd.Fixed = FixedStyle.Left;
                        }
                    }
                }
                if (strColumnOrderBy != null && strColumnOrderBy.Length > 0)
                {
                    foreach (string com in strColumnOrderBy)
                    {
                        string[] comboCol = com.Split('&');
                        if (comboCol.Length < 2)
                        {
                            continue;
                        }
                        if (colAdd.Name.ToLower() == comboCol[0].ToLower())
                        {
                            colAdd.VisibleIndex = Convert.ToInt32(comboCol[1]);
                            break;
                        }
                    }
                }
                //int intWidth = Convert.ToInt16(dc.MaxLength) * 4;
                //colAdd.Width = (intWidth > 100 ? intWidth : 100);
                //colAdd.OptionsColumn.AllowEdit = !isReadOnly;
                grdCol[i++] = colAdd;
            }
            this.grvDynamic.Columns.Clear();
            this.grvDynamic.Columns.AddRange(grdCol);

            m_dtTableData.DefaultView.AllowEdit = !isReadOnly;
            //if (!isContainPic)
            //    grvDynamic.BestFitColumns();
            //else
            //    grvDynamic.RowHeight = 100;
            grvDynamic.BestFitColumns();
            if (strGroupColumns != null && strGroupColumns.Length > 0)
            {
                grvDynamic.OptionsView.ShowGroupPanel = false;
                foreach (string com in strGroupColumns)
                {
                    foreach (GridColumn colGroup in grvDynamic.Columns)
                    {
                        if (colGroup.Name.ToLower() == com.ToLower())
                        {
                            colGroup.GroupIndex = ++iGroupIndexCount;
                            grvDynamic.OptionsView.ShowGroupPanel = true;
                        }
                    }
                }
                grvDynamic.ExpandAllGroups();
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pnlCtrlTop               = new DevExpress.XtraEditors.PanelControl();
     this.pnlCtrlCenter            = new DevExpress.XtraEditors.PanelControl();
     this.GridControl6             = new DevExpress.XtraGrid.GridControl();
     this.GridView7                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GridColumn28             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn30             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn31             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn34             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn45             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.GridColumn46             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn49             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlCtrlBottom            = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK           = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).BeginInit();
     this.pnlCtrlCenter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControl6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).BeginInit();
     this.pnlCtrlBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlCtrlTop
     //
     this.pnlCtrlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlTop.Dock        = System.Windows.Forms.DockStyle.Top;
     this.pnlCtrlTop.Location    = new System.Drawing.Point(0, 0);
     this.pnlCtrlTop.Name        = "pnlCtrlTop";
     this.pnlCtrlTop.Size        = new System.Drawing.Size(612, 22);
     this.pnlCtrlTop.TabIndex    = 0;
     this.pnlCtrlTop.Text        = "panelControl1";
     //
     // pnlCtrlCenter
     //
     this.pnlCtrlCenter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlCenter.Controls.Add(this.GridControl6);
     this.pnlCtrlCenter.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlCtrlCenter.Location = new System.Drawing.Point(0, 22);
     this.pnlCtrlCenter.Name     = "pnlCtrlCenter";
     this.pnlCtrlCenter.Size     = new System.Drawing.Size(612, 176);
     this.pnlCtrlCenter.TabIndex = 1;
     this.pnlCtrlCenter.Text     = "panelControl2";
     //
     // GridControl6
     //
     this.GridControl6.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // GridControl6.EmbeddedNavigator
     //
     this.GridControl6.EmbeddedNavigator.Name = "";
     this.GridControl6.Location          = new System.Drawing.Point(0, 0);
     this.GridControl6.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.GridControl6.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControl6.LookAndFeel.UseWindowsXPTheme     = false;
     this.GridControl6.MainView = this.GridView7;
     this.GridControl6.Name     = "GridControl6";
     this.GridControl6.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit1
     });
     this.GridControl6.Size     = new System.Drawing.Size(612, 176);
     this.GridControl6.TabIndex = 8;
     this.GridControl6.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.GridView7
     });
     //
     // GridView7
     //
     this.GridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.GridColumn28,
         this.GridColumn30,
         this.GridColumn31,
         this.GridColumn34,
         this.GridColumn45,
         this.GridColumn46,
         this.GridColumn49
     });
     this.GridView7.GridControl = this.GridControl6;
     this.GridView7.Name        = "GridView7";
     this.GridView7.OptionsView.ColumnAutoWidth = false;
     this.GridView7.OptionsView.ShowGroupPanel  = false;
     this.GridView7.CustomColumnDisplayText    += new DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventHandler(this.GridView7_CustomColumnDisplayText);
     this.GridView7.DoubleClick += new System.EventHandler(this.GridView7_DoubleClick);
     //
     // GridColumn28
     //
     this.GridColumn28.Caption   = "Package ID";
     this.GridColumn28.FieldName = "nPackageID";
     this.GridColumn28.Name      = "GridColumn28";
     this.GridColumn28.OptionsColumn.AllowEdit   = false;
     this.GridColumn28.OptionsColumn.AllowFocus  = false;
     this.GridColumn28.OptionsFilter.AllowFilter = false;
     this.GridColumn28.Visible      = true;
     this.GridColumn28.VisibleIndex = 0;
     this.GridColumn28.Width        = 69;
     //
     // GridColumn30
     //
     this.GridColumn30.Caption   = "Package Code";
     this.GridColumn30.FieldName = "strPackageCode";
     this.GridColumn30.Name      = "GridColumn30";
     this.GridColumn30.OptionsColumn.AllowEdit   = false;
     this.GridColumn30.OptionsColumn.AllowFocus  = false;
     this.GridColumn30.OptionsFilter.AllowFilter = false;
     this.GridColumn30.Visible      = true;
     this.GridColumn30.VisibleIndex = 1;
     this.GridColumn30.Width        = 90;
     //
     // GridColumn31
     //
     this.GridColumn31.Caption   = "Package Description";
     this.GridColumn31.FieldName = "strDescription";
     this.GridColumn31.Name      = "GridColumn31";
     this.GridColumn31.OptionsColumn.AllowEdit   = false;
     this.GridColumn31.OptionsColumn.AllowFocus  = false;
     this.GridColumn31.OptionsFilter.AllowFilter = false;
     this.GridColumn31.Visible      = true;
     this.GridColumn31.VisibleIndex = 2;
     this.GridColumn31.Width        = 108;
     //
     // GridColumn34
     //
     this.GridColumn34.Caption   = "Balance";
     this.GridColumn34.FieldName = "Balance";
     this.GridColumn34.Name      = "GridColumn34";
     this.GridColumn34.OptionsColumn.AllowEdit   = false;
     this.GridColumn34.OptionsColumn.AllowFocus  = false;
     this.GridColumn34.OptionsFilter.AllowFilter = false;
     this.GridColumn34.Visible      = true;
     this.GridColumn34.VisibleIndex = 3;
     this.GridColumn34.Width        = 74;
     //
     // GridColumn45
     //
     this.GridColumn45.Caption    = "Free Indicator";
     this.GridColumn45.ColumnEdit = this.repositoryItemCheckEdit1;
     this.GridColumn45.FieldName  = "fFree";
     this.GridColumn45.Name       = "GridColumn45";
     this.GridColumn45.OptionsColumn.AllowEdit   = false;
     this.GridColumn45.OptionsColumn.AllowFocus  = false;
     this.GridColumn45.OptionsFilter.AllowFilter = false;
     this.GridColumn45.Visible      = true;
     this.GridColumn45.VisibleIndex = 4;
     this.GridColumn45.Width        = 84;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // GridColumn46
     //
     this.GridColumn46.Caption   = "Status";
     this.GridColumn46.FieldName = "nStatusID";
     this.GridColumn46.Name      = "GridColumn46";
     this.GridColumn46.OptionsColumn.AllowEdit   = false;
     this.GridColumn46.OptionsColumn.AllowFocus  = false;
     this.GridColumn46.OptionsFilter.AllowFilter = false;
     this.GridColumn46.Visible      = true;
     this.GridColumn46.VisibleIndex = 5;
     this.GridColumn46.Width        = 100;
     //
     // GridColumn49
     //
     this.GridColumn49.Caption   = "Remark";
     this.GridColumn49.FieldName = "strRemarks";
     this.GridColumn49.Name      = "GridColumn49";
     this.GridColumn49.OptionsColumn.AllowEdit   = false;
     this.GridColumn49.OptionsColumn.AllowFocus  = false;
     this.GridColumn49.OptionsFilter.AllowFilter = false;
     this.GridColumn49.Visible      = true;
     this.GridColumn49.VisibleIndex = 6;
     this.GridColumn49.Width        = 64;
     //
     // pnlCtrlBottom
     //
     this.pnlCtrlBottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonCancel);
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonOK);
     this.pnlCtrlBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.pnlCtrlBottom.Location = new System.Drawing.Point(0, 198);
     this.pnlCtrlBottom.Name     = "pnlCtrlBottom";
     this.pnlCtrlBottom.Size     = new System.Drawing.Size(612, 58);
     this.pnlCtrlBottom.TabIndex = 2;
     this.pnlCtrlBottom.Text     = "panelControl3";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(520, 20);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex     = 16;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(434, 20);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.TabIndex     = 15;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormTopUpSingleTreatment
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(612, 256);
     this.Controls.Add(this.pnlCtrlCenter);
     this.Controls.Add(this.pnlCtrlTop);
     this.Controls.Add(this.pnlCtrlBottom);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormTopUpSingleTreatment";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Top Up Single Treatment";
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).EndInit();
     this.pnlCtrlCenter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridControl6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).EndInit();
     this.pnlCtrlBottom.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(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>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1 = new System.Windows.Forms.Label();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.lkpEdtItemFreebiePromotionCode = new DevExpress.XtraEditors.LookUpEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtItemFreebiePromotionCode.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(96, 16);
     this.label1.TabIndex = 48;
     this.label1.Text = "Promotion Code";
     //
     // gridControl1
     //
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(104, 40);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                           this.repositoryItemCheckEdit2});
     this.gridControl1.Size = new System.Drawing.Size(456, 234);
     this.gridControl1.TabIndex = 56;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn2,
                                                                                      this.gridColumn1,
                                                                                      this.gridColumn3});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Item Code";
     this.gridColumn1.FieldName = "strProductCode";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Product Description";
     this.gridColumn3.FieldName = "strDescription";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "OutStock";
     this.gridColumn2.ColumnEdit = this.repositoryItemCheckEdit2;
     this.gridColumn2.FieldName = "OutStock";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // simpleButton1
     //
     this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton1.Location = new System.Drawing.Point(104, 280);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.TabIndex = 57;
     this.simpleButton1.Text = "Save";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.simpleButton2.Location = new System.Drawing.Point(184, 280);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.TabIndex = 58;
     this.simpleButton2.Text = "Cancel";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // lkpEdtItemFreebiePromotionCode
     //
     this.lkpEdtItemFreebiePromotionCode.EditValue = "";
     this.lkpEdtItemFreebiePromotionCode.Location = new System.Drawing.Point(104, 8);
     this.lkpEdtItemFreebiePromotionCode.Name = "lkpEdtItemFreebiePromotionCode";
     //
     // lkpEdtItemFreebiePromotionCode.Properties
     //
     this.lkpEdtItemFreebiePromotionCode.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 10F);
     this.lkpEdtItemFreebiePromotionCode.Properties.Appearance.Options.UseFont = true;
     this.lkpEdtItemFreebiePromotionCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                                            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkpEdtItemFreebiePromotionCode.Size = new System.Drawing.Size(250, 25);
     this.lkpEdtItemFreebiePromotionCode.TabIndex = 59;
     this.lkpEdtItemFreebiePromotionCode.EditValueChanged += new System.EventHandler(this.PromotionChanged);
     //
     // frmNewPromotionSelection
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(568, 311);
     this.Controls.Add(this.lkpEdtItemFreebiePromotionCode);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.gridControl1);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmNewPromotionSelection";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "New Promotion Selection";
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkpEdtItemFreebiePromotionCode.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pnlCtrlTop = new DevExpress.XtraEditors.PanelControl();
     this.pnlCtrlCenter = new DevExpress.XtraEditors.PanelControl();
     this.GridControl6 = new DevExpress.XtraGrid.GridControl();
     this.GridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.GridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlCtrlBottom = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).BeginInit();
     this.pnlCtrlCenter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridControl6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).BeginInit();
     this.pnlCtrlBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlCtrlTop
     //
     this.pnlCtrlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlCtrlTop.Location = new System.Drawing.Point(0, 0);
     this.pnlCtrlTop.Name = "pnlCtrlTop";
     this.pnlCtrlTop.Size = new System.Drawing.Size(612, 22);
     this.pnlCtrlTop.TabIndex = 0;
     this.pnlCtrlTop.Text = "panelControl1";
     //
     // pnlCtrlCenter
     //
     this.pnlCtrlCenter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlCenter.Controls.Add(this.GridControl6);
     this.pnlCtrlCenter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlCtrlCenter.Location = new System.Drawing.Point(0, 22);
     this.pnlCtrlCenter.Name = "pnlCtrlCenter";
     this.pnlCtrlCenter.Size = new System.Drawing.Size(612, 176);
     this.pnlCtrlCenter.TabIndex = 1;
     this.pnlCtrlCenter.Text = "panelControl2";
     //
     // GridControl6
     //
     this.GridControl6.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // GridControl6.EmbeddedNavigator
     //
     this.GridControl6.EmbeddedNavigator.Name = "";
     this.GridControl6.Location = new System.Drawing.Point(0, 0);
     this.GridControl6.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.GridControl6.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControl6.LookAndFeel.UseWindowsXPTheme = false;
     this.GridControl6.MainView = this.GridView7;
     this.GridControl6.Name = "GridControl6";
     this.GridControl6.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                           this.repositoryItemCheckEdit1});
     this.GridControl6.Size = new System.Drawing.Size(612, 176);
     this.GridControl6.TabIndex = 8;
     this.GridControl6.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.GridView7});
     //
     // GridView7
     //
     this.GridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.GridColumn28,
                                                                                      this.GridColumn30,
                                                                                      this.GridColumn31,
                                                                                      this.GridColumn34,
                                                                                      this.GridColumn45,
                                                                                      this.GridColumn46,
                                                                                      this.GridColumn49});
     this.GridView7.GridControl = this.GridControl6;
     this.GridView7.Name = "GridView7";
     this.GridView7.OptionsView.ColumnAutoWidth = false;
     this.GridView7.OptionsView.ShowGroupPanel = false;
     this.GridView7.CustomColumnDisplayText += new DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventHandler(this.GridView7_CustomColumnDisplayText);
     this.GridView7.DoubleClick += new System.EventHandler(this.GridView7_DoubleClick);
     //
     // GridColumn28
     //
     this.GridColumn28.Caption = "Package ID";
     this.GridColumn28.FieldName = "nPackageID";
     this.GridColumn28.Name = "GridColumn28";
     this.GridColumn28.OptionsColumn.AllowEdit = false;
     this.GridColumn28.OptionsColumn.AllowFocus = false;
     this.GridColumn28.OptionsFilter.AllowFilter = false;
     this.GridColumn28.Visible = true;
     this.GridColumn28.VisibleIndex = 0;
     this.GridColumn28.Width = 69;
     //
     // GridColumn30
     //
     this.GridColumn30.Caption = "Package Code";
     this.GridColumn30.FieldName = "strPackageCode";
     this.GridColumn30.Name = "GridColumn30";
     this.GridColumn30.OptionsColumn.AllowEdit = false;
     this.GridColumn30.OptionsColumn.AllowFocus = false;
     this.GridColumn30.OptionsFilter.AllowFilter = false;
     this.GridColumn30.Visible = true;
     this.GridColumn30.VisibleIndex = 1;
     this.GridColumn30.Width = 90;
     //
     // GridColumn31
     //
     this.GridColumn31.Caption = "Package Description";
     this.GridColumn31.FieldName = "strDescription";
     this.GridColumn31.Name = "GridColumn31";
     this.GridColumn31.OptionsColumn.AllowEdit = false;
     this.GridColumn31.OptionsColumn.AllowFocus = false;
     this.GridColumn31.OptionsFilter.AllowFilter = false;
     this.GridColumn31.Visible = true;
     this.GridColumn31.VisibleIndex = 2;
     this.GridColumn31.Width = 108;
     //
     // GridColumn34
     //
     this.GridColumn34.Caption = "Balance";
     this.GridColumn34.FieldName = "Balance";
     this.GridColumn34.Name = "GridColumn34";
     this.GridColumn34.OptionsColumn.AllowEdit = false;
     this.GridColumn34.OptionsColumn.AllowFocus = false;
     this.GridColumn34.OptionsFilter.AllowFilter = false;
     this.GridColumn34.Visible = true;
     this.GridColumn34.VisibleIndex = 3;
     this.GridColumn34.Width = 74;
     //
     // GridColumn45
     //
     this.GridColumn45.Caption = "Free Indicator";
     this.GridColumn45.ColumnEdit = this.repositoryItemCheckEdit1;
     this.GridColumn45.FieldName = "fFree";
     this.GridColumn45.Name = "GridColumn45";
     this.GridColumn45.OptionsColumn.AllowEdit = false;
     this.GridColumn45.OptionsColumn.AllowFocus = false;
     this.GridColumn45.OptionsFilter.AllowFilter = false;
     this.GridColumn45.Visible = true;
     this.GridColumn45.VisibleIndex = 4;
     this.GridColumn45.Width = 84;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // GridColumn46
     //
     this.GridColumn46.Caption = "Status";
     this.GridColumn46.FieldName = "nStatusID";
     this.GridColumn46.Name = "GridColumn46";
     this.GridColumn46.OptionsColumn.AllowEdit = false;
     this.GridColumn46.OptionsColumn.AllowFocus = false;
     this.GridColumn46.OptionsFilter.AllowFilter = false;
     this.GridColumn46.Visible = true;
     this.GridColumn46.VisibleIndex = 5;
     this.GridColumn46.Width = 100;
     //
     // GridColumn49
     //
     this.GridColumn49.Caption = "Remark";
     this.GridColumn49.FieldName = "strRemarks";
     this.GridColumn49.Name = "GridColumn49";
     this.GridColumn49.OptionsColumn.AllowEdit = false;
     this.GridColumn49.OptionsColumn.AllowFocus = false;
     this.GridColumn49.OptionsFilter.AllowFilter = false;
     this.GridColumn49.Visible = true;
     this.GridColumn49.VisibleIndex = 6;
     this.GridColumn49.Width = 64;
     //
     // pnlCtrlBottom
     //
     this.pnlCtrlBottom.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonCancel);
     this.pnlCtrlBottom.Controls.Add(this.simpleButtonOK);
     this.pnlCtrlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlCtrlBottom.Location = new System.Drawing.Point(0, 198);
     this.pnlCtrlBottom.Name = "pnlCtrlBottom";
     this.pnlCtrlBottom.Size = new System.Drawing.Size(612, 58);
     this.pnlCtrlBottom.TabIndex = 2;
     this.pnlCtrlBottom.Text = "panelControl3";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(520, 20);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex = 16;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(434, 20);
     this.simpleButtonOK.Name = "simpleButtonOK";
     this.simpleButtonOK.TabIndex = 15;
     this.simpleButtonOK.Text = "OK";
     this.simpleButtonOK.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormTopUpSingleTreatment
     //
     this.AcceptButton = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton = this.simpleButtonCancel;
     this.ClientSize = new System.Drawing.Size(612, 256);
     this.Controls.Add(this.pnlCtrlCenter);
     this.Controls.Add(this.pnlCtrlTop);
     this.Controls.Add(this.pnlCtrlBottom);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormTopUpSingleTreatment";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Top Up Single Treatment";
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlTop)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlCenter)).EndInit();
     this.pnlCtrlCenter.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridControl6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pnlCtrlBottom)).EndInit();
     this.pnlCtrlBottom.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #37
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.gridControl1 = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.colstrMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colnMembershipNo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrMemberName = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrCardName = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrNRICFIN = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colfSingaporean = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.colfMember = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.colfAirCrew = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.coldtDOB = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrAddress1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrAddress2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrPostalCode = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrHomeNo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrOfficeNo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrMobileNo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrPagerNo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colfSMS = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.colfEmail = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.colfPostalMail = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.colstrEmail = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrAltEmail = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colnMediaSourceID = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrMediaSource = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrCompany = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrOccupation = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colnLoyaltyStatusID = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrRemarks = new DevExpress.XtraGrid.Columns.GridColumn();
			this.coldtSignupDate = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrCreditCardNo = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrIntroducerMembershipID = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colfLockerDeposit = new DevExpress.XtraGrid.Columns.GridColumn();
			this.repositoryItemCheckEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
			this.colnSignupID = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colnCardStatusID = new DevExpress.XtraGrid.Columns.GridColumn();
			this.colstrCardBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
			this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
			this.sbtnOK = new DevExpress.XtraEditors.SimpleButton();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.label2 = new System.Windows.Forms.Label();
			this.luedtBranchCode = new DevExpress.XtraEditors.LookUpEdit();
			this.label1 = new System.Windows.Forms.Label();
			this.sbtnSearch = new DevExpress.XtraEditors.SimpleButton();
			this.txtSearchKey = new DevExpress.XtraEditors.TextEdit();
			this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
			((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.luedtBranchCode.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.txtSearchKey.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
			this.panelControl2.SuspendLayout();
			this.SuspendLayout();
			// 
			// gridControl1
			// 
			this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl1.EmbeddedNavigator
			// 
			this.gridControl1.EmbeddedNavigator.Name = "";
			this.gridControl1.Location = new System.Drawing.Point(0, 46);
			this.gridControl1.MainView = this.gridView1;
			this.gridControl1.Name = "gridControl1";
			this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
																												  this.repositoryItemCheckEdit1,
																												  this.repositoryItemCheckEdit2,
																												  this.repositoryItemCheckEdit3,
																												  this.repositoryItemCheckEdit4,
																												  this.repositoryItemCheckEdit5,
																												  this.repositoryItemCheckEdit6,
																												  this.repositoryItemCheckEdit7});
			this.gridControl1.Size = new System.Drawing.Size(938, 460);
			this.gridControl1.TabIndex = 1;
			this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																										this.gridView1});
			// 
			// gridView1
			// 
			this.gridView1.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
			this.gridView1.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
			this.gridView1.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.ColumnFilterButton.Options.UseBackColor = true;
			this.gridView1.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
			this.gridView1.Appearance.ColumnFilterButton.Options.UseForeColor = true;
			this.gridView1.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
			this.gridView1.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
			this.gridView1.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
			this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
			this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
			this.gridView1.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
			this.gridView1.Appearance.Empty.BackColor2 = System.Drawing.Color.White;
			this.gridView1.Appearance.Empty.Options.UseBackColor = true;
			this.gridView1.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
			this.gridView1.Appearance.EvenRow.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
			this.gridView1.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.EvenRow.Options.UseBackColor = true;
			this.gridView1.Appearance.EvenRow.Options.UseBorderColor = true;
			this.gridView1.Appearance.EvenRow.Options.UseForeColor = true;
			this.gridView1.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
			this.gridView1.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
			this.gridView1.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.FilterCloseButton.Options.UseBackColor = true;
			this.gridView1.Appearance.FilterCloseButton.Options.UseBorderColor = true;
			this.gridView1.Appearance.FilterCloseButton.Options.UseForeColor = true;
			this.gridView1.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
			this.gridView1.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.White;
			this.gridView1.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.FilterPanel.Options.UseBackColor = true;
			this.gridView1.Appearance.FilterPanel.Options.UseForeColor = true;
			this.gridView1.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(122)), ((System.Byte)(114)), ((System.Byte)(113)));
			this.gridView1.Appearance.FixedLine.Options.UseBackColor = true;
			this.gridView1.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
			this.gridView1.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.FocusedCell.Options.UseBackColor = true;
			this.gridView1.Appearance.FocusedCell.Options.UseForeColor = true;
			this.gridView1.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(200)), ((System.Byte)(192)), ((System.Byte)(157)));
			this.gridView1.Appearance.FocusedRow.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(226)), ((System.Byte)(219)), ((System.Byte)(188)));
			this.gridView1.Appearance.FocusedRow.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.FocusedRow.Options.UseBackColor = true;
			this.gridView1.Appearance.FocusedRow.Options.UseBorderColor = true;
			this.gridView1.Appearance.FocusedRow.Options.UseForeColor = true;
			this.gridView1.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
			this.gridView1.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
			this.gridView1.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.FooterPanel.Options.UseBackColor = true;
			this.gridView1.Appearance.FooterPanel.Options.UseBorderColor = true;
			this.gridView1.Appearance.FooterPanel.Options.UseForeColor = true;
			this.gridView1.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
			this.gridView1.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
			this.gridView1.Appearance.GroupButton.Options.UseBackColor = true;
			this.gridView1.Appearance.GroupButton.Options.UseBorderColor = true;
			this.gridView1.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
			this.gridView1.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
			this.gridView1.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.GroupFooter.Options.UseBackColor = true;
			this.gridView1.Appearance.GroupFooter.Options.UseBorderColor = true;
			this.gridView1.Appearance.GroupFooter.Options.UseForeColor = true;
			this.gridView1.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(246)), ((System.Byte)(242)), ((System.Byte)(213)));
			this.gridView1.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
			this.gridView1.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.GroupPanel.Options.UseBackColor = true;
			this.gridView1.Appearance.GroupPanel.Options.UseForeColor = true;
			this.gridView1.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
			this.gridView1.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
			this.gridView1.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.GroupRow.Options.UseBackColor = true;
			this.gridView1.Appearance.GroupRow.Options.UseBorderColor = true;
			this.gridView1.Appearance.GroupRow.Options.UseForeColor = true;
			this.gridView1.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
			this.gridView1.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
			this.gridView1.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.HeaderPanel.Options.UseBackColor = true;
			this.gridView1.Appearance.HeaderPanel.Options.UseBorderColor = true;
			this.gridView1.Appearance.HeaderPanel.Options.UseForeColor = true;
			this.gridView1.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(237)), ((System.Byte)(230)), ((System.Byte)(203)));
			this.gridView1.Appearance.HideSelectionRow.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(237)), ((System.Byte)(230)), ((System.Byte)(203)));
			this.gridView1.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.HideSelectionRow.Options.UseBackColor = true;
			this.gridView1.Appearance.HideSelectionRow.Options.UseBorderColor = true;
			this.gridView1.Appearance.HideSelectionRow.Options.UseForeColor = true;
			this.gridView1.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
			this.gridView1.Appearance.HorzLine.Options.UseBackColor = true;
			this.gridView1.Appearance.OddRow.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(242)), ((System.Byte)(244)), ((System.Byte)(236)));
			this.gridView1.Appearance.OddRow.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(242)), ((System.Byte)(244)), ((System.Byte)(236)));
			this.gridView1.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.OddRow.Options.UseBackColor = true;
			this.gridView1.Appearance.OddRow.Options.UseBorderColor = true;
			this.gridView1.Appearance.OddRow.Options.UseForeColor = true;
			this.gridView1.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(251)), ((System.Byte)(252)), ((System.Byte)(247)));
			this.gridView1.Appearance.Preview.Font = new System.Drawing.Font("Verdana", 7.5F);
			this.gridView1.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(148)), ((System.Byte)(148)), ((System.Byte)(148)));
			this.gridView1.Appearance.Preview.Options.UseBackColor = true;
			this.gridView1.Appearance.Preview.Options.UseFont = true;
			this.gridView1.Appearance.Preview.Options.UseForeColor = true;
			this.gridView1.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(242)), ((System.Byte)(244)), ((System.Byte)(236)));
			this.gridView1.Appearance.Row.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.Row.Options.UseBackColor = true;
			this.gridView1.Appearance.Row.Options.UseForeColor = true;
			this.gridView1.Appearance.RowSeparator.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
			this.gridView1.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.White;
			this.gridView1.Appearance.RowSeparator.Options.UseBackColor = true;
			this.gridView1.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(215)), ((System.Byte)(188)));
			this.gridView1.Appearance.SelectedRow.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(237)), ((System.Byte)(230)), ((System.Byte)(203)));
			this.gridView1.Appearance.SelectedRow.ForeColor = System.Drawing.Color.Black;
			this.gridView1.Appearance.SelectedRow.Options.UseBackColor = true;
			this.gridView1.Appearance.SelectedRow.Options.UseBorderColor = true;
			this.gridView1.Appearance.SelectedRow.Options.UseForeColor = true;
			this.gridView1.Appearance.TopNewRow.BackColor = System.Drawing.Color.White;
			this.gridView1.Appearance.TopNewRow.Options.UseBackColor = true;
			this.gridView1.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
			this.gridView1.Appearance.VertLine.Options.UseBackColor = true;
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.colstrMembershipID,
																							 this.colstrBranchCode,
																							 this.colnMembershipNo,
																							 this.colstrMemberName,
																							 this.colstrCardName,
																							 this.colstrNRICFIN,
																							 this.colfSingaporean,
																							 this.colfMember,
																							 this.colfAirCrew,
																							 this.coldtDOB,
																							 this.colstrAddress1,
																							 this.colstrAddress2,
																							 this.colstrPostalCode,
																							 this.colstrHomeNo,
																							 this.colstrOfficeNo,
																							 this.colstrMobileNo,
																							 this.colstrPagerNo,
																							 this.colfSMS,
																							 this.colfEmail,
																							 this.colfPostalMail,
																							 this.colstrEmail,
																							 this.colstrAltEmail,
																							 this.colnMediaSourceID,
																							 this.colstrMediaSource,
																							 this.colstrCompany,
																							 this.colstrOccupation,
																							 this.colnLoyaltyStatusID,
																							 this.colstrRemarks,
																							 this.coldtSignupDate,
																							 this.colstrCreditCardNo,
																							 this.colstrIntroducerMembershipID,
																							 this.colfLockerDeposit,
																							 this.colnSignupID,
																							 this.colnCardStatusID,
																							 this.colstrCardBranchCode});
			this.gridView1.GridControl = this.gridControl1;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsBehavior.AllowIncrementalSearch = true;
			this.gridView1.OptionsBehavior.Editable = false;
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.EnableAppearanceEvenRow = true;
			this.gridView1.OptionsView.EnableAppearanceOddRow = true;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			this.gridView1.DoubleClick += new System.EventHandler(this.gridView1_DoubleClick);
			// 
			// colstrMembershipID
			// 
			this.colstrMembershipID.Caption = "Membership ID";
			this.colstrMembershipID.FieldName = "strMembershipID";
			this.colstrMembershipID.Name = "colstrMembershipID";
			this.colstrMembershipID.Visible = true;
			this.colstrMembershipID.VisibleIndex = 0;
			this.colstrMembershipID.Width = 83;
			// 
			// colstrBranchCode
			// 
			this.colstrBranchCode.Caption = "Branch Code";
			this.colstrBranchCode.FieldName = "strBranchCode";
			this.colstrBranchCode.Name = "colstrBranchCode";
			this.colstrBranchCode.Visible = true;
			this.colstrBranchCode.VisibleIndex = 1;
			this.colstrBranchCode.Width = 73;
			// 
			// colnMembershipNo
			// 
			this.colnMembershipNo.Caption = "Membership No";
			this.colnMembershipNo.FieldName = "nMembershipNo";
			this.colnMembershipNo.Name = "colnMembershipNo";
			// 
			// colstrMemberName
			// 
			this.colstrMemberName.Caption = "Member Name";
			this.colstrMemberName.FieldName = "strMemberName";
			this.colstrMemberName.Name = "colstrMemberName";
			this.colstrMemberName.Visible = true;
			this.colstrMemberName.VisibleIndex = 2;
			this.colstrMemberName.Width = 89;
			// 
			// colstrCardName
			// 
			this.colstrCardName.Caption = "Card Name";
			this.colstrCardName.FieldName = "strCardName";
			this.colstrCardName.Name = "colstrCardName";
			this.colstrCardName.Visible = true;
			this.colstrCardName.VisibleIndex = 3;
			// 
			// colstrNRICFIN
			// 
			this.colstrNRICFIN.Caption = "NRIC/FIN";
			this.colstrNRICFIN.FieldName = "strNRICFIN";
			this.colstrNRICFIN.Name = "colstrNRICFIN";
			this.colstrNRICFIN.Visible = true;
			this.colstrNRICFIN.VisibleIndex = 4;
			this.colstrNRICFIN.Width = 69;
			// 
			// colfSingaporean
			// 
			this.colfSingaporean.Caption = "Singaporean?";
			this.colfSingaporean.ColumnEdit = this.repositoryItemCheckEdit1;
			this.colfSingaporean.FieldName = "fSingaporean";
			this.colfSingaporean.Name = "colfSingaporean";
			// 
			// repositoryItemCheckEdit1
			// 
			this.repositoryItemCheckEdit1.AutoHeight = false;
			this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
			this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// colfMember
			// 
			this.colfMember.Caption = "Member?";
			this.colfMember.ColumnEdit = this.repositoryItemCheckEdit2;
			this.colfMember.FieldName = "fMember";
			this.colfMember.Name = "colfMember";
			this.colfMember.Visible = true;
			this.colfMember.VisibleIndex = 5;
			this.colfMember.Width = 53;
			// 
			// repositoryItemCheckEdit2
			// 
			this.repositoryItemCheckEdit2.AutoHeight = false;
			this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
			this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// colfAirCrew
			// 
			this.colfAirCrew.Caption = "Air Crew?";
			this.colfAirCrew.ColumnEdit = this.repositoryItemCheckEdit3;
			this.colfAirCrew.FieldName = "fAirCrew";
			this.colfAirCrew.Name = "colfAirCrew";
			this.colfAirCrew.Visible = true;
			this.colfAirCrew.VisibleIndex = 6;
			this.colfAirCrew.Width = 56;
			// 
			// repositoryItemCheckEdit3
			// 
			this.repositoryItemCheckEdit3.AutoHeight = false;
			this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
			this.repositoryItemCheckEdit3.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// coldtDOB
			// 
			this.coldtDOB.Caption = "DOB";
			this.coldtDOB.FieldName = "dtDOB";
			this.coldtDOB.Name = "coldtDOB";
			this.coldtDOB.Visible = true;
			this.coldtDOB.VisibleIndex = 7;
			this.coldtDOB.Width = 74;
			// 
			// colstrAddress1
			// 
			this.colstrAddress1.Caption = "Address1";
			this.colstrAddress1.FieldName = "strAddress1";
			this.colstrAddress1.Name = "colstrAddress1";
			// 
			// colstrAddress2
			// 
			this.colstrAddress2.Caption = "Address2";
			this.colstrAddress2.FieldName = "strAddress2";
			this.colstrAddress2.Name = "colstrAddress2";
			// 
			// colstrPostalCode
			// 
			this.colstrPostalCode.Caption = "Postal Code";
			this.colstrPostalCode.FieldName = "strPostalCode";
			this.colstrPostalCode.Name = "colstrPostalCode";
			// 
			// colstrHomeNo
			// 
			this.colstrHomeNo.Caption = "Home No";
			this.colstrHomeNo.FieldName = "strHomeNo";
			this.colstrHomeNo.Name = "colstrHomeNo";
			this.colstrHomeNo.Visible = true;
			this.colstrHomeNo.VisibleIndex = 8;
			this.colstrHomeNo.Width = 74;
			// 
			// colstrOfficeNo
			// 
			this.colstrOfficeNo.Caption = "Office No";
			this.colstrOfficeNo.FieldName = "strOfficeNo";
			this.colstrOfficeNo.Name = "colstrOfficeNo";
			// 
			// colstrMobileNo
			// 
			this.colstrMobileNo.Caption = "Mobile No";
			this.colstrMobileNo.FieldName = "strMobileNo";
			this.colstrMobileNo.Name = "colstrMobileNo";
			this.colstrMobileNo.Visible = true;
			this.colstrMobileNo.VisibleIndex = 9;
			this.colstrMobileNo.Width = 74;
			// 
			// colstrPagerNo
			// 
			this.colstrPagerNo.Caption = "Pager No";
			this.colstrPagerNo.FieldName = "strPagerNo";
			this.colstrPagerNo.Name = "colstrPagerNo";
			// 
			// colfSMS
			// 
			this.colfSMS.Caption = "SMS?";
			this.colfSMS.ColumnEdit = this.repositoryItemCheckEdit4;
			this.colfSMS.FieldName = "fSMS";
			this.colfSMS.Name = "colfSMS";
			// 
			// repositoryItemCheckEdit4
			// 
			this.repositoryItemCheckEdit4.AutoHeight = false;
			this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
			this.repositoryItemCheckEdit4.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// colfEmail
			// 
			this.colfEmail.Caption = "Email?";
			this.colfEmail.ColumnEdit = this.repositoryItemCheckEdit5;
			this.colfEmail.FieldName = "fEmail";
			this.colfEmail.Name = "colfEmail";
			// 
			// repositoryItemCheckEdit5
			// 
			this.repositoryItemCheckEdit5.AutoHeight = false;
			this.repositoryItemCheckEdit5.Name = "repositoryItemCheckEdit5";
			this.repositoryItemCheckEdit5.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// colfPostalMail
			// 
			this.colfPostalMail.Caption = "DNC?";
			this.colfPostalMail.ColumnEdit = this.repositoryItemCheckEdit6;
			this.colfPostalMail.FieldName = "fPostalMail";
			this.colfPostalMail.Name = "colfPostalMail";
			// 
			// repositoryItemCheckEdit6
			// 
			this.repositoryItemCheckEdit6.AutoHeight = false;
			this.repositoryItemCheckEdit6.Name = "repositoryItemCheckEdit6";
			this.repositoryItemCheckEdit6.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// colstrEmail
			// 
			this.colstrEmail.Caption = "Email";
			this.colstrEmail.FieldName = "strEmail";
			this.colstrEmail.Name = "colstrEmail";
			this.colstrEmail.Visible = true;
			this.colstrEmail.VisibleIndex = 10;
			this.colstrEmail.Width = 109;
			// 
			// colstrAltEmail
			// 
			this.colstrAltEmail.Caption = "Alt Email";
			this.colstrAltEmail.FieldName = "strAltEmail";
			this.colstrAltEmail.Name = "colstrAltEmail";
			// 
			// colnMediaSourceID
			// 
			this.colnMediaSourceID.Caption = "Media Source ID";
			this.colnMediaSourceID.FieldName = "nMediaSourceID";
			this.colnMediaSourceID.Name = "colnMediaSourceID";
			// 
			// colstrMediaSource
			// 
			this.colstrMediaSource.Caption = "Media Source";
			this.colstrMediaSource.FieldName = "strMediaSource";
			this.colstrMediaSource.Name = "colstrMediaSource";
			// 
			// colstrCompany
			// 
			this.colstrCompany.Caption = "Company";
			this.colstrCompany.FieldName = "strCompany";
			this.colstrCompany.Name = "colstrCompany";
			// 
			// colstrOccupation
			// 
			this.colstrOccupation.Caption = "Occupation";
			this.colstrOccupation.FieldName = "strOccupation";
			this.colstrOccupation.Name = "colstrOccupation";
			// 
			// colnLoyaltyStatusID
			// 
			this.colnLoyaltyStatusID.Caption = "Loyalty Status ID";
			this.colnLoyaltyStatusID.FieldName = "nLoyaltyStatusID";
			this.colnLoyaltyStatusID.Name = "colnLoyaltyStatusID";
			// 
			// colstrRemarks
			// 
			this.colstrRemarks.Caption = "Remarks";
			this.colstrRemarks.FieldName = "strRemarks";
			this.colstrRemarks.Name = "colstrRemarks";
			// 
			// coldtSignupDate
			// 
			this.coldtSignupDate.Caption = "Signup Date";
			this.coldtSignupDate.FieldName = "dtSignupDate";
			this.coldtSignupDate.Name = "coldtSignupDate";
			// 
			// colstrCreditCardNo
			// 
			this.colstrCreditCardNo.Caption = "Credit Card No";
			this.colstrCreditCardNo.FieldName = "strCreditCardNo";
			this.colstrCreditCardNo.Name = "colstrCreditCardNo";
			// 
			// colstrIntroducerMembershipID
			// 
			this.colstrIntroducerMembershipID.Caption = "Introducer Membership ID";
			this.colstrIntroducerMembershipID.FieldName = "strIntroducerMembershipID";
			this.colstrIntroducerMembershipID.Name = "colstrIntroducerMembershipID";
			// 
			// colfLockerDeposit
			// 
			this.colfLockerDeposit.Caption = "Locker Deposit";
			this.colfLockerDeposit.ColumnEdit = this.repositoryItemCheckEdit7;
			this.colfLockerDeposit.FieldName = "fLockerDeposit";
			this.colfLockerDeposit.Name = "colfLockerDeposit";
			// 
			// repositoryItemCheckEdit7
			// 
			this.repositoryItemCheckEdit7.AutoHeight = false;
			this.repositoryItemCheckEdit7.Name = "repositoryItemCheckEdit7";
			this.repositoryItemCheckEdit7.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
			// 
			// colnSignupID
			// 
			this.colnSignupID.Caption = "Signup ID";
			this.colnSignupID.FieldName = "nSignupID";
			this.colnSignupID.Name = "colnSignupID";
			// 
			// colnCardStatusID
			// 
			this.colnCardStatusID.Caption = "Card Status ID";
			this.colnCardStatusID.FieldName = "nCardStatusID";
			this.colnCardStatusID.Name = "colnCardStatusID";
			// 
			// colstrCardBranchCode
			// 
			this.colstrCardBranchCode.Caption = "Card Branch Code";
			this.colstrCardBranchCode.FieldName = "strCardBranchCode";
			this.colstrCardBranchCode.Name = "colstrCardBranchCode";
			// 
			// sbtnCancel
			// 
			this.sbtnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.sbtnCancel.Location = new System.Drawing.Point(856, 8);
			this.sbtnCancel.Name = "sbtnCancel";
			this.sbtnCancel.TabIndex = 1;
			this.sbtnCancel.Text = "Cancel";
			this.sbtnCancel.Click += new System.EventHandler(this.sbtnCancel_Click);
			// 
			// sbtnOK
			// 
			this.sbtnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.sbtnOK.Location = new System.Drawing.Point(772, 8);
			this.sbtnOK.Name = "sbtnOK";
			this.sbtnOK.TabIndex = 0;
			this.sbtnOK.Text = "OK";
			this.sbtnOK.Click += new System.EventHandler(this.sbtnOK_Click);
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.label2);
			this.panelControl1.Controls.Add(this.luedtBranchCode);
			this.panelControl1.Controls.Add(this.label1);
			this.panelControl1.Controls.Add(this.sbtnSearch);
			this.panelControl1.Controls.Add(this.txtSearchKey);
			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(938, 46);
			this.panelControl1.TabIndex = 0;
			this.panelControl1.Text = "panelControl1";
			// 
			// label2
			// 
			this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.label2.Location = new System.Drawing.Point(26, 18);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(48, 18);
			this.label2.TabIndex = 26;
			this.label2.Text = "Name";
			// 
			// luedtBranchCode
			// 
			this.luedtBranchCode.Location = new System.Drawing.Point(296, 16);
			this.luedtBranchCode.Name = "luedtBranchCode";
			// 
			// luedtBranchCode.Properties
			// 
			this.luedtBranchCode.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																													new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.luedtBranchCode.Size = new System.Drawing.Size(126, 20);
			this.luedtBranchCode.TabIndex = 24;
			// 
			// label1
			// 
			this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.label1.Location = new System.Drawing.Point(238, 18);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(48, 18);
			this.label1.TabIndex = 25;
			this.label1.Text = "Branch:";
			// 
			// sbtnSearch
			// 
			this.sbtnSearch.Location = new System.Drawing.Point(438, 16);
			this.sbtnSearch.Name = "sbtnSearch";
			this.sbtnSearch.TabIndex = 1;
			this.sbtnSearch.Text = "Search";
			this.sbtnSearch.Click += new System.EventHandler(this.sbtnSearch_Click);
			// 
			// txtSearchKey
			// 
			this.txtSearchKey.EditValue = "";
			this.txtSearchKey.Location = new System.Drawing.Point(82, 18);
			this.txtSearchKey.Name = "txtSearchKey";
			this.txtSearchKey.Size = new System.Drawing.Size(146, 20);
			this.txtSearchKey.TabIndex = 0;
			// 
			// panelControl2
			// 
			this.panelControl2.Controls.Add(this.sbtnCancel);
			this.panelControl2.Controls.Add(this.sbtnOK);
			this.panelControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.panelControl2.Location = new System.Drawing.Point(0, 506);
			this.panelControl2.Name = "panelControl2";
			this.panelControl2.Size = new System.Drawing.Size(938, 38);
			this.panelControl2.TabIndex = 0;
			this.panelControl2.Text = "panelControl2";
			// 
			// frmSearchMember
			// 
			this.AcceptButton = this.sbtnSearch;
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.CancelButton = this.sbtnCancel;
			this.ClientSize = new System.Drawing.Size(938, 544);
			this.Controls.Add(this.gridControl1);
			this.Controls.Add(this.panelControl2);
			this.Controls.Add(this.panelControl1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.MaximizeBox = false;
			this.Name = "frmSearchMember";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Search Member";
			((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.luedtBranchCode.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.txtSearchKey.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
			this.panelControl2.ResumeLayout(false);
			this.ResumeLayout(false);

		}
        public void InitForm()
        {
            //目录权限
            Splasher.Status = "正在检查软件目录...";
            if (!Util.DirectoryAction.HasEveryone)
            {
                //创建启动对象
                System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
                startInfo.UseShellExecute = true;
                startInfo.WorkingDirectory = Environment.CurrentDirectory;
                startInfo.FileName = "SetAccessSecurity.exe";
                startInfo.Arguments = Application.StartupPath;//  空格分隔各个参数 这里有一个参数。
                startInfo.WindowStyle = ProcessWindowStyle.Hidden;
                startInfo.CreateNoWindow = true;//让窗体不显示
                //设置启动动作,确保以管理员身份运行
                startInfo.Verb = "runas";
                try
                {
                    System.Diagnostics.Process.Start(startInfo);
                }
                catch (Exception ex)
                {
                    HttpProxy.LogProxy.DoTask(ex, SQLiteController.Biz.GetAuthor());
                    MessageConsole.WriteLog(ex);
                }
            }

            Splasher.Status = "正在读取配置文件...";
            SkinHelper.InitSkinGallery(this.ribbonGalleryBarItem1);
            this.ribbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Hidden;

            //设置皮肤
            checkFile();//检查文件
            getXmlSkin();//获取xml主题
            UserLookAndFeel.Default.SetSkinStyle(defaultSkinName);//设置主题样式
            ribbonGalleryBarItem1.Caption = "主题:" + defaultSkinName;

            Splasher.Status = "正在设置表格样式...";
            //设置表格相关
            //this.dgvNum.OptionsBehavior.EditorShowMode = DevExpress.Utils.EditorShowMode.Click;
            //this.dgvNum.OptionsBehavior.Editable = false;
            //设置成一次选择一行,并且不能被编辑
            this.dgvNum.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
            this.dgvNum.OptionsBehavior.Editable = false;
            this.dgvNum.OptionsSelection.EnableAppearanceFocusedCell = false;

            this.dgvQuan.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
            this.dgvQuan.OptionsBehavior.Editable = false;
            this.dgvQuan.OptionsSelection.EnableAppearanceFocusedCell = false;

            // this.dgvContract.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.CellFocus;
            this.dgvContract.OptionsBehavior.Editable = true;
            //  this.dgvContract.OptionsSelection.EnableAppearanceFocusedCell = true;
            //Contract复制选中单元格内容
            this.dgvContract.KeyDown += dgvContract_KeyDown;
            //根据条件设置行颜色
            this.dgvContract.RowStyle += dgvContract_RowStyle;

            repCheckNum = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.dgvControlContract.RepositoryItems.Add(repCheckNum);
            repCheckQuan = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
            this.dgvControlContract.RepositoryItems.Add(repCheckQuan);

            //显示行号
            this.dgvNum.IndicatorWidth = 40;
            this.dgvNum.CustomDrawRowIndicator += dgvNum_CustomDrawRowIndicator;

            this.dgvQuan.IndicatorWidth = 40;
            this.dgvQuan.CustomDrawRowIndicator += dgvQuan_CustomDrawRowIndicator;

            this.dgvContract.IndicatorWidth = 40;
            this.dgvContract.CustomDrawRowIndicator += dgvContract_CustomDrawRowIndicator;
            //双击
            this.dgvNum.DoubleClick += dgvNum_DoubleClick;
            this.dgvQuan.DoubleClick += dgvQuan_DoubleClick;

            this.dgvNum.SelectionChanged += dgvNum_SelectionChanged;
            this.dgvQuan.SelectionChanged += dgvQuan_SelectionChanged;
            this.dgvNum.RowClick += dgvNum_RowClick;

            this.fileList.SelectedIndex = 0;
            this.KeyPreview = true;

            Splasher.Status = "正在初始化合同操作对象...";
            //初始化合同操作对象
            this.contract = new MainWin.Contract(this.country);
            this.contract._syncContractCallback = (isEnable) =>
            {
                this.btnSync.Enabled = isEnable;
                //if (isEnable)
                //{
                //    //同步完成后自动刷新合同列表
                //    this.bindContract(1);
                //}
            };
            this.contract._checkContractCallback = (result) =>
            {
                MessageConsole.WriteConsole(result.CheckResult);
                if (XtraMessageBox.Show("检查完成,结果已打印在下方输出窗口\r\n是否导出结果报告?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == System.Windows.Forms.DialogResult.Yes)
                {
                    string fileName = Model.Path.TempPath + "contractResult.docx";
                    Controller.WordController.CreateContractCheckResult(fileName, result);
                    MessageConsole.WriteConsole("导出结果报告成功:" + fileName);
                }
            };
            //自动保存
            Splasher.Status = "正在初始化自动保存线程...";
            this.saveDataThread = new System.Threading.Thread(new System.Threading.ThreadStart(Controller.MainWin.MotivationData.Instanse.AutoSave));
            this.saveDataThread.IsBackground = true;
            //合同列表
            this.bindContract(Model.MotivationEnum.CountryEnum.UK, 1);

            Splasher.Status = "正在初始化客户管理系统登录...";
            //登录client.jjl.cn
            loginForm = new LoginForm();
            this.log = new MainWin.Log(this.Text);
            //登录远程服务器
            this.log.WriteLogin();
        }
Exemple #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     this.panelControlTop = new DevExpress.XtraEditors.PanelControl();
     this.label1 = new System.Windows.Forms.Label();
     this.panelControlMemberPackage = new DevExpress.XtraEditors.PanelControl();
     this.GridControlMemberPackage = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     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.GridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridControlMemberCredit = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberCredit = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.panelControlPackage = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK1 = new DevExpress.XtraEditors.SimpleButton();
     this.gridControlPackage = new DevExpress.XtraGrid.GridControl();
     this.gridViewPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPackageCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colItemDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colItemPrice = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChecked = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridControlCredit = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.label2 = new System.Windows.Forms.Label();
     this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlTop)).BeginInit();
     this.panelControlTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberCredit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCredit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).BeginInit();
     this.panelControlPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlCredit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControlTop
     //
     this.panelControlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlTop.Controls.Add(this.label1);
     this.panelControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControlTop.Location = new System.Drawing.Point(0, 6);
     this.panelControlTop.Name = "panelControlTop";
     this.panelControlTop.Size = new System.Drawing.Size(1050, 44);
     this.panelControlTop.TabIndex = 0;
     this.panelControlTop.Paint += new System.Windows.Forms.PaintEventHandler(this.panelControlTop_Paint);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(14, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(344, 27);
     this.label1.TabIndex = 0;
     this.label1.Text = "Upgrade Package";
     //
     // panelControlMemberPackage
     //
     this.panelControlMemberPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlMemberPackage.Location = new System.Drawing.Point(0, 0);
     this.panelControlMemberPackage.Name = "panelControlMemberPackage";
     this.panelControlMemberPackage.Size = new System.Drawing.Size(1037, 254);
     this.panelControlMemberPackage.TabIndex = 1;
     //
     // GridControlMemberPackage
     //
     this.GridControlMemberPackage.Location = new System.Drawing.Point(0, -5);
     this.GridControlMemberPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControlMemberPackage.MainView = this.gridViewMemberPackage;
     this.GridControlMemberPackage.Name = "GridControlMemberPackage";
     this.GridControlMemberPackage.Size = new System.Drawing.Size(1037, 333);
     this.GridControlMemberPackage.TabIndex = 8;
     this.GridControlMemberPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMemberPackage});
     this.GridControlMemberPackage.Click += new System.EventHandler(this.GridControlMemberPackage_Click);
     //
     // gridViewMemberPackage
     //
     this.gridViewMemberPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.GridColumn28,
     this.GridColumn30,
     this.GridColumn31,
     this.GridColumn32,
     this.GridColumn33,
     this.GridColumn34,
     this.GridColumn35,
     this.GridColumn44,
     this.GridColumn45,
     this.GridColumn49});
     this.gridViewMemberPackage.GridControl = this.GridControlMemberPackage;
     this.gridViewMemberPackage.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMemberPackage.Name = "gridViewMemberPackage";
     this.gridViewMemberPackage.OptionsView.ColumnAutoWidth = false;
     this.gridViewMemberPackage.OptionsView.ShowGroupPanel = false;
     this.gridViewMemberPackage.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberPackage_FocusedRowChanged);
     this.gridViewMemberPackage.CustomColumnDisplayText += new DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventHandler(this.gridViewMemberPackage_CustomColumnDisplayText);
     //
     // GridColumn28
     //
     this.GridColumn28.Caption = "Package ID";
     this.GridColumn28.FieldName = "nPackageID";
     this.GridColumn28.Name = "GridColumn28";
     this.GridColumn28.OptionsColumn.AllowEdit = false;
     this.GridColumn28.OptionsColumn.AllowFocus = false;
     this.GridColumn28.OptionsFilter.AllowFilter = false;
     this.GridColumn28.Visible = true;
     this.GridColumn28.VisibleIndex = 0;
     this.GridColumn28.Width = 69;
     //
     // GridColumn30
     //
     this.GridColumn30.Caption = "Package Code";
     this.GridColumn30.FieldName = "strPackageCode";
     this.GridColumn30.Name = "GridColumn30";
     this.GridColumn30.OptionsColumn.AllowEdit = false;
     this.GridColumn30.OptionsColumn.AllowFocus = false;
     this.GridColumn30.OptionsFilter.AllowFilter = false;
     this.GridColumn30.Visible = true;
     this.GridColumn30.VisibleIndex = 1;
     this.GridColumn30.Width = 90;
     //
     // GridColumn31
     //
     this.GridColumn31.Caption = "Package Description";
     this.GridColumn31.FieldName = "strDescription";
     this.GridColumn31.Name = "GridColumn31";
     this.GridColumn31.OptionsColumn.AllowEdit = false;
     this.GridColumn31.OptionsColumn.AllowFocus = false;
     this.GridColumn31.OptionsFilter.AllowFilter = false;
     this.GridColumn31.Visible = true;
     this.GridColumn31.VisibleIndex = 2;
     this.GridColumn31.Width = 108;
     //
     // GridColumn32
     //
     this.GridColumn32.Caption = "Purchase Date";
     this.GridColumn32.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn32.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn32.FieldName = "dtPurchaseDate";
     this.GridColumn32.Name = "GridColumn32";
     this.GridColumn32.OptionsColumn.AllowEdit = false;
     this.GridColumn32.OptionsColumn.AllowFocus = false;
     this.GridColumn32.OptionsFilter.AllowFilter = false;
     this.GridColumn32.Width = 84;
     //
     // GridColumn33
     //
     this.GridColumn33.Caption = "Receipt No";
     this.GridColumn33.FieldName = "strReceiptNo";
     this.GridColumn33.Name = "GridColumn33";
     this.GridColumn33.OptionsColumn.AllowEdit = false;
     this.GridColumn33.OptionsColumn.AllowFocus = false;
     this.GridColumn33.OptionsFilter.AllowFilter = false;
     this.GridColumn33.Visible = true;
     this.GridColumn33.VisibleIndex = 3;
     this.GridColumn33.Width = 82;
     //
     // GridColumn34
     //
     this.GridColumn34.Caption = "Balance";
     this.GridColumn34.FieldName = "Balance";
     this.GridColumn34.Name = "GridColumn34";
     this.GridColumn34.OptionsColumn.AllowEdit = false;
     this.GridColumn34.OptionsColumn.AllowFocus = false;
     this.GridColumn34.OptionsFilter.AllowFilter = false;
     this.GridColumn34.Width = 84;
     //
     // GridColumn35
     //
     this.GridColumn35.Caption = "Start Date";
     this.GridColumn35.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn35.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn35.FieldName = "dtStartDate";
     this.GridColumn35.Name = "GridColumn35";
     this.GridColumn35.OptionsColumn.AllowEdit = false;
     this.GridColumn35.OptionsColumn.AllowFocus = false;
     this.GridColumn35.OptionsFilter.AllowFilter = false;
     this.GridColumn35.Visible = true;
     this.GridColumn35.VisibleIndex = 4;
     this.GridColumn35.Width = 73;
     //
     // GridColumn44
     //
     this.GridColumn44.Caption = "Expiry Date";
     this.GridColumn44.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn44.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn44.FieldName = "dtExpiryDate";
     this.GridColumn44.Name = "GridColumn44";
     this.GridColumn44.OptionsColumn.AllowEdit = false;
     this.GridColumn44.OptionsColumn.AllowFocus = false;
     this.GridColumn44.OptionsFilter.AllowFilter = false;
     this.GridColumn44.Visible = true;
     this.GridColumn44.VisibleIndex = 5;
     this.GridColumn44.Width = 104;
     //
     // GridColumn45
     //
     this.GridColumn45.Caption = "Free Indicator";
     repositoryItemCheckEdit1.AutoHeight = false;
     repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.GridColumn45.ColumnEdit = repositoryItemCheckEdit1;
     this.GridColumn45.FieldName = "fFree";
     this.GridColumn45.Name = "GridColumn45";
     this.GridColumn45.OptionsColumn.AllowEdit = false;
     this.GridColumn45.OptionsColumn.AllowFocus = false;
     this.GridColumn45.OptionsFilter.AllowFilter = false;
     this.GridColumn45.Visible = true;
     this.GridColumn45.VisibleIndex = 6;
     this.GridColumn45.Width = 110;
     //
     // GridColumn49
     //
     this.GridColumn49.Caption = "Remark";
     this.GridColumn49.FieldName = "strRemarks";
     this.GridColumn49.Name = "GridColumn49";
     this.GridColumn49.OptionsColumn.AllowEdit = false;
     this.GridColumn49.OptionsColumn.AllowFocus = false;
     this.GridColumn49.OptionsFilter.AllowFilter = false;
     this.GridColumn49.Visible = true;
     this.GridColumn49.VisibleIndex = 7;
     this.GridColumn49.Width = 218;
     //
     // GridControlMemberCredit
     //
     this.GridControlMemberCredit.Dock = System.Windows.Forms.DockStyle.Top;
     this.GridControlMemberCredit.Location = new System.Drawing.Point(0, 0);
     this.GridControlMemberCredit.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControlMemberCredit.MainView = this.gridViewMemberCredit;
     this.GridControlMemberCredit.Name = "GridControlMemberCredit";
     this.GridControlMemberCredit.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit4});
     this.GridControlMemberCredit.Size = new System.Drawing.Size(1050, 332);
     this.GridControlMemberCredit.TabIndex = 9;
     this.GridControlMemberCredit.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMemberCredit});
     this.GridControlMemberCredit.Click += new System.EventHandler(this.GridControlMemberCredit_Click);
     //
     // gridViewMemberCredit
     //
     this.gridViewMemberCredit.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn2,
     this.gridColumn1,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn12,
     this.gridColumn11});
     this.gridViewMemberCredit.GridControl = this.GridControlMemberCredit;
     this.gridViewMemberCredit.Name = "gridViewMemberCredit";
     this.gridViewMemberCredit.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn1, DevExpress.Data.ColumnSortOrder.Descending)});
     this.gridViewMemberCredit.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberCredit_FocusedRowChanged);
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Code";
     this.gridColumn2.FieldName = "strCreditPackageCode";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsColumn.AllowFocus = false;
     this.gridColumn2.OptionsColumn.ReadOnly = true;
     this.gridColumn2.OptionsFilter.AllowFilter = false;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 68;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Credit Package";
     this.gridColumn1.FieldName = "nCreditPackageID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.AllowFocus = false;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.OptionsFilter.AllowFilter = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 79;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Description";
     this.gridColumn3.FieldName = "strDesciption";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.AllowFocus = false;
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.OptionsFilter.AllowFilter = false;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 68;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Date";
     this.gridColumn4.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn4.FieldName = "dtPurchaseDate";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 68;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Receipt #";
     this.gridColumn5.FieldName = "strReceiptNo";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.AllowFocus = false;
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     this.gridColumn5.OptionsFilter.AllowFilter = false;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 68;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Balance";
     this.gridColumn6.DisplayFormat.FormatString = "n2";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "Balance";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 68;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Start Date";
     this.gridColumn7.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn7.FieldName = "dtStartDate";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.AllowFocus = false;
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.OptionsFilter.AllowFilter = false;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 68;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Expiry Date";
     this.gridColumn8.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn8.FieldName = "dtExpiryDate";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.OptionsColumn.AllowEdit = false;
     this.gridColumn8.OptionsColumn.AllowFocus = false;
     this.gridColumn8.OptionsColumn.ReadOnly = true;
     this.gridColumn8.OptionsFilter.AllowFilter = false;
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     this.gridColumn8.Width = 68;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Free";
     this.gridColumn9.ColumnEdit = this.repositoryItemCheckEdit4;
     this.gridColumn9.FieldName = "fFree";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.OptionsColumn.AllowFocus = false;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.OptionsFilter.AllowFilter = false;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     this.gridColumn9.Width = 68;
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Status";
     this.gridColumn10.FieldName = "nStatusID";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.OptionsColumn.AllowFocus = false;
     this.gridColumn10.OptionsColumn.ReadOnly = true;
     this.gridColumn10.OptionsFilter.AllowFilter = false;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 9;
     this.gridColumn10.Width = 68;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Employee";
     this.gridColumn12.FieldName = "strEmployeeName";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.OptionsColumn.AllowEdit = false;
     this.gridColumn12.OptionsColumn.AllowFocus = false;
     this.gridColumn12.OptionsColumn.ReadOnly = true;
     this.gridColumn12.OptionsFilter.AllowFilter = false;
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 10;
     this.gridColumn12.Width = 68;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Remarks";
     this.gridColumn11.FieldName = "strRemarks";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowEdit = false;
     this.gridColumn11.OptionsColumn.AllowFocus = false;
     this.gridColumn11.OptionsFilter.AllowFilter = false;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 11;
     //
     // splitterControl1
     //
     this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 0);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(1050, 6);
     this.splitterControl1.TabIndex = 2;
     this.splitterControl1.TabStop = false;
     //
     // panelControlPackage
     //
     this.panelControlPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlPackage.Controls.Add(this.simpleButton2);
     this.panelControlPackage.Controls.Add(this.simpleButtonOK1);
     this.panelControlPackage.Controls.Add(this.GridControlMemberPackage);
     this.panelControlPackage.Controls.Add(this.GridControlMemberCredit);
     this.panelControlPackage.Controls.Add(this.gridControlPackage);
     this.panelControlPackage.Controls.Add(this.gridControlCredit);
     this.panelControlPackage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControlPackage.Location = new System.Drawing.Point(0, 50);
     this.panelControlPackage.Name = "panelControlPackage";
     this.panelControlPackage.Size = new System.Drawing.Size(1050, 618);
     this.panelControlPackage.TabIndex = 4;
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location = new System.Drawing.Point(934, 579);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(90, 27);
     this.simpleButton2.TabIndex = 12;
     this.simpleButton2.Text = "Cancel";
     //
     // simpleButtonOK1
     //
     this.simpleButtonOK1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK1.Location = new System.Drawing.Point(830, 579);
     this.simpleButtonOK1.Name = "simpleButtonOK1";
     this.simpleButtonOK1.Size = new System.Drawing.Size(90, 27);
     this.simpleButtonOK1.TabIndex = 11;
     this.simpleButtonOK1.Text = "OK";
     this.simpleButtonOK1.Click += new System.EventHandler(this.simpleButtonOK1_Click);
     //
     // gridControlPackage
     //
     gridLevelNode1.RelationName = "Level1";
     this.gridControlPackage.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.gridControlPackage.Location = new System.Drawing.Point(0, 332);
     this.gridControlPackage.MainView = this.gridViewPackage;
     this.gridControlPackage.Name = "gridControlPackage";
     this.gridControlPackage.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit2});
     this.gridControlPackage.Size = new System.Drawing.Size(1037, 233);
     this.gridControlPackage.TabIndex = 3;
     this.gridControlPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewPackage});
     this.gridControlPackage.Click += new System.EventHandler(this.gridControlPackage_Click);
     //
     // gridViewPackage
     //
     this.gridViewPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colPackageCode,
     this.colItemDescription,
     this.colItemPrice,
     this.colChecked});
     this.gridViewPackage.GridControl = this.gridControlPackage;
     this.gridViewPackage.Name = "gridViewPackage";
     //
     // colPackageCode
     //
     this.colPackageCode.Caption = "Package Code";
     this.colPackageCode.FieldName = "strPackageCode";
     this.colPackageCode.Name = "colPackageCode";
     this.colPackageCode.OptionsColumn.AllowEdit = false;
     this.colPackageCode.OptionsFilter.AllowFilter = false;
     this.colPackageCode.Visible = true;
     this.colPackageCode.VisibleIndex = 1;
     this.colPackageCode.Width = 221;
     //
     // colItemDescription
     //
     this.colItemDescription.Caption = "Description";
     this.colItemDescription.FieldName = "strDescription";
     this.colItemDescription.Name = "colItemDescription";
     this.colItemDescription.OptionsColumn.AllowEdit = false;
     this.colItemDescription.OptionsFilter.AllowFilter = false;
     this.colItemDescription.Visible = true;
     this.colItemDescription.VisibleIndex = 2;
     this.colItemDescription.Width = 276;
     //
     // colItemPrice
     //
     this.colItemPrice.Caption = "Unit Price";
     this.colItemPrice.FieldName = "mListPrice";
     this.colItemPrice.Name = "colItemPrice";
     this.colItemPrice.OptionsColumn.AllowEdit = false;
     this.colItemPrice.OptionsFilter.AllowFilter = false;
     this.colItemPrice.Visible = true;
     this.colItemPrice.VisibleIndex = 3;
     this.colItemPrice.Width = 285;
     //
     // colChecked
     //
     this.colChecked.ColumnEdit = this.repositoryItemCheckEdit2;
     this.colChecked.FieldName = "Checked";
     this.colChecked.Name = "colChecked";
     this.colChecked.Visible = true;
     this.colChecked.VisibleIndex = 0;
     this.colChecked.Width = 52;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit2.ValueGrayed = "";
     //
     // gridControlCredit
     //
     gridLevelNode2.RelationName = "Level1";
     this.gridControlCredit.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     this.gridControlCredit.Location = new System.Drawing.Point(0, 332);
     this.gridControlCredit.MainView = this.gridView1;
     this.gridControlCredit.Name = "gridControlCredit";
     this.gridControlCredit.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit3});
     this.gridControlCredit.Size = new System.Drawing.Size(1037, 238);
     this.gridControlCredit.TabIndex = 10;
     this.gridControlCredit.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn16});
     this.gridView1.GridControl = this.gridControlCredit;
     this.gridView1.Name = "gridView1";
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "CreditPackage Code";
     this.gridColumn13.FieldName = "strCreditPackageCode";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.OptionsColumn.AllowEdit = false;
     this.gridColumn13.OptionsFilter.AllowFilter = false;
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 0;
     this.gridColumn13.Width = 221;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Description";
     this.gridColumn14.FieldName = "strDescription";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit = false;
     this.gridColumn14.OptionsFilter.AllowFilter = false;
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 1;
     this.gridColumn14.Width = 276;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Unit Price";
     this.gridColumn15.FieldName = "mListPrice";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.OptionsColumn.AllowEdit = false;
     this.gridColumn15.OptionsFilter.AllowFilter = false;
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 2;
     this.gridColumn15.Width = 285;
     //
     // gridColumn16
     //
     this.gridColumn16.ColumnEdit = this.repositoryItemCheckEdit3;
     this.gridColumn16.FieldName = "Checked";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Width = 52;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     this.repositoryItemCheckEdit3.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit3.ValueGrayed = "";
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(12, 18);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(106, 19);
     this.label2.TabIndex = 11;
     this.label2.Text = "Upgrade Type :";
     this.label2.Click += new System.EventHandler(this.label2_Click);
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.EditValue = "Normal Package";
     this.comboBoxEdit1.Location = new System.Drawing.Point(118, 16);
     this.comboBoxEdit1.Name = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.comboBoxEdit1.Size = new System.Drawing.Size(120, 22);
     this.comboBoxEdit1.TabIndex = 12;
     this.comboBoxEdit1.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit1_SelectedIndexChanged);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Controls.Add(this.comboBoxEdit1);
     this.panelControl1.Location = new System.Drawing.Point(-7, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(1037, 48);
     this.panelControl1.TabIndex = 5;
     this.panelControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.panelControl1_Paint);
     //
     // FormUpgradePackage
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize = new System.Drawing.Size(1050, 668);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControlPackage);
     this.Controls.Add(this.panelControlTop);
     this.Controls.Add(this.panelControlMemberPackage);
     this.Controls.Add(this.splitterControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormUpgradePackage";
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Upgrade Selection";
     this.Load += new System.EventHandler(this.FormUpgradePackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControlTop)).EndInit();
     this.panelControlTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberCredit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberCredit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).EndInit();
     this.panelControlPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlCredit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).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);
 }
Exemple #41
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.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);

		}
Exemple #42
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components    = new System.ComponentModel.Container();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.label3        = new System.Windows.Forms.Label();
     this.lkeTopUp      = new DevExpress.XtraEditors.LookUpEdit();
     this.tblCreditPackageRestrictionBindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.dsCreditPackageRestrition = new ACMS.dsCreditPackageRestrition();
     this.txtEdtTotalAmt            = new DevExpress.XtraEditors.TextEdit();
     this.label2                   = new System.Windows.Forms.Label();
     this.label1                   = new System.Windows.Forms.Label();
     this.panelControl2            = new DevExpress.XtraEditors.PanelControl();
     this.gridCtrlCreditAccount    = new DevExpress.XtraGrid.GridControl();
     this.GridView11               = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GridColumn65             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn66             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn67             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn68             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn69             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn70             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn71             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn72             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn73             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.GridColumn74             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn76             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn77             = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl3            = new DevExpress.XtraEditors.PanelControl();
     this.simpleButtonCancel       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK           = new DevExpress.XtraEditors.SimpleButton();
     this.tblCreditPackageRestrictionTableAdapter = new ACMS.dsCreditPackageRestritionTableAdapters.tblCreditPackageRestrictionTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lkeTopUp.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblCreditPackageRestrictionBindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCreditPackageRestrition)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtTotalAmt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridCtrlCreditAccount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.label3);
     this.panelControl1.Controls.Add(this.lkeTopUp);
     this.panelControl1.Controls.Add(this.txtEdtTotalAmt);
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Controls.Add(this.label1);
     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(724, 76);
     this.panelControl1.TabIndex = 0;
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(14, 42);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(176, 26);
     this.label3.TabIndex = 5;
     this.label3.Text     = "Select Package :";
     //
     // lkeTopUp
     //
     this.lkeTopUp.Location = new System.Drawing.Point(197, 44);
     this.lkeTopUp.Name     = "lkeTopUp";
     this.lkeTopUp.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lkeTopUp.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("strPackageCode", "Package Code", 84, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("strDescription", "Description", 72, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("mListPrice", "List Price", 53, DevExpress.Utils.FormatType.Numeric, "", true, DevExpress.Utils.HorzAlignment.Far, DevExpress.Data.ColumnSortOrder.None)
     });
     this.lkeTopUp.Properties.DataSource = this.tblCreditPackageRestrictionBindingSource1;
     this.lkeTopUp.Properties.DisplayFormat.FormatString = "{0:C2}";
     this.lkeTopUp.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
     this.lkeTopUp.Properties.DisplayMember = "mListPrice";
     this.lkeTopUp.Properties.NullText      = "0";
     this.lkeTopUp.Properties.ValueMember   = "mListPrice";
     this.lkeTopUp.Size              = new System.Drawing.Size(207, 22);
     this.lkeTopUp.TabIndex          = 4;
     this.lkeTopUp.EditValueChanged += new System.EventHandler(this.lkeTopUp_EditValueChanged);
     this.lkeTopUp.Click            += new System.EventHandler(this.lookUpEdit1_Click);
     //
     // tblCreditPackageRestrictionBindingSource1
     //
     this.tblCreditPackageRestrictionBindingSource1.DataMember = "tblCreditPackageRestriction";
     this.tblCreditPackageRestrictionBindingSource1.DataSource = this.dsCreditPackageRestrition;
     //
     // dsCreditPackageRestrition
     //
     this.dsCreditPackageRestrition.DataSetName             = "dsCreditPackageRestrition";
     this.dsCreditPackageRestrition.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // txtEdtTotalAmt
     //
     this.txtEdtTotalAmt.EditValue = "";
     this.txtEdtTotalAmt.Location  = new System.Drawing.Point(653, 42);
     this.txtEdtTotalAmt.Name      = "txtEdtTotalAmt";
     this.txtEdtTotalAmt.Properties.Appearance.Font            = new System.Drawing.Font("Tahoma", 10F);
     this.txtEdtTotalAmt.Properties.Appearance.Options.UseFont = true;
     this.txtEdtTotalAmt.Properties.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
     this.txtEdtTotalAmt.Properties.EditFormat.FormatType      = DevExpress.Utils.FormatType.Numeric;
     this.txtEdtTotalAmt.Properties.Mask.EditMask = "c2";
     this.txtEdtTotalAmt.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txtEdtTotalAmt.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtEdtTotalAmt.Properties.MaxLength = 50;
     this.txtEdtTotalAmt.Size     = new System.Drawing.Size(201, 27);
     this.txtEdtTotalAmt.TabIndex = 3;
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(468, 40);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(178, 27);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Top up Amount :";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(22, 6);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(760, 26);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Please key in amount you want to top up.";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.gridCtrlCreditAccount);
     this.panelControl2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 76);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(724, 274);
     this.panelControl2.TabIndex = 1;
     //
     // gridCtrlCreditAccount
     //
     this.gridCtrlCreditAccount.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gridCtrlCreditAccount.Location = new System.Drawing.Point(0, 0);
     this.gridCtrlCreditAccount.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridCtrlCreditAccount.MainView = this.GridView11;
     this.gridCtrlCreditAccount.Name     = "gridCtrlCreditAccount";
     this.gridCtrlCreditAccount.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit2
     });
     this.gridCtrlCreditAccount.Size     = new System.Drawing.Size(724, 274);
     this.gridCtrlCreditAccount.TabIndex = 1;
     this.gridCtrlCreditAccount.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.GridView11
     });
     //
     // GridView11
     //
     this.GridView11.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.GridColumn65,
         this.GridColumn66,
         this.GridColumn67,
         this.GridColumn68,
         this.GridColumn69,
         this.GridColumn70,
         this.GridColumn71,
         this.GridColumn72,
         this.GridColumn73,
         this.GridColumn74,
         this.GridColumn76,
         this.GridColumn77,
         this.gridColumn1
     });
     this.GridView11.GridControl = this.gridCtrlCreditAccount;
     this.GridView11.Name        = "GridView11";
     this.GridView11.OptionsView.ColumnAutoWidth = false;
     this.GridView11.OptionsView.ShowGroupPanel  = false;
     //
     // GridColumn65
     //
     this.GridColumn65.Caption   = "ID";
     this.GridColumn65.FieldName = "nCreditPackageID";
     this.GridColumn65.Name      = "GridColumn65";
     this.GridColumn65.OptionsColumn.AllowEdit   = false;
     this.GridColumn65.OptionsColumn.AllowFocus  = false;
     this.GridColumn65.OptionsColumn.ReadOnly    = true;
     this.GridColumn65.OptionsFilter.AllowFilter = false;
     this.GridColumn65.Visible      = true;
     this.GridColumn65.VisibleIndex = 0;
     this.GridColumn65.Width        = 59;
     //
     // GridColumn66
     //
     this.GridColumn66.Caption   = "Code";
     this.GridColumn66.FieldName = "strCreditPackageCode";
     this.GridColumn66.Name      = "GridColumn66";
     this.GridColumn66.OptionsColumn.AllowEdit   = false;
     this.GridColumn66.OptionsColumn.AllowFocus  = false;
     this.GridColumn66.OptionsFilter.AllowFilter = false;
     this.GridColumn66.Visible      = true;
     this.GridColumn66.VisibleIndex = 1;
     this.GridColumn66.Width        = 80;
     //
     // GridColumn67
     //
     this.GridColumn67.Caption = "Description";
     this.GridColumn67.Name    = "GridColumn67";
     this.GridColumn67.OptionsColumn.AllowEdit   = false;
     this.GridColumn67.OptionsColumn.AllowFocus  = false;
     this.GridColumn67.OptionsFilter.AllowFilter = false;
     this.GridColumn67.Visible      = true;
     this.GridColumn67.VisibleIndex = 2;
     this.GridColumn67.Width        = 80;
     //
     // GridColumn68
     //
     this.GridColumn68.Caption = "Purchase Date";
     this.GridColumn68.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn68.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn68.FieldName = "dtPurchaseDate";
     this.GridColumn68.Name      = "GridColumn68";
     this.GridColumn68.OptionsColumn.AllowEdit   = false;
     this.GridColumn68.OptionsColumn.AllowFocus  = false;
     this.GridColumn68.OptionsFilter.AllowFilter = false;
     this.GridColumn68.Visible      = true;
     this.GridColumn68.VisibleIndex = 3;
     this.GridColumn68.Width        = 88;
     //
     // GridColumn69
     //
     this.GridColumn69.Caption   = "Receipt No";
     this.GridColumn69.FieldName = "strReceiptNo";
     this.GridColumn69.Name      = "GridColumn69";
     this.GridColumn69.OptionsColumn.AllowEdit   = false;
     this.GridColumn69.OptionsColumn.AllowFocus  = false;
     this.GridColumn69.OptionsFilter.AllowFilter = false;
     this.GridColumn69.Visible      = true;
     this.GridColumn69.VisibleIndex = 4;
     this.GridColumn69.Width        = 80;
     //
     // GridColumn70
     //
     this.GridColumn70.Caption   = "Balance";
     this.GridColumn70.FieldName = "Balance";
     this.GridColumn70.Name      = "GridColumn70";
     this.GridColumn70.OptionsColumn.AllowEdit   = false;
     this.GridColumn70.OptionsColumn.AllowFocus  = false;
     this.GridColumn70.OptionsColumn.ReadOnly    = true;
     this.GridColumn70.OptionsFilter.AllowFilter = false;
     this.GridColumn70.Visible      = true;
     this.GridColumn70.VisibleIndex = 5;
     this.GridColumn70.Width        = 80;
     //
     // GridColumn71
     //
     this.GridColumn71.Caption = "Start Date";
     this.GridColumn71.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn71.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn71.FieldName = "dtStartDate";
     this.GridColumn71.Name      = "GridColumn71";
     this.GridColumn71.OptionsColumn.AllowEdit   = false;
     this.GridColumn71.OptionsColumn.AllowFocus  = false;
     this.GridColumn71.OptionsFilter.AllowFilter = false;
     this.GridColumn71.Visible      = true;
     this.GridColumn71.VisibleIndex = 6;
     this.GridColumn71.Width        = 80;
     //
     // GridColumn72
     //
     this.GridColumn72.Caption = "Expiry Date";
     this.GridColumn72.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn72.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn72.FieldName = "dtExpiryDate";
     this.GridColumn72.Name      = "GridColumn72";
     this.GridColumn72.OptionsColumn.AllowEdit   = false;
     this.GridColumn72.OptionsColumn.AllowFocus  = false;
     this.GridColumn72.OptionsFilter.AllowFilter = false;
     this.GridColumn72.Visible      = true;
     this.GridColumn72.VisibleIndex = 7;
     this.GridColumn72.Width        = 80;
     //
     // GridColumn73
     //
     this.GridColumn73.Caption    = "Free Indicator";
     this.GridColumn73.ColumnEdit = this.repositoryItemCheckEdit2;
     this.GridColumn73.FieldName  = "fFree";
     this.GridColumn73.Name       = "GridColumn73";
     this.GridColumn73.OptionsColumn.AllowEdit   = false;
     this.GridColumn73.OptionsColumn.AllowFocus  = false;
     this.GridColumn73.OptionsFilter.AllowFilter = false;
     this.GridColumn73.Visible      = true;
     this.GridColumn73.VisibleIndex = 8;
     this.GridColumn73.Width        = 80;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name       = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // GridColumn74
     //
     this.GridColumn74.Caption = "Cancelled Indicator";
     this.GridColumn74.Name    = "GridColumn74";
     this.GridColumn74.OptionsColumn.AllowEdit   = false;
     this.GridColumn74.OptionsColumn.AllowFocus  = false;
     this.GridColumn74.OptionsFilter.AllowFilter = false;
     this.GridColumn74.Visible      = true;
     this.GridColumn74.VisibleIndex = 9;
     this.GridColumn74.Width        = 80;
     //
     // GridColumn76
     //
     this.GridColumn76.Caption   = "Employee";
     this.GridColumn76.FieldName = "nEmployeeID";
     this.GridColumn76.Name      = "GridColumn76";
     this.GridColumn76.OptionsColumn.AllowEdit   = false;
     this.GridColumn76.OptionsColumn.AllowFocus  = false;
     this.GridColumn76.OptionsFilter.AllowFilter = false;
     this.GridColumn76.Visible      = true;
     this.GridColumn76.VisibleIndex = 10;
     this.GridColumn76.Width        = 81;
     //
     // GridColumn77
     //
     this.GridColumn77.Caption   = "Remark";
     this.GridColumn77.FieldName = "strRemarks";
     this.GridColumn77.Name      = "GridColumn77";
     this.GridColumn77.OptionsColumn.AllowEdit   = false;
     this.GridColumn77.OptionsColumn.AllowFocus  = false;
     this.GridColumn77.OptionsFilter.AllowFilter = false;
     this.GridColumn77.Visible      = true;
     this.GridColumn77.VisibleIndex = 11;
     this.GridColumn77.Width        = 86;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption   = "Discount";
     this.gridColumn1.FieldName = "dCreditDiscount";
     this.gridColumn1.Name      = "gridColumn1";
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.simpleButtonCancel);
     this.panelControl3.Controls.Add(this.simpleButtonOK);
     this.panelControl3.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl3.Location = new System.Drawing.Point(0, 350);
     this.panelControl3.Name     = "panelControl3";
     this.panelControl3.Size     = new System.Drawing.Size(724, 44);
     this.panelControl3.TabIndex = 2;
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location     = new System.Drawing.Point(621, 7);
     this.simpleButtonCancel.Name         = "simpleButtonCancel";
     this.simpleButtonCancel.Size         = new System.Drawing.Size(90, 26);
     this.simpleButtonCancel.TabIndex     = 14;
     this.simpleButtonCancel.Text         = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location     = new System.Drawing.Point(517, 7);
     this.simpleButtonOK.Name         = "simpleButtonOK";
     this.simpleButtonOK.Size         = new System.Drawing.Size(90, 26);
     this.simpleButtonOK.TabIndex     = 13;
     this.simpleButtonOK.Text         = "OK";
     this.simpleButtonOK.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // tblCreditPackageRestrictionTableAdapter
     //
     this.tblCreditPackageRestrictionTableAdapter.ClearBeforeFill = true;
     //
     // FormTopUpCredit
     //
     this.AcceptButton      = this.simpleButtonOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.CancelButton      = this.simpleButtonCancel;
     this.ClientSize        = new System.Drawing.Size(724, 394);
     this.Controls.Add(this.panelControl2);
     this.Controls.Add(this.panelControl3);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormTopUpCredit";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "FormTopUpCredit";
     this.Load           += new System.EventHandler(this.FormTopUpCredit_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lkeTopUp.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblCreditPackageRestrictionBindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsCreditPackageRestrition)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEdtTotalAmt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridCtrlCreditAccount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridView11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.prevToMonth = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.prevFromMonth = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.btnPrevGo = new DevExpress.XtraEditors.SimpleButton();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.prevToYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.prevFromYear = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btn_Convert = new DevExpress.XtraEditors.SimpleButton();
     this.btn_Cancel = new DevExpress.XtraEditors.SimpleButton();
     this.gridLeaveDetails = new DevExpress.XtraGrid.GridControl();
     this.gridViewLeaveDetails = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = 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.unPaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_TimeOff = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.appliedDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btnReject = new DevExpress.XtraEditors.SimpleButton();
     this.btnApprove = new DevExpress.XtraEditors.SimpleButton();
     this.btnViewAll = new DevExpress.XtraEditors.SimpleButton();
     this.cmbBranch = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.label25 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.ddlStatus = new DevExpress.XtraEditors.ImageComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.prevToMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromMonth.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevToYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridLeaveDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewLeaveDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_TimeOff)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ddlStatus.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.prevToMonth);
     this.groupControl2.Controls.Add(this.prevFromMonth);
     this.groupControl2.Controls.Add(this.btnPrevGo);
     this.groupControl2.Controls.Add(this.label5);
     this.groupControl2.Controls.Add(this.label4);
     this.groupControl2.Controls.Add(this.prevToYear);
     this.groupControl2.Controls.Add(this.prevFromYear);
     this.groupControl2.Location = new System.Drawing.Point(16, 32);
     this.groupControl2.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl2.LookAndFeel.UseWindowsXPTheme = false;
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(560, 48);
     this.groupControl2.TabIndex = 191;
     //
     // prevToMonth
     //
     this.prevToMonth.Location = new System.Drawing.Point(272, 16);
     this.prevToMonth.Name = "prevToMonth";
     //
     // prevToMonth.Properties
     //
     this.prevToMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.prevToMonth.Properties.Items.AddRange(new object[] {
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
                                                                 new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)});
     this.prevToMonth.Size = new System.Drawing.Size(72, 20);
     this.prevToMonth.TabIndex = 56;
     //
     // prevFromMonth
     //
     this.prevFromMonth.Location = new System.Drawing.Point(64, 16);
     this.prevFromMonth.Name = "prevFromMonth";
     //
     // prevFromMonth.Properties
     //
     this.prevFromMonth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                           new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.prevFromMonth.Properties.Items.AddRange(new object[] {
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("January", 1, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("February", 2, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("March", 3, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("April", 4, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("May", 5, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("June", 6, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("July", 7, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("August", 8, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("September", 9, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("October", 10, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("November", 11, -1),
                                                                   new DevExpress.XtraEditors.Controls.ImageComboBoxItem("December", 12, -1)});
     this.prevFromMonth.Size = new System.Drawing.Size(72, 20);
     this.prevFromMonth.TabIndex = 55;
     //
     // btnPrevGo
     //
     this.btnPrevGo.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnPrevGo.Appearance.Options.UseFont = true;
     this.btnPrevGo.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPrevGo.Location = new System.Drawing.Point(448, 16);
     this.btnPrevGo.Name = "btnPrevGo";
     this.btnPrevGo.Size = new System.Drawing.Size(72, 20);
     this.btnPrevGo.TabIndex = 54;
     this.btnPrevGo.Text = "Go";
     this.btnPrevGo.Click += new System.EventHandler(this.btnPrevGo_Click);
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(240, 16);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(24, 16);
     this.label5.TabIndex = 53;
     this.label5.Text = "To";
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(16, 16);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(48, 16);
     this.label4.TabIndex = 52;
     this.label4.Text = "From";
     //
     // prevToYear
     //
     this.prevToYear.EditValue = "cbGIROStatus";
     this.prevToYear.Location = new System.Drawing.Point(352, 16);
     this.prevToYear.Name = "prevToYear";
     //
     // prevToYear.Properties
     //
     this.prevToYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                        new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.prevToYear.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.prevToYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.prevToYear.Size = new System.Drawing.Size(80, 20);
     this.prevToYear.TabIndex = 51;
     //
     // prevFromYear
     //
     this.prevFromYear.EditValue = "cbGIROStatus";
     this.prevFromYear.Location = new System.Drawing.Point(144, 16);
     this.prevFromYear.Name = "prevFromYear";
     //
     // prevFromYear.Properties
     //
     this.prevFromYear.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                          new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.prevFromYear.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.prevFromYear.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.prevFromYear.Size = new System.Drawing.Size(72, 20);
     this.prevFromYear.TabIndex = 50;
     //
     // groupControl1
     //
     this.groupControl1.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.groupControl1.Appearance.Options.UseBackColor = true;
     this.groupControl1.Controls.Add(this.btn_Convert);
     this.groupControl1.Controls.Add(this.btn_Cancel);
     this.groupControl1.Controls.Add(this.gridLeaveDetails);
     this.groupControl1.Controls.Add(this.btnReject);
     this.groupControl1.Controls.Add(this.btnApprove);
     this.groupControl1.Controls.Add(this.btnViewAll);
     this.groupControl1.Controls.Add(this.cmbBranch);
     this.groupControl1.Controls.Add(this.label25);
     this.groupControl1.Controls.Add(this.label2);
     this.groupControl1.Controls.Add(this.ddlStatus);
     this.groupControl1.Controls.Add(this.groupControl2);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(992, 568);
     this.groupControl1.TabIndex = 198;
     this.groupControl1.Text = "Leave Details";
     this.groupControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl1_Paint);
     //
     // btn_Convert
     //
     this.btn_Convert.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Convert.Appearance.Options.UseFont = true;
     this.btn_Convert.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Convert.Location = new System.Drawing.Point(784, 88);
     this.btn_Convert.Name = "btn_Convert";
     this.btn_Convert.Size = new System.Drawing.Size(72, 20);
     this.btn_Convert.TabIndex = 207;
     this.btn_Convert.Text = "Convert";
     this.btn_Convert.Click += new System.EventHandler(this.btn_Convert_Click);
     //
     // btn_Cancel
     //
     this.btn_Cancel.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btn_Cancel.Appearance.Options.UseFont = true;
     this.btn_Cancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_Cancel.Location = new System.Drawing.Point(704, 88);
     this.btn_Cancel.Name = "btn_Cancel";
     this.btn_Cancel.Size = new System.Drawing.Size(72, 20);
     this.btn_Cancel.TabIndex = 206;
     this.btn_Cancel.Text = "Cancel";
     this.btn_Cancel.Click += new System.EventHandler(this.btn_Cancel_Click);
     //
     // gridLeaveDetails
     //
     this.gridLeaveDetails.Dock = System.Windows.Forms.DockStyle.Bottom;
     //
     // gridLeaveDetails.EmbeddedNavigator
     //
     this.gridLeaveDetails.EmbeddedNavigator.Name = "";
     this.gridLeaveDetails.Location = new System.Drawing.Point(4, 116);
     this.gridLeaveDetails.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.gridLeaveDetails.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridLeaveDetails.MainView = this.gridViewLeaveDetails;
     this.gridLeaveDetails.Name = "gridLeaveDetails";
     this.gridLeaveDetails.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                               this.chk_TimeOff});
     this.gridLeaveDetails.Size = new System.Drawing.Size(984, 448);
     this.gridLeaveDetails.TabIndex = 205;
     this.gridLeaveDetails.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                     this.gridViewLeaveDetails});
     //
     // gridViewLeaveDetails
     //
     this.gridViewLeaveDetails.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                                 this.gridColumn3,
                                                                                                 this.gridColumn1,
                                                                                                 this.gridColumn2,
                                                                                                 this.gridColumn5,
                                                                                                 this.gridColumn4,
                                                                                                 this.gridColumn6,
                                                                                                 this.gridColumn7,
                                                                                                 this.gridColumn8,
                                                                                                 this.unPaid,
                                                                                                 this.gridColumn9,
                                                                                                 this.gridColumn10,
                                                                                                 this.gridColumn11,
                                                                                                 this.gridColumn13,
                                                                                                 this.gridColumn12,
                                                                                                 this.appliedDate});
     this.gridViewLeaveDetails.GridControl = this.gridLeaveDetails;
     this.gridViewLeaveDetails.Name = "gridViewLeaveDetails";
     this.gridViewLeaveDetails.OptionsBehavior.Editable = false;
     this.gridViewLeaveDetails.OptionsCustomization.AllowFilter = false;
     this.gridViewLeaveDetails.OptionsCustomization.AllowSort = false;
     this.gridViewLeaveDetails.OptionsView.ColumnAutoWidth = false;
     this.gridViewLeaveDetails.OptionsView.ShowGroupPanel = false;
     this.gridViewLeaveDetails.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridViewLeaveDetails_RowStyle);
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Date";
     this.gridColumn3.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn3.FieldName = "dtStartTime";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     this.gridColumn3.Width = 69;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "ID";
     this.gridColumn1.FieldName = "nEmployeeID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width = 53;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Name";
     this.gridColumn2.FieldName = "strEmployeeName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 2;
     this.gridColumn2.Width = 173;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Roster ID";
     this.gridColumn5.FieldName = "nLeaveID";
     this.gridColumn5.Name = "gridColumn5";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Type";
     this.gridColumn4.FieldName = "LeaveType";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Start Time";
     this.gridColumn6.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn6.FieldName = "dtStartTime";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     this.gridColumn6.Width = 88;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "End Time";
     this.gridColumn7.DisplayFormat.FormatString = "hh:mm:ss tt";
     this.gridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn7.FieldName = "dtEndTime";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 5;
     this.gridColumn7.Width = 87;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Duration";
     this.gridColumn8.FieldName = "Duration";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 6;
     this.gridColumn8.Width = 78;
     //
     // unPaid
     //
     this.unPaid.Caption = "UnPaid";
     this.unPaid.FieldName = "unPaid";
     this.unPaid.Name = "unPaid";
     this.unPaid.Visible = true;
     this.unPaid.VisibleIndex = 7;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Time Off";
     this.gridColumn9.ColumnEdit = this.chk_TimeOff;
     this.gridColumn9.FieldName = "fTimeOff";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     this.gridColumn9.Width = 60;
     //
     // chk_TimeOff
     //
     this.chk_TimeOff.AutoHeight = false;
     this.chk_TimeOff.Name = "chk_TimeOff";
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Status";
     this.gridColumn10.FieldName = "LeaveStatus";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 9;
     this.gridColumn10.Width = 85;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Reason";
     this.gridColumn11.FieldName = "strRemarks";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 10;
     this.gridColumn11.Width = 137;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "gridColumn13";
     this.gridColumn13.FieldName = "nStatusID";
     this.gridColumn13.Name = "gridColumn13";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Approving Manager";
     this.gridColumn12.FieldName = "ApprovedManager";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 11;
     this.gridColumn12.Width = 125;
     //
     // appliedDate
     //
     this.appliedDate.Caption = "Date Request";
     this.appliedDate.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.appliedDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.appliedDate.FieldName = "dtDate";
     this.appliedDate.Name = "appliedDate";
     this.appliedDate.Visible = true;
     this.appliedDate.VisibleIndex = 12;
     //
     // btnReject
     //
     this.btnReject.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnReject.Appearance.Options.UseFont = true;
     this.btnReject.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnReject.Location = new System.Drawing.Point(624, 88);
     this.btnReject.Name = "btnReject";
     this.btnReject.Size = new System.Drawing.Size(72, 20);
     this.btnReject.TabIndex = 204;
     this.btnReject.Text = "Reject";
     this.btnReject.Click += new System.EventHandler(this.btnReject_Click);
     //
     // btnApprove
     //
     this.btnApprove.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnApprove.Appearance.Options.UseFont = true;
     this.btnApprove.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnApprove.Location = new System.Drawing.Point(544, 88);
     this.btnApprove.Name = "btnApprove";
     this.btnApprove.Size = new System.Drawing.Size(72, 20);
     this.btnApprove.TabIndex = 203;
     this.btnApprove.Text = "Approve";
     this.btnApprove.Click += new System.EventHandler(this.btnApprove_Click);
     //
     // btnViewAll
     //
     this.btnViewAll.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.btnViewAll.Appearance.Options.UseFont = true;
     this.btnViewAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnViewAll.Location = new System.Drawing.Point(464, 88);
     this.btnViewAll.Name = "btnViewAll";
     this.btnViewAll.Size = new System.Drawing.Size(72, 20);
     this.btnViewAll.TabIndex = 202;
     this.btnViewAll.Text = "View All";
     this.btnViewAll.Click += new System.EventHandler(this.btnViewAll_Click);
     //
     // cmbBranch
     //
     this.cmbBranch.Location = new System.Drawing.Point(288, 88);
     this.cmbBranch.Name = "cmbBranch";
     //
     // cmbBranch.Properties
     //
     this.cmbBranch.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cmbBranch.Size = new System.Drawing.Size(120, 20);
     this.cmbBranch.TabIndex = 201;
     this.cmbBranch.SelectedValueChanged += new System.EventHandler(this.cmbBranch_SelectedValueChanged);
     //
     // label25
     //
     this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label25.ForeColor = System.Drawing.Color.Black;
     this.label25.Location = new System.Drawing.Point(224, 88);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(56, 16);
     this.label25.TabIndex = 200;
     this.label25.Text = "Branch";
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(24, 88);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(48, 23);
     this.label2.TabIndex = 199;
     this.label2.Text = "Status";
     //
     // ddlStatus
     //
     this.ddlStatus.EditValue = 0;
     this.ddlStatus.Location = new System.Drawing.Point(80, 88);
     this.ddlStatus.Name = "ddlStatus";
     //
     // ddlStatus.Properties
     //
     this.ddlStatus.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
                                                                                                       new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ddlStatus.Properties.Items.AddRange(new object[] {
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Pending", 0, -1),
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Approved", 1, -1),
                                                               new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Rejected", 2, -1)});
     this.ddlStatus.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.ddlStatus.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlStatus.Size = new System.Drawing.Size(112, 20);
     this.ddlStatus.TabIndex = 198;
     this.ddlStatus.SelectedIndexChanged += new System.EventHandler(this.ddlStatus_SelectedIndexChanged_1);
     this.ddlStatus.SelectedValueChanged += new System.EventHandler(this.ddlStatus_SelectedIndexChanged);
     //
     // frmLeave
     //
     this.AutoScale = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.SystemColors.Control;
     this.ClientSize = new System.Drawing.Size(992, 568);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmLeave";
     this.Text = "Leave detail";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmLeave_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.prevToMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromMonth.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevToYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.prevFromYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridLeaveDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewLeaveDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_TimeOff)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmbBranch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ddlStatus.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #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.panelControl2            = new DevExpress.XtraEditors.PanelControl();
     this.sbtnCancel               = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnOK                   = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1            = new DevExpress.XtraEditors.GroupControl();
     this.gridControl1             = new DevExpress.XtraGrid.GridControl();
     this.gridView1                = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5              = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControl1            = new DevExpress.XtraEditors.PanelControl();
     this.label1                   = new System.Windows.Forms.Label();
     this.sbtnSearch               = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearchKey             = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearchKey.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.sbtnCancel);
     this.panelControl2.Controls.Add(this.sbtnOK);
     this.panelControl2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl2.Location = new System.Drawing.Point(0, 463);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(936, 38);
     this.panelControl2.TabIndex = 3;
     this.panelControl2.Text     = "panelControl2";
     //
     // sbtnCancel
     //
     this.sbtnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location     = new System.Drawing.Point(854, 8);
     this.sbtnCancel.Name         = "sbtnCancel";
     this.sbtnCancel.TabIndex     = 1;
     this.sbtnCancel.Text         = "Cancel";
     this.sbtnCancel.Click       += new System.EventHandler(this.sbtnCancel_Click);
     //
     // sbtnOK
     //
     this.sbtnOK.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbtnOK.Location = new System.Drawing.Point(770, 8);
     this.sbtnOK.Name     = "sbtnOK";
     this.sbtnOK.TabIndex = 0;
     this.sbtnOK.Text     = "OK";
     this.sbtnOK.Click   += new System.EventHandler(this.sbtnOK_Click);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.gridControl1);
     this.groupControl1.Location = new System.Drawing.Point(0, 40);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(936, 424);
     this.groupControl1.TabIndex = 4;
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(4, 18);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name     = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemCheckEdit1,
         this.repositoryItemCheckEdit2,
         this.repositoryItemCheckEdit3,
         this.repositoryItemCheckEdit4,
         this.repositoryItemCheckEdit5,
         this.repositoryItemCheckEdit6,
         this.repositoryItemCheckEdit7
     });
     this.gridControl1.Size     = new System.Drawing.Size(928, 402);
     this.gridControl1.TabIndex = 2;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.Appearance.ColumnFilterButton.BackColor                    = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.ColumnFilterButton.BorderColor                  = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.ColumnFilterButton.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseBackColor         = true;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseBorderColor       = true;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseForeColor         = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.BackColor              = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
     this.gridView1.Appearance.ColumnFilterButtonActive.BorderColor            = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
     this.gridView1.Appearance.ColumnFilterButtonActive.ForeColor              = System.Drawing.Color.Black;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBackColor   = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseForeColor   = true;
     this.gridView1.Appearance.Empty.BackColor                          = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.Empty.BackColor2                         = System.Drawing.Color.White;
     this.gridView1.Appearance.Empty.Options.UseBackColor               = true;
     this.gridView1.Appearance.EvenRow.BackColor                        = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
     this.gridView1.Appearance.EvenRow.BorderColor                      = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
     this.gridView1.Appearance.EvenRow.ForeColor                        = System.Drawing.Color.Black;
     this.gridView1.Appearance.EvenRow.Options.UseBackColor             = true;
     this.gridView1.Appearance.EvenRow.Options.UseBorderColor           = true;
     this.gridView1.Appearance.EvenRow.Options.UseForeColor             = true;
     this.gridView1.Appearance.FilterCloseButton.BackColor              = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
     this.gridView1.Appearance.FilterCloseButton.BorderColor            = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
     this.gridView1.Appearance.FilterCloseButton.ForeColor              = System.Drawing.Color.Black;
     this.gridView1.Appearance.FilterCloseButton.Options.UseBackColor   = true;
     this.gridView1.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridView1.Appearance.FilterCloseButton.Options.UseForeColor   = true;
     this.gridView1.Appearance.FilterPanel.BackColor                    = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.FilterPanel.BackColor2                   = System.Drawing.Color.White;
     this.gridView1.Appearance.FilterPanel.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.FilterPanel.Options.UseBackColor         = true;
     this.gridView1.Appearance.FilterPanel.Options.UseForeColor         = true;
     this.gridView1.Appearance.FixedLine.BackColor                      = System.Drawing.Color.FromArgb(((System.Byte)(122)), ((System.Byte)(114)), ((System.Byte)(113)));
     this.gridView1.Appearance.FixedLine.Options.UseBackColor           = true;
     this.gridView1.Appearance.FocusedCell.BackColor                    = System.Drawing.Color.White;
     this.gridView1.Appearance.FocusedCell.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.FocusedCell.Options.UseBackColor         = true;
     this.gridView1.Appearance.FocusedCell.Options.UseForeColor         = true;
     this.gridView1.Appearance.FocusedRow.BackColor                     = System.Drawing.Color.FromArgb(((System.Byte)(200)), ((System.Byte)(192)), ((System.Byte)(157)));
     this.gridView1.Appearance.FocusedRow.BorderColor                   = System.Drawing.Color.FromArgb(((System.Byte)(226)), ((System.Byte)(219)), ((System.Byte)(188)));
     this.gridView1.Appearance.FocusedRow.ForeColor                     = System.Drawing.Color.Black;
     this.gridView1.Appearance.FocusedRow.Options.UseBackColor          = true;
     this.gridView1.Appearance.FocusedRow.Options.UseBorderColor        = true;
     this.gridView1.Appearance.FocusedRow.Options.UseForeColor          = true;
     this.gridView1.Appearance.FooterPanel.BackColor                    = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.FooterPanel.BorderColor                  = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.FooterPanel.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.FooterPanel.Options.UseBackColor         = true;
     this.gridView1.Appearance.FooterPanel.Options.UseBorderColor       = true;
     this.gridView1.Appearance.FooterPanel.Options.UseForeColor         = true;
     this.gridView1.Appearance.GroupButton.BackColor                    = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
     this.gridView1.Appearance.GroupButton.BorderColor                  = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
     this.gridView1.Appearance.GroupButton.Options.UseBackColor         = true;
     this.gridView1.Appearance.GroupButton.Options.UseBorderColor       = true;
     this.gridView1.Appearance.GroupFooter.BackColor                    = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.GroupFooter.BorderColor                  = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.GroupFooter.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupFooter.Options.UseBackColor         = true;
     this.gridView1.Appearance.GroupFooter.Options.UseBorderColor       = true;
     this.gridView1.Appearance.GroupFooter.Options.UseForeColor         = true;
     this.gridView1.Appearance.GroupPanel.BackColor                     = System.Drawing.Color.FromArgb(((System.Byte)(246)), ((System.Byte)(242)), ((System.Byte)(213)));
     this.gridView1.Appearance.GroupPanel.BackColor2                    = System.Drawing.Color.White;
     this.gridView1.Appearance.GroupPanel.ForeColor                     = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupPanel.Options.UseBackColor          = true;
     this.gridView1.Appearance.GroupPanel.Options.UseForeColor          = true;
     this.gridView1.Appearance.GroupRow.BackColor                       = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.GroupRow.BorderColor                     = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.GroupRow.ForeColor                       = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupRow.Options.UseBackColor            = true;
     this.gridView1.Appearance.GroupRow.Options.UseBorderColor          = true;
     this.gridView1.Appearance.GroupRow.Options.UseForeColor            = true;
     this.gridView1.Appearance.HeaderPanel.BackColor                    = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.HeaderPanel.BorderColor                  = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.HeaderPanel.ForeColor                    = System.Drawing.Color.Black;
     this.gridView1.Appearance.HeaderPanel.Options.UseBackColor         = true;
     this.gridView1.Appearance.HeaderPanel.Options.UseBorderColor       = true;
     this.gridView1.Appearance.HeaderPanel.Options.UseForeColor         = true;
     this.gridView1.Appearance.HideSelectionRow.BackColor               = System.Drawing.Color.FromArgb(((System.Byte)(237)), ((System.Byte)(230)), ((System.Byte)(203)));
     this.gridView1.Appearance.HideSelectionRow.BorderColor             = System.Drawing.Color.FromArgb(((System.Byte)(237)), ((System.Byte)(230)), ((System.Byte)(203)));
     this.gridView1.Appearance.HideSelectionRow.ForeColor               = System.Drawing.Color.Black;
     this.gridView1.Appearance.HideSelectionRow.Options.UseBackColor    = true;
     this.gridView1.Appearance.HideSelectionRow.Options.UseBorderColor  = true;
     this.gridView1.Appearance.HideSelectionRow.Options.UseForeColor    = true;
     this.gridView1.Appearance.HorzLine.BackColor                       = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.HorzLine.Options.UseBackColor            = true;
     this.gridView1.Appearance.OddRow.BackColor                         = System.Drawing.Color.FromArgb(((System.Byte)(242)), ((System.Byte)(244)), ((System.Byte)(236)));
     this.gridView1.Appearance.OddRow.BorderColor                       = System.Drawing.Color.FromArgb(((System.Byte)(242)), ((System.Byte)(244)), ((System.Byte)(236)));
     this.gridView1.Appearance.OddRow.ForeColor                         = System.Drawing.Color.Black;
     this.gridView1.Appearance.OddRow.Options.UseBackColor              = true;
     this.gridView1.Appearance.OddRow.Options.UseBorderColor            = true;
     this.gridView1.Appearance.OddRow.Options.UseForeColor              = true;
     this.gridView1.Appearance.Preview.BackColor                        = System.Drawing.Color.FromArgb(((System.Byte)(251)), ((System.Byte)(252)), ((System.Byte)(247)));
     this.gridView1.Appearance.Preview.Font                       = new System.Drawing.Font("Verdana", 7.5F);
     this.gridView1.Appearance.Preview.ForeColor                  = System.Drawing.Color.FromArgb(((System.Byte)(148)), ((System.Byte)(148)), ((System.Byte)(148)));
     this.gridView1.Appearance.Preview.Options.UseBackColor       = true;
     this.gridView1.Appearance.Preview.Options.UseFont            = true;
     this.gridView1.Appearance.Preview.Options.UseForeColor       = true;
     this.gridView1.Appearance.Row.BackColor                      = System.Drawing.Color.FromArgb(((System.Byte)(242)), ((System.Byte)(244)), ((System.Byte)(236)));
     this.gridView1.Appearance.Row.ForeColor                      = System.Drawing.Color.Black;
     this.gridView1.Appearance.Row.Options.UseBackColor           = true;
     this.gridView1.Appearance.Row.Options.UseForeColor           = true;
     this.gridView1.Appearance.RowSeparator.BackColor             = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.RowSeparator.BackColor2            = System.Drawing.Color.White;
     this.gridView1.Appearance.RowSeparator.Options.UseBackColor  = true;
     this.gridView1.Appearance.SelectedRow.BackColor              = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(215)), ((System.Byte)(188)));
     this.gridView1.Appearance.SelectedRow.BorderColor            = System.Drawing.Color.FromArgb(((System.Byte)(237)), ((System.Byte)(230)), ((System.Byte)(203)));
     this.gridView1.Appearance.SelectedRow.ForeColor              = System.Drawing.Color.Black;
     this.gridView1.Appearance.SelectedRow.Options.UseBackColor   = true;
     this.gridView1.Appearance.SelectedRow.Options.UseBorderColor = true;
     this.gridView1.Appearance.SelectedRow.Options.UseForeColor   = true;
     this.gridView1.Appearance.TopNewRow.BackColor                = System.Drawing.Color.White;
     this.gridView1.Appearance.TopNewRow.Options.UseBackColor     = true;
     this.gridView1.Appearance.VertLine.BackColor                 = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.VertLine.Options.UseBackColor      = true;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumn4,
         this.gridColumn5
     });
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter       = false;
     this.gridView1.OptionsView.EnableAppearanceEvenRow    = true;
     this.gridView1.OptionsView.EnableAppearanceOddRow     = true;
     this.gridView1.OptionsView.ShowGroupPanel             = false;
     this.gridView1.DoubleClick += new System.EventHandler(this.gridView1_DoubleClick);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Employee Id";
     this.gridColumn1.FieldName    = "nEmployeeID";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Employee Name";
     this.gridColumn2.FieldName    = "strEmployeeName";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "Job Position";
     this.gridColumn3.FieldName    = "strJobPositionCode";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "Branch";
     this.gridColumn4.FieldName    = "strBranchCode";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Start Date";
     this.gridColumn5.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.gridColumn5.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn5.FieldName    = "dtEmployeeStartDate";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name       = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Name       = "repositoryItemCheckEdit3";
     this.repositoryItemCheckEdit3.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.Name       = "repositoryItemCheckEdit4";
     this.repositoryItemCheckEdit4.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit5
     //
     this.repositoryItemCheckEdit5.AutoHeight = false;
     this.repositoryItemCheckEdit5.Name       = "repositoryItemCheckEdit5";
     this.repositoryItemCheckEdit5.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit6
     //
     this.repositoryItemCheckEdit6.AutoHeight = false;
     this.repositoryItemCheckEdit6.Name       = "repositoryItemCheckEdit6";
     this.repositoryItemCheckEdit6.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit7
     //
     this.repositoryItemCheckEdit7.AutoHeight = false;
     this.repositoryItemCheckEdit7.Name       = "repositoryItemCheckEdit7";
     this.repositoryItemCheckEdit7.NullStyle  = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Controls.Add(this.sbtnSearch);
     this.panelControl1.Controls.Add(this.txtSearchKey);
     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(936, 48);
     this.panelControl1.TabIndex = 5;
     this.panelControl1.Text     = "panelControl1";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(16, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(120, 23);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Employee Id / Name";
     //
     // sbtnSearch
     //
     this.sbtnSearch.Location = new System.Drawing.Point(296, 16);
     this.sbtnSearch.Name     = "sbtnSearch";
     this.sbtnSearch.TabIndex = 1;
     this.sbtnSearch.Text     = "Search";
     this.sbtnSearch.Click   += new System.EventHandler(this.sbtnSearch_Click);
     //
     // txtSearchKey
     //
     this.txtSearchKey.EditValue = "";
     this.txtSearchKey.Location  = new System.Drawing.Point(144, 16);
     this.txtSearchKey.Name      = "txtSearchKey";
     this.txtSearchKey.Size      = new System.Drawing.Size(146, 20);
     this.txtSearchKey.TabIndex  = 0;
     //
     // frmSearchEmployee
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(936, 501);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.panelControl2);
     this.Name  = "frmSearchEmployee";
     this.Text  = "Search Employee";
     this.Load += new System.EventHandler(this.frmSearchEmployee_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearchKey.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     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);
 }
 /// <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.LSMS = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditSyndicateId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMSCDSyndicate = new DevExpress.Data.Linq.LinqServerModeSource();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditSubCommitteId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMSCDSubCommitte = new DevExpress.Data.Linq.LinqServerModeSource();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemPictureEditImg = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemMemoExEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.btnPrintExport = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSyndicateId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSyndicate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSubCommitteId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSubCommitte)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     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.LSMS;
     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.repositoryItemDateEditDate,
     this.repositoryItemPictureEditImg,
     this.repositoryItemCheckEdit1,
     this.repositoryItemDateEditDMY,
     this.repositoryItemMemoExEdit1,
     this.repositoryItemLookUpEditSyndicateId,
     this.repositoryItemLookUpEditSubCommitteId});
     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});
     //
     // LSMS
     //
     this.LSMS.ElementType = typeof(RetirementCenter.DataSources.Linq.vQry13);
     this.LSMS.KeyExpression = "MMashatId";
     //
     // 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.colSyndicate,
     this.colSubCommitte,
     this.colsarfnumber});
     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.ShowFooter = true;
     //
     // 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.ColumnEdit = this.repositoryItemLookUpEditSyndicateId;
     this.colSyndicate.FieldName = "SyndicateId";
     this.colSyndicate.Name = "colSyndicate";
     this.colSyndicate.Visible = true;
     this.colSyndicate.VisibleIndex = 0;
     this.colSyndicate.Width = 225;
     //
     // repositoryItemLookUpEditSyndicateId
     //
     this.repositoryItemLookUpEditSyndicateId.AutoHeight = false;
     this.repositoryItemLookUpEditSyndicateId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditSyndicateId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Syndicate", "الاسم")});
     this.repositoryItemLookUpEditSyndicateId.DataSource = this.LSMSCDSyndicate;
     this.repositoryItemLookUpEditSyndicateId.DisplayMember = "Syndicate";
     this.repositoryItemLookUpEditSyndicateId.Name = "repositoryItemLookUpEditSyndicateId";
     this.repositoryItemLookUpEditSyndicateId.NullText = "";
     this.repositoryItemLookUpEditSyndicateId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditSyndicateId.ValueMember = "SyndicateId";
     //
     // LSMSCDSyndicate
     //
     this.LSMSCDSyndicate.ElementType = typeof(RetirementCenter.DataSources.Linq.CDSyndicate);
     this.LSMSCDSyndicate.KeyExpression = "[SyndicateId]";
     //
     // 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.ColumnEdit = this.repositoryItemLookUpEditSubCommitteId;
     this.colSubCommitte.FieldName = "SubCommitteId";
     this.colSubCommitte.Name = "colSubCommitte";
     this.colSubCommitte.Visible = true;
     this.colSubCommitte.VisibleIndex = 1;
     this.colSubCommitte.Width = 166;
     //
     // repositoryItemLookUpEditSubCommitteId
     //
     this.repositoryItemLookUpEditSubCommitteId.AutoHeight = false;
     this.repositoryItemLookUpEditSubCommitteId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditSubCommitteId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("SubCommitte", "اسم")});
     this.repositoryItemLookUpEditSubCommitteId.DataSource = this.LSMSCDSubCommitte;
     this.repositoryItemLookUpEditSubCommitteId.DisplayMember = "SubCommitte";
     this.repositoryItemLookUpEditSubCommitteId.Name = "repositoryItemLookUpEditSubCommitteId";
     this.repositoryItemLookUpEditSubCommitteId.NullText = "";
     this.repositoryItemLookUpEditSubCommitteId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditSubCommitteId.ValueMember = "SubCommitteId";
     //
     // LSMSCDSubCommitte
     //
     this.LSMSCDSubCommitte.ElementType = typeof(RetirementCenter.DataSources.Linq.CDSubCommitte);
     this.LSMSCDSubCommitte.KeyExpression = "[SubCommitteId]";
     //
     // 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 = 2;
     this.colsarfnumber.Width = 154;
     //
     // repositoryItemDateEditDate
     //
     this.repositoryItemDateEditDate.AutoHeight = false;
     this.repositoryItemDateEditDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDate.DisplayFormat.FormatString = "u";
     this.repositoryItemDateEditDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDate.Mask.EditMask = "u";
     this.repositoryItemDateEditDate.Name = "repositoryItemDateEditDate";
     this.repositoryItemDateEditDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemPictureEditImg
     //
     this.repositoryItemPictureEditImg.Name = "repositoryItemPictureEditImg";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemMemoExEdit1
     //
     this.repositoryItemMemoExEdit1.AutoHeight = false;
     this.repositoryItemMemoExEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEdit1.Name = "repositoryItemMemoExEdit1";
     //
     // 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 = 3;
     //
     // btnPrintExport
     //
     this.btnPrintExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrintExport.Location = new System.Drawing.Point(588, 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);
     //
     // Qry13Frm
     //
     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 = "Qry13Frm";
     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.LSMS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSyndicateId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSyndicate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditSubCommitteId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSCDSubCommitte)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEditImg)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.repositoryItemCheckEdit2  = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit1  = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControlMemberPackage = new DevExpress.XtraEditors.PanelControl();
     this.GridControlMemberPackage  = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberPackage     = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn28        = new DevExpress.XtraGrid.Columns.GridColumn();
     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.GridColumn35        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn44        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn45        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn50        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn49        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn34        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChecked          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2         = new DevExpress.XtraGrid.Columns.GridColumn();
     this.splitterControl1    = new DevExpress.XtraEditors.SplitterControl();
     this.panelControlPackage = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton2       = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK1     = new DevExpress.XtraEditors.SimpleButton();
     this.toolTip1            = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).BeginInit();
     this.panelControlPackage.SuspendLayout();
     this.SuspendLayout();
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight  = false;
     this.repositoryItemCheckEdit2.Name        = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle   = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit2.ValueGrayed = "";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit1";
     //
     // panelControlMemberPackage
     //
     this.panelControlMemberPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlMemberPackage.Location    = new System.Drawing.Point(0, 0);
     this.panelControlMemberPackage.Name        = "panelControlMemberPackage";
     this.panelControlMemberPackage.Size        = new System.Drawing.Size(864, 220);
     this.panelControlMemberPackage.TabIndex    = 1;
     //
     // GridControlMemberPackage
     //
     this.GridControlMemberPackage.Location = new System.Drawing.Point(-2, 13);
     this.GridControlMemberPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControlMemberPackage.MainView = this.gridViewMemberPackage;
     this.GridControlMemberPackage.Name     = "GridControlMemberPackage";
     this.GridControlMemberPackage.Size     = new System.Drawing.Size(818, 229);
     this.GridControlMemberPackage.TabIndex = 8;
     this.GridControlMemberPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewMemberPackage
     });
     this.GridControlMemberPackage.Click += new System.EventHandler(this.GridControlMemberPackage_Click);
     //
     // gridViewMemberPackage
     //
     this.gridViewMemberPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.GridColumn28,
         this.GridColumn30,
         this.GridColumn31,
         this.GridColumn32,
         this.GridColumn33,
         this.GridColumn35,
         this.GridColumn44,
         this.GridColumn45,
         this.GridColumn50,
         this.GridColumn49,
         this.gridColumn14,
         this.GridColumn34,
         this.gridColumn13,
         this.colChecked,
         this.gridColumn2
     });
     this.gridViewMemberPackage.GridControl          = this.GridControlMemberPackage;
     this.gridViewMemberPackage.GroupFormat          = "";
     this.gridViewMemberPackage.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMemberPackage.Name = "gridViewMemberPackage";
     this.gridViewMemberPackage.OptionsCustomization.AllowGroup = false;
     this.gridViewMemberPackage.OptionsCustomization.AllowSort  = false;
     this.gridViewMemberPackage.OptionsView.ColumnAutoWidth     = false;
     this.gridViewMemberPackage.OptionsView.ShowGroupPanel      = false;
     this.gridViewMemberPackage.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberPackage_FocusedRowChanged);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "Type";
     this.gridColumn1.FieldName    = "strPackageType";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width        = 100;
     //
     // GridColumn28
     //
     this.GridColumn28.Caption   = "Package ID";
     this.GridColumn28.FieldName = "nPackageID";
     this.GridColumn28.Name      = "GridColumn28";
     this.GridColumn28.OptionsColumn.AllowEdit   = false;
     this.GridColumn28.OptionsColumn.AllowFocus  = false;
     this.GridColumn28.OptionsFilter.AllowFilter = false;
     this.GridColumn28.Visible      = true;
     this.GridColumn28.VisibleIndex = 2;
     this.GridColumn28.Width        = 80;
     //
     // GridColumn30
     //
     this.GridColumn30.Caption   = "Package Code";
     this.GridColumn30.FieldName = "strPackageCode";
     this.GridColumn30.Name      = "GridColumn30";
     this.GridColumn30.OptionsColumn.AllowEdit   = false;
     this.GridColumn30.OptionsColumn.AllowFocus  = false;
     this.GridColumn30.OptionsFilter.AllowFilter = false;
     this.GridColumn30.Visible      = true;
     this.GridColumn30.VisibleIndex = 3;
     this.GridColumn30.Width        = 90;
     //
     // GridColumn31
     //
     this.GridColumn31.Caption   = "Package Description";
     this.GridColumn31.FieldName = "strDescription";
     this.GridColumn31.Name      = "GridColumn31";
     this.GridColumn31.OptionsColumn.AllowEdit   = false;
     this.GridColumn31.OptionsColumn.AllowFocus  = false;
     this.GridColumn31.OptionsFilter.AllowFilter = false;
     this.GridColumn31.Visible      = true;
     this.GridColumn31.VisibleIndex = 4;
     this.GridColumn31.Width        = 280;
     //
     // GridColumn32
     //
     this.GridColumn32.Caption = "Purchase Date";
     this.GridColumn32.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn32.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn32.FieldName = "dtPurchaseDate";
     this.GridColumn32.Name      = "GridColumn32";
     this.GridColumn32.OptionsColumn.AllowEdit   = false;
     this.GridColumn32.OptionsColumn.AllowFocus  = false;
     this.GridColumn32.OptionsFilter.AllowFilter = false;
     this.GridColumn32.Width = 84;
     //
     // GridColumn33
     //
     this.GridColumn33.Caption   = "Receipt No";
     this.GridColumn33.FieldName = "strReceiptNo";
     this.GridColumn33.Name      = "GridColumn33";
     this.GridColumn33.OptionsColumn.AllowEdit   = false;
     this.GridColumn33.OptionsColumn.AllowFocus  = false;
     this.GridColumn33.OptionsFilter.AllowFilter = false;
     this.GridColumn33.Width = 82;
     //
     // GridColumn35
     //
     this.GridColumn35.Caption = "Start Date";
     this.GridColumn35.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn35.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn35.FieldName = "dtStartDate";
     this.GridColumn35.Name      = "GridColumn35";
     this.GridColumn35.OptionsColumn.AllowEdit   = false;
     this.GridColumn35.OptionsColumn.AllowFocus  = false;
     this.GridColumn35.OptionsFilter.AllowFilter = false;
     this.GridColumn35.Width = 73;
     //
     // GridColumn44
     //
     this.GridColumn44.Caption = "Expiry Date";
     this.GridColumn44.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn44.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn44.FieldName = "dtExpiryDate";
     this.GridColumn44.Name      = "GridColumn44";
     this.GridColumn44.OptionsColumn.AllowEdit   = false;
     this.GridColumn44.OptionsColumn.AllowFocus  = false;
     this.GridColumn44.OptionsFilter.AllowFilter = false;
     this.GridColumn44.Width = 104;
     //
     // GridColumn45
     //
     this.GridColumn45.Caption    = "Free Indicator";
     this.GridColumn45.ColumnEdit = this.repositoryItemCheckEdit1;
     this.GridColumn45.FieldName  = "fFree";
     this.GridColumn45.Name       = "GridColumn45";
     this.GridColumn45.OptionsColumn.AllowEdit   = false;
     this.GridColumn45.OptionsColumn.AllowFocus  = false;
     this.GridColumn45.OptionsFilter.AllowFilter = false;
     this.GridColumn45.Width = 110;
     //
     // GridColumn50
     //
     this.GridColumn50.Caption = "Usage Balance Amount";
     this.GridColumn50.DisplayFormat.FormatString = "{0:C}";
     this.GridColumn50.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.GridColumn50.FieldName = "UsageBalAmt";
     this.GridColumn50.Name      = "GridColumn50";
     this.GridColumn50.OptionsColumn.AllowEdit   = false;
     this.GridColumn50.OptionsColumn.AllowFocus  = false;
     this.GridColumn50.OptionsFilter.AllowFilter = false;
     this.GridColumn50.Visible      = true;
     this.GridColumn50.VisibleIndex = 5;
     this.GridColumn50.Width        = 134;
     //
     // GridColumn49
     //
     this.GridColumn49.Caption   = "Remark";
     this.GridColumn49.FieldName = "strRemarks";
     this.GridColumn49.Name      = "GridColumn49";
     this.GridColumn49.OptionsColumn.AllowEdit   = false;
     this.GridColumn49.OptionsColumn.AllowFocus  = false;
     this.GridColumn49.OptionsFilter.AllowFilter = false;
     this.GridColumn49.Visible      = true;
     this.GridColumn49.VisibleIndex = 6;
     this.GridColumn49.Width        = 70;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Paid Amount";
     this.gridColumn14.DisplayFormat.FormatString = "{0:C}";
     this.gridColumn14.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn14.FieldName = "PaidAmt";
     this.gridColumn14.Name      = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit   = false;
     this.gridColumn14.OptionsColumn.AllowFocus  = false;
     this.gridColumn14.OptionsFilter.AllowFilter = false;
     this.gridColumn14.Width = 90;
     //
     // GridColumn34
     //
     this.GridColumn34.Caption   = "Balance";
     this.GridColumn34.FieldName = "strBalNew";
     this.GridColumn34.Name      = "GridColumn34";
     this.GridColumn34.OptionsColumn.AllowEdit   = false;
     this.GridColumn34.OptionsColumn.AllowFocus  = false;
     this.GridColumn34.OptionsFilter.AllowFilter = false;
     this.GridColumn34.Visible      = true;
     this.GridColumn34.VisibleIndex = 7;
     this.GridColumn34.Width        = 60;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Unit Price";
     this.gridColumn13.DisplayFormat.FormatString = "{0:C}";
     this.gridColumn13.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Custom;
     this.gridColumn13.FieldName = "mBaseUnitPrice";
     this.gridColumn13.Name      = "gridColumn13";
     this.gridColumn13.OptionsColumn.AllowEdit   = false;
     this.gridColumn13.OptionsColumn.AllowFocus  = false;
     this.gridColumn13.OptionsFilter.AllowFilter = false;
     this.gridColumn13.Width = 57;
     //
     // colChecked
     //
     this.colChecked.ColumnEdit   = this.repositoryItemCheckEdit2;
     this.colChecked.FieldName    = "Checked";
     this.colChecked.Name         = "colChecked";
     this.colChecked.Visible      = true;
     this.colChecked.VisibleIndex = 0;
     this.colChecked.Width        = 34;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "Calculation";
     this.gridColumn2.FieldName    = "strCalculation";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 8;
     //
     // splitterControl1
     //
     this.splitterControl1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 0);
     this.splitterControl1.Name     = "splitterControl1";
     this.splitterControl1.Size     = new System.Drawing.Size(979, 6);
     this.splitterControl1.TabIndex = 2;
     this.splitterControl1.TabStop  = false;
     //
     // panelControlPackage
     //
     this.panelControlPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlPackage.Controls.Add(this.simpleButton2);
     this.panelControlPackage.Controls.Add(this.simpleButtonOK1);
     this.panelControlPackage.Controls.Add(this.GridControlMemberPackage);
     this.panelControlPackage.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelControlPackage.Location = new System.Drawing.Point(0, 6);
     this.panelControlPackage.Name     = "panelControlPackage";
     this.panelControlPackage.Size     = new System.Drawing.Size(979, 316);
     this.panelControlPackage.TabIndex = 4;
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location     = new System.Drawing.Point(644, 247);
     this.simpleButton2.Name         = "simpleButton2";
     this.simpleButton2.Size         = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex     = 12;
     this.simpleButton2.Text         = "Cancel";
     //
     // simpleButtonOK1
     //
     this.simpleButtonOK1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK1.Location     = new System.Drawing.Point(557, 247);
     this.simpleButtonOK1.Name         = "simpleButtonOK1";
     this.simpleButtonOK1.Size         = new System.Drawing.Size(75, 23);
     this.simpleButtonOK1.TabIndex     = 11;
     this.simpleButtonOK1.Text         = "OK";
     this.simpleButtonOK1.Click       += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormUpgradePackageNew
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(979, 322);
     this.Controls.Add(this.panelControlPackage);
     this.Controls.Add(this.panelControlMemberPackage);
     this.Controls.Add(this.splitterControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FormUpgradePackageNew";
     this.ShowInTaskbar   = false;
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Upgrade Selection";
     this.Load           += new System.EventHandler(this.FormUpgradePackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).EndInit();
     this.panelControlPackage.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        /// <summary>
        /// 创建Grid列
        /// </summary>
        private void CreateGridColumn()
        {
            try
            {
                gvSearch.Columns.Clear();
                int i = 1;
                List<DataRow> LDataRows = dtDetail.Select("bIsShow=1").ToList();

                //创建选择列
                DevExpress.XtraGrid.Columns.GridColumn col0 = new DevExpress.XtraGrid.Columns.GridColumn();
                col0.FieldName = "bCheck";
                col0.Caption = "选择";
                col0.Name = "colbCheck0";
                col0.Width = 50;
                col0.Visible = true;
                col0.VisibleIndex = 0;
                col0.OptionsColumn.AllowEdit = true;
                DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit colItemCheck = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
                colItemCheck.AutoHeight = false;
                colItemCheck.Name = "repositoryItembCheck0";
                colItemCheck.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
                col0.ColumnEdit = colItemCheck;

                gcSearch.RepositoryItems.Add(colItemCheck);
                gvSearch.Columns.Add(col0);

                foreach (DataRow dr in LDataRows)
                {
                    DevExpress.XtraGrid.Columns.GridColumn col = new DevExpress.XtraGrid.Columns.GridColumn();
                    col.FieldName = dr["sColumnFieldName"].ToString();
                    col.Caption = dr["sColumnCaption"].ToString();
                    col.Name = "col" + dr["sColumnFieldName"].ToString() + i.ToString();
                    col.Width = 100;
                    col.Visible = true;
                    col.VisibleIndex = i;
                    col.OptionsColumn.AllowEdit = false;
                    if (dr["sColumnType"].ToString() == "K")
                    {
                        DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit colItem = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
                        colItem.AutoHeight = false;
                        colItem.Name = "repositoryItem" + dr["sColumnFieldName"].ToString() + i.ToString();
                        colItem.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
                        col.ColumnEdit = colItem;
                        gcSearch.RepositoryItems.Add(colItem);
                    }
                    //Grid Footer显示
                    if (dr["sFooterType"].ToString() != "001")
                    {
                        //001	无
                        //002	求和
                        //003	计数
                        //004	平均值
                        //005	最大值
                        //006	最小值
                        col.SummaryItem.FieldName = dr["sColumnFieldName"].ToString();
                        if (dr["sFooterType"].ToString() == "002")
                            col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                        else if (dr["sFooterType"].ToString() == "003")
                            col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
                        else if (dr["sFooterType"].ToString() == "004")
                            col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Average;
                        else if (dr["sFooterType"].ToString() == "005")
                            col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Max;
                        else if (dr["sFooterType"].ToString() == "006")
                            col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Min;

                        gvSearch.GroupSummary.Add(DevExpress.Data.SummaryItemType.Sum, dr["sColumnFieldName"].ToString(), col);
                    }
                    gvSearch.Columns.Add(col);
                    i++;
                }
            }
            catch (Exception ex)
            {
                Public.SystemInfo("创建查询Grid列错误!" + ex.Message, true);
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode3 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode4 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode5 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode6 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode7 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode8 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode9 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode10 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode11 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode12 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode13 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode14 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode15 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode16 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode17 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode18 = new DevExpress.XtraGrid.GridLevelNode();
     this.gridViewCDAlhasas = 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.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridControlCode = new DevExpress.XtraGrid.GridControl();
     this.gridViewCDAlsofof = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditmarhala_code = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView8 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn64 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn65 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn61 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn62 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn63 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCDEFasl = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCDDayname = 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.gridViewCD_HesaTime = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditdaycode = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView9 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn67 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn68 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn55 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEdithasa_code = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView10 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn69 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn70 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn58 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEditT = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gridColumn66 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCDSubjectWekly = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditalsofof_code = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditSubjectId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView11 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn71 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn73 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn59 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditn0 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn72 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEditCheckMe = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCDPlace = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn79 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn82 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn83 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_EmpState = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn56 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn60 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn85 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_JobDescription = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn86 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn87 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn97 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn100 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_EmpJob = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn101 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn109 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn110 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditJobDescriptionId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn115 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn118 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn111 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn114 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_Department = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn119 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn120 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn121 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn122 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_Subject = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn123 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn124 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn125 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn126 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn127 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_QualifiedPlace = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn128 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn129 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn130 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn131 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCDQualification = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn132 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn133 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn134 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn135 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn136 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_Specialization = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn137 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditqualId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn138 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn139 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn140 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn141 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_MaritalStatus = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewTBL_Priority = new DevExpress.XtraGrid.Views.Grid.GridView();
     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.gridViewCD_Asasetime = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn106 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn107 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn108 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditSPOS = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn112 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn113 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn116 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn117 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditPayTypeId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditf2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.repositoryItemGridLookUpEditKastNoId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditEmpID = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView12 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn75 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditBigTxt = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.repositoryItemGridLookUpEditfasl_code = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView13 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn80 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn81 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn88 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn74 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn89 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn90 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn84 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_AgazaType = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn41 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn42 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn43 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEditTF = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDAlhasas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDAlsofof)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditmarhala_code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDEFasl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDDayname)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_HesaTime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditdaycode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdithasa_code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEditT)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDSubjectWekly)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditalsofof_code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSubjectId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCheckMe)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDPlace)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_EmpState)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_JobDescription)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_EmpJob)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditJobDescriptionId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Department)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Subject)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_QualifiedPlace)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDQualification)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Specialization)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditqualId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_MaritalStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTBL_Priority)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Asasetime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSPOS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPayTypeId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditKastNoId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEmpID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditBigTxt)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditfasl_code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_AgazaType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditTF)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewCDAlhasas
     //
     this.gridViewCDAlhasas.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4});
     this.gridViewCDAlhasas.GridControl = this.gridControlCode;
     this.gridViewCDAlhasas.Name = "gridViewCDAlhasas";
     this.gridViewCDAlhasas.OptionsView.ColumnAutoWidth = 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 = "hasa_name";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 172;
     //
     // 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 = "hasa_name_e";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 152;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.Tag = "save";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     this.repositoryItemButtonEditSave.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.Tag = "delete";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     this.repositoryItemButtonEditDel.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // gridControlCode
     //
     this.gridControlCode.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlCode.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlCode.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlCode.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlCode.EmbeddedNavigator.Buttons.Remove.Visible = false;
     this.gridControlCode.EmbeddedNavigator.ButtonClick += new DevExpress.XtraEditors.NavigatorButtonClickEventHandler(this.gridControlCode_EmbeddedNavigator_ButtonClick);
     gridLevelNode1.LevelTemplate = this.gridViewCDAlhasas;
     gridLevelNode1.RelationName = "Level1";
     gridLevelNode2.LevelTemplate = this.gridViewCDAlsofof;
     gridLevelNode2.RelationName = "Level2";
     gridLevelNode3.LevelTemplate = this.gridViewCDEFasl;
     gridLevelNode3.RelationName = "Level3";
     gridLevelNode4.LevelTemplate = this.gridViewCDDayname;
     gridLevelNode4.RelationName = "Level4";
     gridLevelNode5.LevelTemplate = this.gridViewCD_HesaTime;
     gridLevelNode5.RelationName = "Level5";
     gridLevelNode6.LevelTemplate = this.gridViewCDSubjectWekly;
     gridLevelNode6.RelationName = "Level6";
     gridLevelNode7.LevelTemplate = this.gridViewCDPlace;
     gridLevelNode7.RelationName = "Level19";
     gridLevelNode8.LevelTemplate = this.gridViewCD_EmpState;
     gridLevelNode8.RelationName = "Level7";
     gridLevelNode9.LevelTemplate = this.gridViewCD_JobDescription;
     gridLevelNode9.RelationName = "Level8";
     gridLevelNode10.LevelTemplate = this.gridViewCD_EmpJob;
     gridLevelNode10.RelationName = "Level9";
     gridLevelNode11.LevelTemplate = this.gridViewCD_Department;
     gridLevelNode11.RelationName = "Level10";
     gridLevelNode12.LevelTemplate = this.gridViewCD_Subject;
     gridLevelNode12.RelationName = "Level11";
     gridLevelNode13.LevelTemplate = this.gridViewCD_QualifiedPlace;
     gridLevelNode13.RelationName = "Level12";
     gridLevelNode14.LevelTemplate = this.gridViewCDQualification;
     gridLevelNode14.RelationName = "Level13";
     gridLevelNode15.LevelTemplate = this.gridViewCD_Specialization;
     gridLevelNode15.RelationName = "Level14";
     gridLevelNode16.LevelTemplate = this.gridViewCD_MaritalStatus;
     gridLevelNode16.RelationName = "Level15";
     gridLevelNode17.LevelTemplate = this.gridViewTBL_Priority;
     gridLevelNode17.RelationName = "Level16";
     gridLevelNode18.LevelTemplate = this.gridViewCD_AgazaType;
     gridLevelNode18.RelationName = "Level17";
     this.gridControlCode.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1,
     gridLevelNode2,
     gridLevelNode3,
     gridLevelNode4,
     gridLevelNode5,
     gridLevelNode6,
     gridLevelNode7,
     gridLevelNode8,
     gridLevelNode9,
     gridLevelNode10,
     gridLevelNode11,
     gridLevelNode12,
     gridLevelNode13,
     gridLevelNode14,
     gridLevelNode15,
     gridLevelNode16,
     gridLevelNode17,
     gridLevelNode18});
     this.gridControlCode.Location = new System.Drawing.Point(0, 0);
     this.gridControlCode.MainView = this.gridViewCD_Asasetime;
     this.gridControlCode.Name = "gridControlCode";
     this.gridControlCode.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemCheckEditCheckMe,
     this.repositoryItemGridLookUpEditSPOS,
     this.repositoryItemGridLookUpEditqualId,
     this.repositoryItemGridLookUpEditPayTypeId,
     this.repositoryItemGridLookUpEditalsofof_code,
     this.repositoryItemCalcEditf2,
     this.repositoryItemGridLookUpEditKastNoId,
     this.repositoryItemGridLookUpEditmarhala_code,
     this.repositoryItemGridLookUpEditdaycode,
     this.repositoryItemGridLookUpEdithasa_code,
     this.repositoryItemTimeEditT,
     this.repositoryItemGridLookUpEditSubjectId,
     this.repositoryItemCalcEditn0,
     this.repositoryItemGridLookUpEditEmpID,
     this.repositoryItemMemoExEditBigTxt,
     this.repositoryItemGridLookUpEditfasl_code,
     this.repositoryItemGridLookUpEditJobDescriptionId,
     this.repositoryItemCheckEditTF});
     this.gridControlCode.Size = new System.Drawing.Size(534, 362);
     this.gridControlCode.TabIndex = 0;
     this.gridControlCode.UseEmbeddedNavigator = true;
     this.gridControlCode.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewCDAlsofof,
     this.gridViewCDEFasl,
     this.gridViewCDDayname,
     this.gridViewCD_HesaTime,
     this.gridViewCDSubjectWekly,
     this.gridViewCDPlace,
     this.gridViewCD_EmpState,
     this.gridViewCD_JobDescription,
     this.gridViewCD_EmpJob,
     this.gridViewCD_Department,
     this.gridViewCD_Subject,
     this.gridViewCD_QualifiedPlace,
     this.gridViewCDQualification,
     this.gridViewCD_Specialization,
     this.gridViewCD_MaritalStatus,
     this.gridViewTBL_Priority,
     this.gridViewCD_Asasetime,
     this.gridViewCDAlhasas,
     this.gridViewCD_AgazaType});
     this.gridControlCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // gridViewCDAlsofof
     //
     this.gridViewCDAlsofof.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn6,
     this.gridColumn5,
     this.gridColumn61,
     this.gridColumn62,
     this.gridColumn63,
     this.gridColumn10,
     this.gridColumn11});
     this.gridViewCDAlsofof.GridControl = this.gridControlCode;
     this.gridViewCDAlsofof.Name = "gridViewCDAlsofof";
     this.gridViewCDAlsofof.OptionsView.ColumnAutoWidth = false;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditmarhala_code;
     this.gridColumn6.FieldName = "marhala_code";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 124;
     //
     // repositoryItemGridLookUpEditmarhala_code
     //
     this.repositoryItemGridLookUpEditmarhala_code.AutoHeight = false;
     this.repositoryItemGridLookUpEditmarhala_code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditmarhala_code.DisplayMember = "marhala_name";
     this.repositoryItemGridLookUpEditmarhala_code.Name = "repositoryItemGridLookUpEditmarhala_code";
     this.repositoryItemGridLookUpEditmarhala_code.NullText = "";
     this.repositoryItemGridLookUpEditmarhala_code.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditmarhala_code.ValueMember = "marhala_code";
     this.repositoryItemGridLookUpEditmarhala_code.View = this.gridView8;
     //
     // gridView8
     //
     this.gridView8.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn64,
     this.gridColumn65});
     this.gridView8.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView8.Name = "gridView8";
     this.gridView8.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView8.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn64
     //
     this.gridColumn64.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn64.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn64.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn64.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn64.Caption = "الاسم بالعربيه";
     this.gridColumn64.FieldName = "marhala_name";
     this.gridColumn64.Name = "gridColumn64";
     this.gridColumn64.Visible = true;
     this.gridColumn64.VisibleIndex = 0;
     //
     // gridColumn65
     //
     this.gridColumn65.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn65.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn65.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn65.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn65.Caption = "الاسم بالانجليزيه";
     this.gridColumn65.FieldName = "marhala_name_e";
     this.gridColumn65.Name = "gridColumn65";
     this.gridColumn65.Visible = true;
     this.gridColumn65.VisibleIndex = 1;
     //
     // 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 = "alsofof_name";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 1;
     this.gridColumn5.Width = 107;
     //
     // gridColumn61
     //
     this.gridColumn61.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn61.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn61.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn61.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn61.Caption = "الصف بالانجليزيه";
     this.gridColumn61.FieldName = "alsofof_name_e";
     this.gridColumn61.Name = "gridColumn61";
     this.gridColumn61.Visible = true;
     this.gridColumn61.VisibleIndex = 2;
     this.gridColumn61.Width = 129;
     //
     // gridColumn62
     //
     this.gridColumn62.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn62.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn62.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn62.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn62.Caption = "مختصر بالعربيه";
     this.gridColumn62.FieldName = "Shortly";
     this.gridColumn62.Name = "gridColumn62";
     this.gridColumn62.Visible = true;
     this.gridColumn62.VisibleIndex = 3;
     this.gridColumn62.Width = 90;
     //
     // gridColumn63
     //
     this.gridColumn63.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn63.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn63.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn63.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn63.Caption = "مختصر بالانجليزيه";
     this.gridColumn63.FieldName = "Shortlye";
     this.gridColumn63.Name = "gridColumn63";
     this.gridColumn63.Visible = true;
     this.gridColumn63.VisibleIndex = 4;
     this.gridColumn63.Width = 106;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 5;
     this.gridColumn10.Width = 68;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 6;
     this.gridColumn11.Width = 54;
     //
     // gridViewCDEFasl
     //
     this.gridViewCDEFasl.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn32,
     this.gridColumn33,
     this.gridColumn16,
     this.gridColumn17});
     this.gridViewCDEFasl.GridControl = this.gridControlCode;
     this.gridViewCDEFasl.Name = "gridViewCDEFasl";
     this.gridViewCDEFasl.OptionsView.ColumnAutoWidth = false;
     //
     // 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 = "fasl_name";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 0;
     this.gridColumn14.Width = 164;
     //
     // 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 = "fasl_name_e";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 1;
     this.gridColumn15.Width = 147;
     //
     // 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 = "Shortly";
     this.gridColumn32.Name = "gridColumn32";
     this.gridColumn32.Visible = true;
     this.gridColumn32.VisibleIndex = 2;
     //
     // 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.FieldName = "Shortlye";
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 3;
     this.gridColumn33.Width = 88;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 4;
     //
     // gridColumn17
     //
     this.gridColumn17.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn17.Caption = "حذف";
     this.gridColumn17.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 5;
     //
     // gridViewCDDayname
     //
     this.gridViewCDDayname.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn18,
     this.gridColumn19,
     this.gridColumn20,
     this.gridColumn21});
     this.gridViewCDDayname.GridControl = this.gridControlCode;
     this.gridViewCDDayname.Name = "gridViewCDDayname";
     this.gridViewCDDayname.OptionsView.ColumnAutoWidth = 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 = "dayname";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 153;
     //
     // 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 = "dayname_e";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 155;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 2;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 3;
     //
     // gridViewCD_HesaTime
     //
     this.gridViewCD_HesaTime.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn22,
     this.gridColumn7,
     this.gridColumn55,
     this.gridColumn58,
     this.gridColumn66,
     this.gridColumn24,
     this.gridColumn25});
     this.gridViewCD_HesaTime.GridControl = this.gridControlCode;
     this.gridViewCD_HesaTime.Name = "gridViewCD_HesaTime";
     this.gridViewCD_HesaTime.OptionsView.ColumnAutoWidth = false;
     this.gridViewCD_HesaTime.InitNewRow += new DevExpress.XtraGrid.Views.Grid.InitNewRowEventHandler(this.gridViewCD_HesaTime_InitNewRow);
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditmarhala_code;
     this.gridColumn22.FieldName = "marhala_code";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 0;
     this.gridColumn22.Width = 127;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditdaycode;
     this.gridColumn7.FieldName = "daycode";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     this.gridColumn7.Width = 104;
     //
     // repositoryItemGridLookUpEditdaycode
     //
     this.repositoryItemGridLookUpEditdaycode.AutoHeight = false;
     this.repositoryItemGridLookUpEditdaycode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditdaycode.DisplayMember = "dayname";
     this.repositoryItemGridLookUpEditdaycode.Name = "repositoryItemGridLookUpEditdaycode";
     this.repositoryItemGridLookUpEditdaycode.NullText = "";
     this.repositoryItemGridLookUpEditdaycode.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditdaycode.ValueMember = "daycode";
     this.repositoryItemGridLookUpEditdaycode.View = this.gridView9;
     //
     // gridView9
     //
     this.gridView9.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn67,
     this.gridColumn68});
     this.gridView9.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView9.Name = "gridView9";
     this.gridView9.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView9.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn67
     //
     this.gridColumn67.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn67.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn67.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn67.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn67.Caption = "اليوم بالعربيه";
     this.gridColumn67.FieldName = "dayname";
     this.gridColumn67.Name = "gridColumn67";
     this.gridColumn67.Visible = true;
     this.gridColumn67.VisibleIndex = 0;
     //
     // gridColumn68
     //
     this.gridColumn68.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn68.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn68.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn68.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn68.Caption = "اليوم بالانجليزيه";
     this.gridColumn68.FieldName = "dayname_e";
     this.gridColumn68.Name = "gridColumn68";
     this.gridColumn68.Visible = true;
     this.gridColumn68.VisibleIndex = 1;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEdithasa_code;
     this.gridColumn55.FieldName = "hasa_code";
     this.gridColumn55.Name = "gridColumn55";
     this.gridColumn55.Visible = true;
     this.gridColumn55.VisibleIndex = 2;
     this.gridColumn55.Width = 101;
     //
     // repositoryItemGridLookUpEdithasa_code
     //
     this.repositoryItemGridLookUpEdithasa_code.AutoHeight = false;
     this.repositoryItemGridLookUpEdithasa_code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdithasa_code.DisplayMember = "hasa_name";
     this.repositoryItemGridLookUpEdithasa_code.Name = "repositoryItemGridLookUpEdithasa_code";
     this.repositoryItemGridLookUpEdithasa_code.NullText = "";
     this.repositoryItemGridLookUpEdithasa_code.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEdithasa_code.ValueMember = "hasa_code";
     this.repositoryItemGridLookUpEdithasa_code.View = this.gridView10;
     //
     // gridView10
     //
     this.gridView10.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn69,
     this.gridColumn70});
     this.gridView10.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView10.Name = "gridView10";
     this.gridView10.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView10.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn69
     //
     this.gridColumn69.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn69.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn69.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn69.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn69.Caption = "الحصه بالعربيه";
     this.gridColumn69.FieldName = "hasa_name";
     this.gridColumn69.Name = "gridColumn69";
     this.gridColumn69.Visible = true;
     this.gridColumn69.VisibleIndex = 0;
     //
     // gridColumn70
     //
     this.gridColumn70.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn70.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn70.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn70.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn70.Caption = "الحصه بالانجليزيه";
     this.gridColumn70.FieldName = "hasa_name_e";
     this.gridColumn70.Name = "gridColumn70";
     this.gridColumn70.Visible = true;
     this.gridColumn70.VisibleIndex = 1;
     //
     // gridColumn58
     //
     this.gridColumn58.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn58.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn58.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn58.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn58.Caption = "وقت البداء";
     this.gridColumn58.ColumnEdit = this.repositoryItemTimeEditT;
     this.gridColumn58.FieldName = "tiem_be";
     this.gridColumn58.Name = "gridColumn58";
     this.gridColumn58.Visible = true;
     this.gridColumn58.VisibleIndex = 3;
     this.gridColumn58.Width = 79;
     //
     // repositoryItemTimeEditT
     //
     this.repositoryItemTimeEditT.AutoHeight = false;
     this.repositoryItemTimeEditT.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEditT.DisplayFormat.FormatString = "hh:mm:ss t";
     this.repositoryItemTimeEditT.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemTimeEditT.EditFormat.FormatString = "hh:mm:ss t";
     this.repositoryItemTimeEditT.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemTimeEditT.Mask.EditMask = "hh:mm:ss t";
     this.repositoryItemTimeEditT.Name = "repositoryItemTimeEditT";
     //
     // gridColumn66
     //
     this.gridColumn66.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn66.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn66.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn66.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn66.Caption = "وقت النهايه";
     this.gridColumn66.ColumnEdit = this.repositoryItemTimeEditT;
     this.gridColumn66.FieldName = "tiem_en";
     this.gridColumn66.Name = "gridColumn66";
     this.gridColumn66.Visible = true;
     this.gridColumn66.VisibleIndex = 4;
     this.gridColumn66.Width = 76;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 5;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 6;
     //
     // gridViewCDSubjectWekly
     //
     this.gridViewCDSubjectWekly.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn26,
     this.gridColumn27,
     this.gridColumn59,
     this.gridColumn72,
     this.gridColumn28,
     this.gridColumn29});
     this.gridViewCDSubjectWekly.GridControl = this.gridControlCode;
     this.gridViewCDSubjectWekly.Name = "gridViewCDSubjectWekly";
     this.gridViewCDSubjectWekly.OptionsView.ColumnAutoWidth = false;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditalsofof_code;
     this.gridColumn26.FieldName = "alsofof_code";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 0;
     this.gridColumn26.Width = 177;
     //
     // repositoryItemGridLookUpEditalsofof_code
     //
     this.repositoryItemGridLookUpEditalsofof_code.AutoHeight = false;
     this.repositoryItemGridLookUpEditalsofof_code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditalsofof_code.DisplayMember = "alsofof_name";
     this.repositoryItemGridLookUpEditalsofof_code.Name = "repositoryItemGridLookUpEditalsofof_code";
     this.repositoryItemGridLookUpEditalsofof_code.NullText = "";
     this.repositoryItemGridLookUpEditalsofof_code.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditalsofof_code.ValueMember = "alsofof_code";
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditSubjectId;
     this.gridColumn27.FieldName = "SubjectId";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 1;
     this.gridColumn27.Width = 151;
     //
     // repositoryItemGridLookUpEditSubjectId
     //
     this.repositoryItemGridLookUpEditSubjectId.AutoHeight = false;
     this.repositoryItemGridLookUpEditSubjectId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditSubjectId.DisplayMember = "Subject";
     this.repositoryItemGridLookUpEditSubjectId.Name = "repositoryItemGridLookUpEditSubjectId";
     this.repositoryItemGridLookUpEditSubjectId.NullText = "";
     this.repositoryItemGridLookUpEditSubjectId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSubjectId.ValueMember = "SubjectId";
     this.repositoryItemGridLookUpEditSubjectId.View = this.gridView11;
     //
     // gridView11
     //
     this.gridView11.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn71,
     this.gridColumn73});
     this.gridView11.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView11.Name = "gridView11";
     this.gridView11.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView11.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn71
     //
     this.gridColumn71.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn71.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn71.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn71.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn71.Caption = "الاسم بالعربيه";
     this.gridColumn71.FieldName = "Subject";
     this.gridColumn71.Name = "gridColumn71";
     this.gridColumn71.Visible = true;
     this.gridColumn71.VisibleIndex = 0;
     //
     // gridColumn73
     //
     this.gridColumn73.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn73.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn73.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn73.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn73.Caption = "الاسم بالانجليزيه";
     this.gridColumn73.FieldName = "Subject_e";
     this.gridColumn73.Name = "gridColumn73";
     this.gridColumn73.Visible = true;
     this.gridColumn73.VisibleIndex = 1;
     //
     // gridColumn59
     //
     this.gridColumn59.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn59.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn59.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn59.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn59.Caption = "عدد الحصص اسبوعيا";
     this.gridColumn59.ColumnEdit = this.repositoryItemCalcEditn0;
     this.gridColumn59.FieldName = "hesasno";
     this.gridColumn59.Name = "gridColumn59";
     this.gridColumn59.Visible = true;
     this.gridColumn59.VisibleIndex = 2;
     this.gridColumn59.Width = 110;
     //
     // repositoryItemCalcEditn0
     //
     this.repositoryItemCalcEditn0.AutoHeight = false;
     this.repositoryItemCalcEditn0.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditn0.DisplayFormat.FormatString = "n0";
     this.repositoryItemCalcEditn0.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn0.EditFormat.FormatString = "n0";
     this.repositoryItemCalcEditn0.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn0.Mask.EditMask = "n0";
     this.repositoryItemCalcEditn0.Name = "repositoryItemCalcEditn0";
     //
     // gridColumn72
     //
     this.gridColumn72.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn72.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn72.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn72.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn72.Caption = "حصتين متتاليتين";
     this.gridColumn72.ColumnEdit = this.repositoryItemCheckEditCheckMe;
     this.gridColumn72.FieldName = "twoh";
     this.gridColumn72.Name = "gridColumn72";
     this.gridColumn72.Visible = true;
     this.gridColumn72.VisibleIndex = 3;
     this.gridColumn72.Width = 118;
     //
     // repositoryItemCheckEditCheckMe
     //
     this.repositoryItemCheckEditCheckMe.AutoHeight = false;
     this.repositoryItemCheckEditCheckMe.Name = "repositoryItemCheckEditCheckMe";
     this.repositoryItemCheckEditCheckMe.ValueGrayed = false;
     this.repositoryItemCheckEditCheckMe.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn28.Name = "gridColumn28";
     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 = "حذف";
     this.gridColumn29.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 5;
     //
     // gridViewCDPlace
     //
     this.gridViewCDPlace.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn79,
     this.gridColumn82,
     this.gridColumn83});
     this.gridViewCDPlace.GridControl = this.gridControlCode;
     this.gridViewCDPlace.Name = "gridViewCDPlace";
     this.gridViewCDPlace.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn79
     //
     this.gridColumn79.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn79.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn79.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn79.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn79.Caption = "المكان";
     this.gridColumn79.FieldName = "place";
     this.gridColumn79.Name = "gridColumn79";
     this.gridColumn79.Visible = true;
     this.gridColumn79.VisibleIndex = 0;
     this.gridColumn79.Width = 193;
     //
     // gridColumn82
     //
     this.gridColumn82.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn82.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn82.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn82.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn82.Caption = "حفظ";
     this.gridColumn82.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn82.Name = "gridColumn82";
     this.gridColumn82.Visible = true;
     this.gridColumn82.VisibleIndex = 1;
     //
     // gridColumn83
     //
     this.gridColumn83.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn83.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn83.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn83.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn83.Caption = "حذف";
     this.gridColumn83.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn83.Name = "gridColumn83";
     this.gridColumn83.Visible = true;
     this.gridColumn83.VisibleIndex = 2;
     //
     // gridViewCD_EmpState
     //
     this.gridViewCD_EmpState.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn56,
     this.gridColumn60,
     this.gridColumn85});
     this.gridViewCD_EmpState.GridControl = this.gridControlCode;
     this.gridViewCD_EmpState.Name = "gridViewCD_EmpState";
     this.gridViewCD_EmpState.OptionsView.ColumnAutoWidth = false;
     //
     // 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 = "EmpStateName";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 0;
     this.gridColumn8.Width = 134;
     //
     // 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 = "EmpStateName_e";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 1;
     this.gridColumn9.Width = 126;
     //
     // 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.ColumnEdit = this.repositoryItemCheckEditCheckMe;
     this.gridColumn56.FieldName = "OnWork";
     this.gridColumn56.Name = "gridColumn56";
     this.gridColumn56.Visible = true;
     this.gridColumn56.VisibleIndex = 2;
     this.gridColumn56.Width = 121;
     //
     // gridColumn60
     //
     this.gridColumn60.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn60.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn60.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn60.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn60.Caption = "حفظ";
     this.gridColumn60.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn60.Name = "gridColumn60";
     this.gridColumn60.Visible = true;
     this.gridColumn60.VisibleIndex = 3;
     //
     // gridColumn85
     //
     this.gridColumn85.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn85.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn85.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn85.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn85.Caption = "حذف";
     this.gridColumn85.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn85.Name = "gridColumn85";
     this.gridColumn85.Visible = true;
     this.gridColumn85.VisibleIndex = 4;
     //
     // gridViewCD_JobDescription
     //
     this.gridViewCD_JobDescription.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn86,
     this.gridColumn87,
     this.gridColumn97,
     this.gridColumn100});
     this.gridViewCD_JobDescription.GridControl = this.gridControlCode;
     this.gridViewCD_JobDescription.Name = "gridViewCD_JobDescription";
     this.gridViewCD_JobDescription.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn86
     //
     this.gridColumn86.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn86.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn86.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn86.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn86.Caption = "الوصف";
     this.gridColumn86.FieldName = "JobDescription";
     this.gridColumn86.Name = "gridColumn86";
     this.gridColumn86.Visible = true;
     this.gridColumn86.VisibleIndex = 0;
     //
     // gridColumn87
     //
     this.gridColumn87.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn87.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn87.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn87.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn87.Caption = "الوصف بالانجليزيه";
     this.gridColumn87.FieldName = "JobDescription_e";
     this.gridColumn87.Name = "gridColumn87";
     this.gridColumn87.Visible = true;
     this.gridColumn87.VisibleIndex = 1;
     //
     // gridColumn97
     //
     this.gridColumn97.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn97.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn97.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn97.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn97.Caption = "حفظ";
     this.gridColumn97.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn97.Name = "gridColumn97";
     this.gridColumn97.Visible = true;
     this.gridColumn97.VisibleIndex = 2;
     //
     // gridColumn100
     //
     this.gridColumn100.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn100.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn100.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn100.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn100.Caption = "حذف";
     this.gridColumn100.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn100.Name = "gridColumn100";
     this.gridColumn100.Visible = true;
     this.gridColumn100.VisibleIndex = 3;
     //
     // gridViewCD_EmpJob
     //
     this.gridViewCD_EmpJob.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn101,
     this.gridColumn109,
     this.gridColumn110,
     this.gridColumn111,
     this.gridColumn114});
     this.gridViewCD_EmpJob.GridControl = this.gridControlCode;
     this.gridViewCD_EmpJob.Name = "gridViewCD_EmpJob";
     this.gridViewCD_EmpJob.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn101
     //
     this.gridColumn101.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn101.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn101.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn101.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn101.Caption = "الوظيفة بالعربيه";
     this.gridColumn101.FieldName = "EmpJobName";
     this.gridColumn101.Name = "gridColumn101";
     this.gridColumn101.Visible = true;
     this.gridColumn101.VisibleIndex = 0;
     //
     // gridColumn109
     //
     this.gridColumn109.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn109.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn109.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn109.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn109.Caption = "الوظيفة بالانجليزيه";
     this.gridColumn109.FieldName = "EmpJobName_e";
     this.gridColumn109.Name = "gridColumn109";
     this.gridColumn109.Visible = true;
     this.gridColumn109.VisibleIndex = 1;
     //
     // gridColumn110
     //
     this.gridColumn110.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn110.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn110.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn110.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn110.Caption = "الوصف الوظيفي";
     this.gridColumn110.ColumnEdit = this.repositoryItemGridLookUpEditJobDescriptionId;
     this.gridColumn110.FieldName = "JobDescriptionId";
     this.gridColumn110.Name = "gridColumn110";
     this.gridColumn110.Visible = true;
     this.gridColumn110.VisibleIndex = 2;
     //
     // repositoryItemGridLookUpEditJobDescriptionId
     //
     this.repositoryItemGridLookUpEditJobDescriptionId.AutoHeight = false;
     this.repositoryItemGridLookUpEditJobDescriptionId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditJobDescriptionId.DisplayMember = "JobDescription";
     this.repositoryItemGridLookUpEditJobDescriptionId.Name = "repositoryItemGridLookUpEditJobDescriptionId";
     this.repositoryItemGridLookUpEditJobDescriptionId.NullText = "";
     this.repositoryItemGridLookUpEditJobDescriptionId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditJobDescriptionId.ValueMember = "JobDescriptionId";
     this.repositoryItemGridLookUpEditJobDescriptionId.View = this.gridView1;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn115,
     this.gridColumn118});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn115
     //
     this.gridColumn115.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn115.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn115.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn115.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn115.Caption = "الوصف بالعربيه";
     this.gridColumn115.FieldName = "JobDescription";
     this.gridColumn115.Name = "gridColumn115";
     this.gridColumn115.Visible = true;
     this.gridColumn115.VisibleIndex = 0;
     //
     // gridColumn118
     //
     this.gridColumn118.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn118.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn118.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn118.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn118.Caption = "الوصف بالانجليزيه";
     this.gridColumn118.FieldName = "JobDescription_e";
     this.gridColumn118.Name = "gridColumn118";
     this.gridColumn118.Visible = true;
     this.gridColumn118.VisibleIndex = 1;
     //
     // gridColumn111
     //
     this.gridColumn111.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn111.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn111.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn111.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn111.Caption = "حفظ";
     this.gridColumn111.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn111.Name = "gridColumn111";
     this.gridColumn111.Visible = true;
     this.gridColumn111.VisibleIndex = 3;
     //
     // gridColumn114
     //
     this.gridColumn114.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn114.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn114.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn114.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn114.Caption = "حذف";
     this.gridColumn114.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn114.Name = "gridColumn114";
     this.gridColumn114.Visible = true;
     this.gridColumn114.VisibleIndex = 4;
     //
     // gridViewCD_Department
     //
     this.gridViewCD_Department.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn119,
     this.gridColumn120,
     this.gridColumn121,
     this.gridColumn122});
     this.gridViewCD_Department.GridControl = this.gridControlCode;
     this.gridViewCD_Department.Name = "gridViewCD_Department";
     this.gridViewCD_Department.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn119
     //
     this.gridColumn119.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn119.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn119.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn119.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn119.Caption = "القسم بالعربيه";
     this.gridColumn119.FieldName = "Department";
     this.gridColumn119.Name = "gridColumn119";
     this.gridColumn119.Visible = true;
     this.gridColumn119.VisibleIndex = 0;
     //
     // gridColumn120
     //
     this.gridColumn120.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn120.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn120.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn120.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn120.Caption = "القسم بالانجليزيه";
     this.gridColumn120.FieldName = "Department_e";
     this.gridColumn120.Name = "gridColumn120";
     this.gridColumn120.Visible = true;
     this.gridColumn120.VisibleIndex = 1;
     //
     // gridColumn121
     //
     this.gridColumn121.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn121.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn121.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn121.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn121.Caption = "حفظ";
     this.gridColumn121.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn121.Name = "gridColumn121";
     this.gridColumn121.Visible = true;
     this.gridColumn121.VisibleIndex = 2;
     //
     // gridColumn122
     //
     this.gridColumn122.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn122.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn122.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn122.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn122.Caption = "حذف";
     this.gridColumn122.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn122.Name = "gridColumn122";
     this.gridColumn122.Visible = true;
     this.gridColumn122.VisibleIndex = 3;
     //
     // gridViewCD_Subject
     //
     this.gridViewCD_Subject.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn123,
     this.gridColumn124,
     this.gridColumn125,
     this.gridColumn126,
     this.gridColumn127});
     this.gridViewCD_Subject.GridControl = this.gridControlCode;
     this.gridViewCD_Subject.Name = "gridViewCD_Subject";
     this.gridViewCD_Subject.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn123
     //
     this.gridColumn123.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn123.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn123.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn123.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn123.Caption = "المادة بالعربيه";
     this.gridColumn123.FieldName = "Subject";
     this.gridColumn123.Name = "gridColumn123";
     this.gridColumn123.Visible = true;
     this.gridColumn123.VisibleIndex = 0;
     this.gridColumn123.Width = 94;
     //
     // gridColumn124
     //
     this.gridColumn124.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn124.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn124.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn124.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn124.Caption = "المادة بالانجليزيه";
     this.gridColumn124.FieldName = "Subject_e";
     this.gridColumn124.Name = "gridColumn124";
     this.gridColumn124.Visible = true;
     this.gridColumn124.VisibleIndex = 1;
     this.gridColumn124.Width = 107;
     //
     // gridColumn125
     //
     this.gridColumn125.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn125.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn125.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn125.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn125.Caption = "اسم مختصر";
     this.gridColumn125.FieldName = "simple";
     this.gridColumn125.Name = "gridColumn125";
     this.gridColumn125.Visible = true;
     this.gridColumn125.VisibleIndex = 2;
     this.gridColumn125.Width = 96;
     //
     // gridColumn126
     //
     this.gridColumn126.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn126.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn126.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn126.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn126.Caption = "حفظ";
     this.gridColumn126.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn126.Name = "gridColumn126";
     this.gridColumn126.Visible = true;
     this.gridColumn126.VisibleIndex = 3;
     //
     // gridColumn127
     //
     this.gridColumn127.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn127.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn127.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn127.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn127.Caption = "حذف";
     this.gridColumn127.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn127.Name = "gridColumn127";
     this.gridColumn127.Visible = true;
     this.gridColumn127.VisibleIndex = 4;
     //
     // gridViewCD_QualifiedPlace
     //
     this.gridViewCD_QualifiedPlace.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn128,
     this.gridColumn129,
     this.gridColumn130,
     this.gridColumn131});
     this.gridViewCD_QualifiedPlace.GridControl = this.gridControlCode;
     this.gridViewCD_QualifiedPlace.Name = "gridViewCD_QualifiedPlace";
     this.gridViewCD_QualifiedPlace.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn128
     //
     this.gridColumn128.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn128.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn128.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn128.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn128.Caption = "الجهة بالعربيه";
     this.gridColumn128.FieldName = "QualifiedPlaceName";
     this.gridColumn128.Name = "gridColumn128";
     this.gridColumn128.Visible = true;
     this.gridColumn128.VisibleIndex = 0;
     this.gridColumn128.Width = 121;
     //
     // gridColumn129
     //
     this.gridColumn129.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn129.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn129.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn129.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn129.Caption = "الجهة بالانجليزيه";
     this.gridColumn129.FieldName = "QualifiedPlaceName_e";
     this.gridColumn129.Name = "gridColumn129";
     this.gridColumn129.Visible = true;
     this.gridColumn129.VisibleIndex = 1;
     this.gridColumn129.Width = 113;
     //
     // gridColumn130
     //
     this.gridColumn130.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn130.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn130.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn130.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn130.Caption = "حفظ";
     this.gridColumn130.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn130.Name = "gridColumn130";
     this.gridColumn130.Visible = true;
     this.gridColumn130.VisibleIndex = 2;
     //
     // gridColumn131
     //
     this.gridColumn131.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn131.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn131.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn131.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn131.Caption = "حذف";
     this.gridColumn131.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn131.Name = "gridColumn131";
     this.gridColumn131.Visible = true;
     this.gridColumn131.VisibleIndex = 3;
     //
     // gridViewCDQualification
     //
     this.gridViewCDQualification.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn132,
     this.gridColumn133,
     this.gridColumn134,
     this.gridColumn135,
     this.gridColumn136});
     this.gridViewCDQualification.GridControl = this.gridControlCode;
     this.gridViewCDQualification.Name = "gridViewCDQualification";
     this.gridViewCDQualification.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn132
     //
     this.gridColumn132.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn132.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn132.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn132.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn132.Caption = "المؤهل بالعربيه";
     this.gridColumn132.FieldName = "qualName";
     this.gridColumn132.Name = "gridColumn132";
     this.gridColumn132.Visible = true;
     this.gridColumn132.VisibleIndex = 0;
     this.gridColumn132.Width = 137;
     //
     // gridColumn133
     //
     this.gridColumn133.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn133.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn133.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn133.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn133.Caption = "المؤهل بالانجليزيه";
     this.gridColumn133.FieldName = "qualName_e";
     this.gridColumn133.Name = "gridColumn133";
     this.gridColumn133.Visible = true;
     this.gridColumn133.VisibleIndex = 1;
     this.gridColumn133.Width = 146;
     //
     // gridColumn134
     //
     this.gridColumn134.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn134.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn134.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn134.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn134.Caption = "تربوي";
     this.gridColumn134.ColumnEdit = this.repositoryItemCheckEditCheckMe;
     this.gridColumn134.FieldName = "trbawy";
     this.gridColumn134.Name = "gridColumn134";
     this.gridColumn134.Visible = true;
     this.gridColumn134.VisibleIndex = 2;
     //
     // gridColumn135
     //
     this.gridColumn135.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn135.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn135.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn135.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn135.Caption = "حفظ";
     this.gridColumn135.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn135.Name = "gridColumn135";
     this.gridColumn135.Visible = true;
     this.gridColumn135.VisibleIndex = 3;
     //
     // gridColumn136
     //
     this.gridColumn136.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn136.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn136.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn136.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn136.Caption = "حذف";
     this.gridColumn136.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn136.Name = "gridColumn136";
     this.gridColumn136.Visible = true;
     this.gridColumn136.VisibleIndex = 4;
     //
     // gridViewCD_Specialization
     //
     this.gridViewCD_Specialization.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn137,
     this.gridColumn138,
     this.gridColumn139,
     this.gridColumn140,
     this.gridColumn141});
     this.gridViewCD_Specialization.GridControl = this.gridControlCode;
     this.gridViewCD_Specialization.Name = "gridViewCD_Specialization";
     this.gridViewCD_Specialization.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn137
     //
     this.gridColumn137.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn137.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn137.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn137.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn137.Caption = "المؤهل";
     this.gridColumn137.ColumnEdit = this.repositoryItemGridLookUpEditqualId;
     this.gridColumn137.FieldName = "qualId";
     this.gridColumn137.Name = "gridColumn137";
     this.gridColumn137.Visible = true;
     this.gridColumn137.VisibleIndex = 0;
     //
     // repositoryItemGridLookUpEditqualId
     //
     this.repositoryItemGridLookUpEditqualId.AutoHeight = false;
     this.repositoryItemGridLookUpEditqualId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditqualId.DisplayMember = "qualName";
     this.repositoryItemGridLookUpEditqualId.Name = "repositoryItemGridLookUpEditqualId";
     this.repositoryItemGridLookUpEditqualId.NullText = "";
     this.repositoryItemGridLookUpEditqualId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditqualId.ValueMember = "qualId";
     this.repositoryItemGridLookUpEditqualId.View = this.gridView4;
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn36});
     this.gridView4.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "qualName";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 0;
     //
     // gridColumn138
     //
     this.gridColumn138.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn138.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn138.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn138.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn138.Caption = "التخصص بالعربيه";
     this.gridColumn138.FieldName = "SpecializationName";
     this.gridColumn138.Name = "gridColumn138";
     this.gridColumn138.Visible = true;
     this.gridColumn138.VisibleIndex = 1;
     //
     // gridColumn139
     //
     this.gridColumn139.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn139.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn139.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn139.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn139.Caption = "التخصص بالانجليزيه";
     this.gridColumn139.FieldName = "SpecializationName_e";
     this.gridColumn139.Name = "gridColumn139";
     this.gridColumn139.Visible = true;
     this.gridColumn139.VisibleIndex = 2;
     //
     // gridColumn140
     //
     this.gridColumn140.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn140.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn140.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn140.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn140.Caption = "حفظ";
     this.gridColumn140.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn140.Name = "gridColumn140";
     this.gridColumn140.Visible = true;
     this.gridColumn140.VisibleIndex = 3;
     //
     // gridColumn141
     //
     this.gridColumn141.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn141.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn141.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn141.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn141.Caption = "حذف";
     this.gridColumn141.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn141.Name = "gridColumn141";
     this.gridColumn141.Visible = true;
     this.gridColumn141.VisibleIndex = 4;
     //
     // gridViewCD_MaritalStatus
     //
     this.gridViewCD_MaritalStatus.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn12,
     this.gridColumn13,
     this.gridColumn30,
     this.gridColumn31});
     this.gridViewCD_MaritalStatus.GridControl = this.gridControlCode;
     this.gridViewCD_MaritalStatus.Name = "gridViewCD_MaritalStatus";
     this.gridViewCD_MaritalStatus.OptionsView.ColumnAutoWidth = false;
     //
     // 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 = "MaritalStatus";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 0;
     this.gridColumn12.Width = 107;
     //
     // 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 = "MaritalStatus_e";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 1;
     this.gridColumn13.Width = 113;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 2;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 3;
     //
     // gridViewTBL_Priority
     //
     this.gridViewTBL_Priority.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn37,
     this.gridColumn38,
     this.gridColumn39,
     this.gridColumn40});
     this.gridViewTBL_Priority.GridControl = this.gridControlCode;
     this.gridViewTBL_Priority.Name = "gridViewTBL_Priority";
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditSubjectId;
     this.gridColumn37.FieldName = "SubjectId";
     this.gridColumn37.Name = "gridColumn37";
     this.gridColumn37.Visible = true;
     this.gridColumn37.VisibleIndex = 0;
     //
     // gridColumn38
     //
     this.gridColumn38.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn38.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn38.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn38.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn38.Caption = "الحصه";
     this.gridColumn38.ColumnEdit = this.repositoryItemGridLookUpEdithasa_code;
     this.gridColumn38.FieldName = "hasa_code";
     this.gridColumn38.Name = "gridColumn38";
     this.gridColumn38.Visible = true;
     this.gridColumn38.VisibleIndex = 1;
     //
     // gridColumn39
     //
     this.gridColumn39.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn39.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn39.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn39.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn39.Caption = "حفظ";
     this.gridColumn39.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn39.Name = "gridColumn39";
     this.gridColumn39.Visible = true;
     this.gridColumn39.VisibleIndex = 2;
     //
     // gridColumn40
     //
     this.gridColumn40.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn40.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn40.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn40.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn40.Caption = "حذف";
     this.gridColumn40.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn40.Name = "gridColumn40";
     this.gridColumn40.Visible = true;
     this.gridColumn40.VisibleIndex = 3;
     //
     // gridViewCD_Asasetime
     //
     this.gridViewCD_Asasetime.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn106,
     this.gridColumn107,
     this.gridColumn108,
     this.gridColumn116,
     this.gridColumn117});
     this.gridViewCD_Asasetime.GridControl = this.gridControlCode;
     this.gridViewCD_Asasetime.Name = "gridViewCD_Asasetime";
     this.gridViewCD_Asasetime.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn106
     //
     this.gridColumn106.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn106.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn106.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn106.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn106.Caption = "العام";
     this.gridColumn106.FieldName = "asase_year";
     this.gridColumn106.Name = "gridColumn106";
     this.gridColumn106.Visible = true;
     this.gridColumn106.VisibleIndex = 0;
     this.gridColumn106.Width = 143;
     //
     // gridColumn107
     //
     this.gridColumn107.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn107.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn107.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn107.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn107.Caption = "اسم المجمع ";
     this.gridColumn107.FieldName = "school_allname";
     this.gridColumn107.Name = "gridColumn107";
     this.gridColumn107.OptionsColumn.AllowEdit = false;
     this.gridColumn107.OptionsColumn.ReadOnly = true;
     this.gridColumn107.Visible = true;
     this.gridColumn107.VisibleIndex = 2;
     this.gridColumn107.Width = 133;
     //
     // gridColumn108
     //
     this.gridColumn108.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn108.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn108.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn108.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn108.Caption = "اسم المدرسه";
     this.gridColumn108.ColumnEdit = this.repositoryItemGridLookUpEditSPOS;
     this.gridColumn108.FieldName = "SPOS";
     this.gridColumn108.Name = "gridColumn108";
     this.gridColumn108.Visible = true;
     this.gridColumn108.VisibleIndex = 1;
     this.gridColumn108.Width = 133;
     //
     // repositoryItemGridLookUpEditSPOS
     //
     this.repositoryItemGridLookUpEditSPOS.AutoHeight = false;
     this.repositoryItemGridLookUpEditSPOS.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditSPOS.DisplayMember = "SCHOOL";
     this.repositoryItemGridLookUpEditSPOS.Name = "repositoryItemGridLookUpEditSPOS";
     this.repositoryItemGridLookUpEditSPOS.NullText = "";
     this.repositoryItemGridLookUpEditSPOS.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSPOS.ValueMember = "SPOS";
     this.repositoryItemGridLookUpEditSPOS.View = this.gridView3;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn112,
     this.gridColumn113});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn112
     //
     this.gridColumn112.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn112.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn112.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn112.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn112.Caption = "اسم المدرسه بالعربيه";
     this.gridColumn112.FieldName = "SCHOOL";
     this.gridColumn112.Name = "gridColumn112";
     this.gridColumn112.Visible = true;
     this.gridColumn112.VisibleIndex = 0;
     //
     // gridColumn113
     //
     this.gridColumn113.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn113.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn113.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn113.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn113.Caption = "اسم المدرسه بالانجليزيه";
     this.gridColumn113.FieldName = "SCHOOl_e";
     this.gridColumn113.Name = "gridColumn113";
     this.gridColumn113.Visible = true;
     this.gridColumn113.VisibleIndex = 1;
     //
     // gridColumn116
     //
     this.gridColumn116.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn116.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn116.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn116.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn116.Caption = "حفظ";
     this.gridColumn116.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn116.Name = "gridColumn116";
     this.gridColumn116.Visible = true;
     this.gridColumn116.VisibleIndex = 3;
     this.gridColumn116.Width = 133;
     //
     // gridColumn117
     //
     this.gridColumn117.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn117.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn117.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn117.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn117.Caption = "حذف";
     this.gridColumn117.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn117.Name = "gridColumn117";
     this.gridColumn117.Visible = true;
     this.gridColumn117.VisibleIndex = 4;
     this.gridColumn117.Width = 133;
     //
     // repositoryItemGridLookUpEditPayTypeId
     //
     this.repositoryItemGridLookUpEditPayTypeId.AutoHeight = false;
     this.repositoryItemGridLookUpEditPayTypeId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditPayTypeId.DisplayMember = "PayType";
     this.repositoryItemGridLookUpEditPayTypeId.Name = "repositoryItemGridLookUpEditPayTypeId";
     this.repositoryItemGridLookUpEditPayTypeId.NullText = "";
     this.repositoryItemGridLookUpEditPayTypeId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditPayTypeId.ValueMember = "PayTypeId";
     this.repositoryItemGridLookUpEditPayTypeId.View = this.repositoryItemGridLookUpEdit1View;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn54});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "PayType";
     this.gridColumn54.Name = "gridColumn54";
     this.gridColumn54.Visible = true;
     this.gridColumn54.VisibleIndex = 0;
     //
     // repositoryItemCalcEditf2
     //
     this.repositoryItemCalcEditf2.AutoHeight = false;
     this.repositoryItemCalcEditf2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditf2.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.Mask.EditMask = "f2";
     this.repositoryItemCalcEditf2.Name = "repositoryItemCalcEditf2";
     //
     // repositoryItemGridLookUpEditKastNoId
     //
     this.repositoryItemGridLookUpEditKastNoId.AutoHeight = false;
     this.repositoryItemGridLookUpEditKastNoId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditKastNoId.DisplayMember = "KastName";
     this.repositoryItemGridLookUpEditKastNoId.Name = "repositoryItemGridLookUpEditKastNoId";
     this.repositoryItemGridLookUpEditKastNoId.NullText = "";
     this.repositoryItemGridLookUpEditKastNoId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditKastNoId.ValueMember = "KastNoId";
     this.repositoryItemGridLookUpEditKastNoId.View = this.gridView6;
     //
     // gridView6
     //
     this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn23});
     this.gridView6.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView6.Name = "gridView6";
     this.gridView6.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView6.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "القســـــــط";
     this.gridColumn23.FieldName = "KastName";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 0;
     //
     // repositoryItemGridLookUpEditEmpID
     //
     this.repositoryItemGridLookUpEditEmpID.AutoHeight = false;
     this.repositoryItemGridLookUpEditEmpID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditEmpID.DisplayMember = "emp_name";
     this.repositoryItemGridLookUpEditEmpID.Name = "repositoryItemGridLookUpEditEmpID";
     this.repositoryItemGridLookUpEditEmpID.NullText = "";
     this.repositoryItemGridLookUpEditEmpID.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditEmpID.ValueMember = "EmpID";
     this.repositoryItemGridLookUpEditEmpID.View = this.gridView12;
     //
     // gridView12
     //
     this.gridView12.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn75});
     this.gridView12.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView12.Name = "gridView12";
     this.gridView12.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView12.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn75
     //
     this.gridColumn75.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn75.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn75.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn75.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn75.Caption = "الاسم";
     this.gridColumn75.FieldName = "emp_name";
     this.gridColumn75.Name = "gridColumn75";
     this.gridColumn75.Visible = true;
     this.gridColumn75.VisibleIndex = 0;
     //
     // repositoryItemMemoExEditBigTxt
     //
     this.repositoryItemMemoExEditBigTxt.AutoHeight = false;
     this.repositoryItemMemoExEditBigTxt.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditBigTxt.Name = "repositoryItemMemoExEditBigTxt";
     //
     // repositoryItemGridLookUpEditfasl_code
     //
     this.repositoryItemGridLookUpEditfasl_code.AutoHeight = false;
     this.repositoryItemGridLookUpEditfasl_code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditfasl_code.DisplayMember = "fasl_name";
     this.repositoryItemGridLookUpEditfasl_code.Name = "repositoryItemGridLookUpEditfasl_code";
     this.repositoryItemGridLookUpEditfasl_code.NullText = "";
     this.repositoryItemGridLookUpEditfasl_code.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditfasl_code.ValueMember = "fasl_code";
     this.repositoryItemGridLookUpEditfasl_code.View = this.gridView13;
     //
     // gridView13
     //
     this.gridView13.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn80,
     this.gridColumn81});
     this.gridView13.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView13.Name = "gridView13";
     this.gridView13.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView13.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn80
     //
     this.gridColumn80.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn80.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn80.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn80.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn80.Caption = "الاسم بالعربيه";
     this.gridColumn80.FieldName = "fasl_name";
     this.gridColumn80.Name = "gridColumn80";
     this.gridColumn80.Visible = true;
     this.gridColumn80.VisibleIndex = 0;
     //
     // gridColumn81
     //
     this.gridColumn81.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn81.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn81.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn81.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn81.Caption = "الاسم بالانجليزيه";
     this.gridColumn81.FieldName = "fasl_name_e";
     this.gridColumn81.Name = "gridColumn81";
     this.gridColumn81.Visible = true;
     this.gridColumn81.VisibleIndex = 1;
     //
     // gridColumn88
     //
     this.gridColumn88.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn88.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn88.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn88.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn88.Caption = "المدرس";
     this.gridColumn88.ColumnEdit = this.repositoryItemGridLookUpEditEmpID;
     this.gridColumn88.FieldName = "EmpID";
     this.gridColumn88.Name = "gridColumn88";
     this.gridColumn88.Visible = true;
     this.gridColumn88.VisibleIndex = 0;
     this.gridColumn88.Width = 239;
     //
     // 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 = "النصاب الفعلي";
     this.gridColumn34.ColumnEdit = this.repositoryItemCalcEditn0;
     this.gridColumn34.FieldName = "nesabfealy";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 1;
     this.gridColumn34.Width = 79;
     //
     // 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.ColumnEdit = this.repositoryItemCalcEditn0;
     this.gridColumn35.FieldName = "nesabedafy";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Visible = true;
     this.gridColumn35.VisibleIndex = 2;
     this.gridColumn35.Width = 82;
     //
     // gridColumn74
     //
     this.gridColumn74.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn74.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn74.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn74.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn74.Caption = "ملاحظات";
     this.gridColumn74.ColumnEdit = this.repositoryItemMemoExEditBigTxt;
     this.gridColumn74.FieldName = "rem";
     this.gridColumn74.Name = "gridColumn74";
     this.gridColumn74.Visible = true;
     this.gridColumn74.VisibleIndex = 3;
     //
     // gridColumn89
     //
     this.gridColumn89.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn89.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn89.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn89.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn89.Caption = "حفظ";
     this.gridColumn89.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn89.Name = "gridColumn89";
     this.gridColumn89.Visible = true;
     this.gridColumn89.VisibleIndex = 4;
     //
     // gridColumn90
     //
     this.gridColumn90.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn90.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn90.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn90.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn90.Caption = "حذف";
     this.gridColumn90.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn90.Name = "gridColumn90";
     this.gridColumn90.Visible = true;
     this.gridColumn90.VisibleIndex = 5;
     //
     // gridColumn57
     //
     this.gridColumn57.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn57.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn57.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn57.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn57.Caption = "الاسم بالعربيه";
     this.gridColumn57.FieldName = "alsofof_name";
     this.gridColumn57.Name = "gridColumn57";
     this.gridColumn57.Visible = true;
     this.gridColumn57.VisibleIndex = 0;
     //
     // gridColumn84
     //
     this.gridColumn84.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn84.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn84.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn84.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn84.Caption = "الاسم بالانجليزيه";
     this.gridColumn84.FieldName = "alsofof_name_e";
     this.gridColumn84.Name = "gridColumn84";
     this.gridColumn84.Visible = true;
     this.gridColumn84.VisibleIndex = 1;
     //
     // gridViewCD_AgazaType
     //
     this.gridViewCD_AgazaType.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn41,
     this.gridColumn42,
     this.gridColumn43,
     this.gridColumn44,
     this.gridColumn45});
     this.gridViewCD_AgazaType.GridControl = this.gridControlCode;
     this.gridViewCD_AgazaType.Name = "gridViewCD_AgazaType";
     //
     // 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 = "AgazaTypeName";
     this.gridColumn41.Name = "gridColumn41";
     this.gridColumn41.Visible = true;
     this.gridColumn41.VisibleIndex = 0;
     //
     // 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 = "AgazaTypeName_e";
     this.gridColumn42.Name = "gridColumn42";
     this.gridColumn42.Visible = true;
     this.gridColumn42.VisibleIndex = 1;
     //
     // 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.ColumnEdit = this.repositoryItemCheckEditTF;
     this.gridColumn43.FieldName = "allow";
     this.gridColumn43.Name = "gridColumn43";
     this.gridColumn43.Visible = true;
     this.gridColumn43.VisibleIndex = 2;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn44.Name = "gridColumn44";
     this.gridColumn44.Visible = true;
     this.gridColumn44.VisibleIndex = 3;
     //
     // gridColumn45
     //
     this.gridColumn45.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn45.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn45.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn45.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn45.Caption = "حذف";
     this.gridColumn45.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn45.Name = "gridColumn45";
     this.gridColumn45.Visible = true;
     this.gridColumn45.VisibleIndex = 4;
     //
     // repositoryItemCheckEditTF
     //
     this.repositoryItemCheckEditTF.AutoHeight = false;
     this.repositoryItemCheckEditTF.Name = "repositoryItemCheckEditTF";
     //
     // CodeFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(534, 362);
     this.Controls.Add(this.gridControlCode);
     this.Name = "CodeFrm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "اكواد";
     this.Load += new System.EventHandler(this.CodeFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDAlhasas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDAlsofof)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditmarhala_code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDEFasl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDDayname)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_HesaTime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditdaycode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdithasa_code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEditT)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDSubjectWekly)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditalsofof_code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSubjectId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCheckMe)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDPlace)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_EmpState)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_JobDescription)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_EmpJob)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditJobDescriptionId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Department)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Subject)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_QualifiedPlace)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDQualification)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Specialization)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditqualId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_MaritalStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTBL_Priority)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Asasetime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSPOS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPayTypeId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditKastNoId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditEmpID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditBigTxt)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditfasl_code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_AgazaType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditTF)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.sbtnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.sbtnOK = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.label1 = new System.Windows.Forms.Label();
     this.sbtnSearch = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearchKey = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearchKey.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.sbtnCancel);
     this.panelControl2.Controls.Add(this.sbtnOK);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl2.Location = new System.Drawing.Point(0, 463);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(936, 38);
     this.panelControl2.TabIndex = 3;
     this.panelControl2.Text = "panelControl2";
     //
     // sbtnCancel
     //
     this.sbtnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.sbtnCancel.Location = new System.Drawing.Point(854, 8);
     this.sbtnCancel.Name = "sbtnCancel";
     this.sbtnCancel.TabIndex = 1;
     this.sbtnCancel.Text = "Cancel";
     this.sbtnCancel.Click += new System.EventHandler(this.sbtnCancel_Click);
     //
     // sbtnOK
     //
     this.sbtnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.sbtnOK.Location = new System.Drawing.Point(770, 8);
     this.sbtnOK.Name = "sbtnOK";
     this.sbtnOK.TabIndex = 0;
     this.sbtnOK.Text = "OK";
     this.sbtnOK.Click += new System.EventHandler(this.sbtnOK_Click);
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.gridControl1);
     this.groupControl1.Location = new System.Drawing.Point(0, 40);
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(936, 424);
     this.groupControl1.TabIndex = 4;
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     this.gridControl1.Location = new System.Drawing.Point(4, 18);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                                                                                                           this.repositoryItemCheckEdit1,
                                                                                                           this.repositoryItemCheckEdit2,
                                                                                                           this.repositoryItemCheckEdit3,
                                                                                                           this.repositoryItemCheckEdit4,
                                                                                                           this.repositoryItemCheckEdit5,
                                                                                                           this.repositoryItemCheckEdit6,
                                                                                                           this.repositoryItemCheckEdit7});
     this.gridControl1.Size = new System.Drawing.Size(928, 402);
     this.gridControl1.TabIndex = 2;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
                                                                                                 this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gridView1.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
     this.gridView1.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
     this.gridView1.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gridView1.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gridView1.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.Empty.BackColor2 = System.Drawing.Color.White;
     this.gridView1.Appearance.Empty.Options.UseBackColor = true;
     this.gridView1.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
     this.gridView1.Appearance.EvenRow.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(231)), ((System.Byte)(234)));
     this.gridView1.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.EvenRow.Options.UseBackColor = true;
     this.gridView1.Appearance.EvenRow.Options.UseBorderColor = true;
     this.gridView1.Appearance.EvenRow.Options.UseForeColor = true;
     this.gridView1.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
     this.gridView1.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
     this.gridView1.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gridView1.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gridView1.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gridView1.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.White;
     this.gridView1.Appearance.FilterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gridView1.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gridView1.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(122)), ((System.Byte)(114)), ((System.Byte)(113)));
     this.gridView1.Appearance.FixedLine.Options.UseBackColor = true;
     this.gridView1.Appearance.FocusedCell.BackColor = System.Drawing.Color.White;
     this.gridView1.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gridView1.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gridView1.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(200)), ((System.Byte)(192)), ((System.Byte)(157)));
     this.gridView1.Appearance.FocusedRow.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(226)), ((System.Byte)(219)), ((System.Byte)(188)));
     this.gridView1.Appearance.FocusedRow.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gridView1.Appearance.FocusedRow.Options.UseBorderColor = true;
     this.gridView1.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gridView1.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gridView1.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gridView1.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gridView1.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
     this.gridView1.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(179)));
     this.gridView1.Appearance.GroupButton.Options.UseBackColor = true;
     this.gridView1.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gridView1.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gridView1.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gridView1.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gridView1.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(246)), ((System.Byte)(242)), ((System.Byte)(213)));
     this.gridView1.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.gridView1.Appearance.GroupPanel.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gridView1.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gridView1.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.GroupRow.Options.UseBackColor = true;
     this.gridView1.Appearance.GroupRow.Options.UseBorderColor = true;
     this.gridView1.Appearance.GroupRow.Options.UseForeColor = true;
     this.gridView1.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gridView1.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gridView1.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gridView1.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(237)), ((System.Byte)(230)), ((System.Byte)(203)));
     this.gridView1.Appearance.HideSelectionRow.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(237)), ((System.Byte)(230)), ((System.Byte)(203)));
     this.gridView1.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gridView1.Appearance.HideSelectionRow.Options.UseBorderColor = true;
     this.gridView1.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gridView1.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.HorzLine.Options.UseBackColor = true;
     this.gridView1.Appearance.OddRow.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(242)), ((System.Byte)(244)), ((System.Byte)(236)));
     this.gridView1.Appearance.OddRow.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(242)), ((System.Byte)(244)), ((System.Byte)(236)));
     this.gridView1.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.OddRow.Options.UseBackColor = true;
     this.gridView1.Appearance.OddRow.Options.UseBorderColor = true;
     this.gridView1.Appearance.OddRow.Options.UseForeColor = true;
     this.gridView1.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(251)), ((System.Byte)(252)), ((System.Byte)(247)));
     this.gridView1.Appearance.Preview.Font = new System.Drawing.Font("Verdana", 7.5F);
     this.gridView1.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(148)), ((System.Byte)(148)), ((System.Byte)(148)));
     this.gridView1.Appearance.Preview.Options.UseBackColor = true;
     this.gridView1.Appearance.Preview.Options.UseFont = true;
     this.gridView1.Appearance.Preview.Options.UseForeColor = true;
     this.gridView1.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(242)), ((System.Byte)(244)), ((System.Byte)(236)));
     this.gridView1.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.Row.Options.UseBackColor = true;
     this.gridView1.Appearance.Row.Options.UseForeColor = true;
     this.gridView1.Appearance.RowSeparator.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(236)), ((System.Byte)(232)), ((System.Byte)(201)));
     this.gridView1.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.White;
     this.gridView1.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gridView1.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(221)), ((System.Byte)(215)), ((System.Byte)(188)));
     this.gridView1.Appearance.SelectedRow.BorderColor = System.Drawing.Color.FromArgb(((System.Byte)(237)), ((System.Byte)(230)), ((System.Byte)(203)));
     this.gridView1.Appearance.SelectedRow.ForeColor = System.Drawing.Color.Black;
     this.gridView1.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gridView1.Appearance.SelectedRow.Options.UseBorderColor = true;
     this.gridView1.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gridView1.Appearance.TopNewRow.BackColor = System.Drawing.Color.White;
     this.gridView1.Appearance.TopNewRow.Options.UseBackColor = true;
     this.gridView1.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(216)), ((System.Byte)(209)), ((System.Byte)(170)));
     this.gridView1.Appearance.VertLine.Options.UseBackColor = true;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
                                                                                      this.gridColumn1,
                                                                                      this.gridColumn2,
                                                                                      this.gridColumn3,
                                                                                      this.gridColumn4,
                                                                                      this.gridColumn5});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.AllowIncrementalSearch = true;
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsView.EnableAppearanceEvenRow = true;
     this.gridView1.OptionsView.EnableAppearanceOddRow = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.DoubleClick += new System.EventHandler(this.gridView1_DoubleClick);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Employee Id";
     this.gridColumn1.FieldName = "nEmployeeID";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Employee Name";
     this.gridColumn2.FieldName = "strEmployeeName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Job Position";
     this.gridColumn3.FieldName = "strJobPositionCode";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Branch";
     this.gridColumn4.FieldName = "strBranchCode";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Start Date";
     this.gridColumn5.DisplayFormat.FormatString = "{0:dd/MM/yyyy}";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn5.FieldName = "dtEmployeeStartDate";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     this.repositoryItemCheckEdit1.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     this.repositoryItemCheckEdit3.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit4
     //
     this.repositoryItemCheckEdit4.AutoHeight = false;
     this.repositoryItemCheckEdit4.Name = "repositoryItemCheckEdit4";
     this.repositoryItemCheckEdit4.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit5
     //
     this.repositoryItemCheckEdit5.AutoHeight = false;
     this.repositoryItemCheckEdit5.Name = "repositoryItemCheckEdit5";
     this.repositoryItemCheckEdit5.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit6
     //
     this.repositoryItemCheckEdit6.AutoHeight = false;
     this.repositoryItemCheckEdit6.Name = "repositoryItemCheckEdit6";
     this.repositoryItemCheckEdit6.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // repositoryItemCheckEdit7
     //
     this.repositoryItemCheckEdit7.AutoHeight = false;
     this.repositoryItemCheckEdit7.Name = "repositoryItemCheckEdit7";
     this.repositoryItemCheckEdit7.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.label1);
     this.panelControl1.Controls.Add(this.sbtnSearch);
     this.panelControl1.Controls.Add(this.txtSearchKey);
     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(936, 48);
     this.panelControl1.TabIndex = 5;
     this.panelControl1.Text = "panelControl1";
     //
     // label1
     //
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
     this.label1.Location = new System.Drawing.Point(16, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(120, 23);
     this.label1.TabIndex = 2;
     this.label1.Text = "Employee Id / Name";
     //
     // sbtnSearch
     //
     this.sbtnSearch.Location = new System.Drawing.Point(296, 16);
     this.sbtnSearch.Name = "sbtnSearch";
     this.sbtnSearch.TabIndex = 1;
     this.sbtnSearch.Text = "Search";
     this.sbtnSearch.Click += new System.EventHandler(this.sbtnSearch_Click);
     //
     // txtSearchKey
     //
     this.txtSearchKey.EditValue = "";
     this.txtSearchKey.Location = new System.Drawing.Point(144, 16);
     this.txtSearchKey.Name = "txtSearchKey";
     this.txtSearchKey.Size = new System.Drawing.Size(146, 20);
     this.txtSearchKey.TabIndex = 0;
     //
     // frmSearchEmployee
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(936, 501);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.panelControl2);
     this.Name = "frmSearchEmployee";
     this.Text = "Search Employee";
     this.Load += new System.EventHandler(this.frmSearchEmployee_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearchKey.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode3 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode4 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode5 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode6 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode7 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode8 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode9 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode10 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode11 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode12 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode13 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode14 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode15 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode16 = new DevExpress.XtraGrid.GridLevelNode();
     this.gridViewCD_PayType = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEditCheckMe = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridControlCode = new DevExpress.XtraGrid.GridControl();
     this.gridViewCD_PayTypeDetiel = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditPayTypeId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_PayMony = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditPayTypeDetielId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn56 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditalsofof_code = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditf2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.gridColumn55 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_Discounts = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn58 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_KastNo = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_KastSaf = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditKastNoId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn59 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_KastBnood = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn79 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn80 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn81 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn82 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn83 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_Specialization = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn88 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditqualId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn89 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn90 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_MaritalStatus = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn91 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn92 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn93 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn94 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_Courses = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn95 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn96 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn98 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn99 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCDPlaceTraining = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn102 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn103 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn104 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn105 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_AgazaType = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCDTakdeer = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn41 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_EznType = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn42 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn43 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_GzaaType = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_GehaGazaa = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewCD_AsaseACC = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn106 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn107 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn108 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditSPOS = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn112 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn113 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn116 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn117 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEditTime = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.repositoryItemGridLookUpEditJobDescriptionId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_PayType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCheckMe)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_PayTypeDetiel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPayTypeId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_PayMony)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPayTypeDetielId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditalsofof_code)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Discounts)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_KastNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_KastSaf)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditKastNoId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_KastBnood)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Specialization)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditqualId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_MaritalStatus)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Courses)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDPlaceTraining)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_AgazaType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDTakdeer)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_EznType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_GzaaType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_GehaGazaa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_AsaseACC)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSPOS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEditTime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditJobDescriptionId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewCD_PayType
     //
     this.gridViewCD_PayType.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4});
     this.gridViewCD_PayType.GridControl = this.gridControlCode;
     this.gridViewCD_PayType.Name = "gridViewCD_PayType";
     this.gridViewCD_PayType.OptionsView.ColumnAutoWidth = 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 = "PayType";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 172;
     //
     // 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.ColumnEdit = this.repositoryItemCheckEditCheckMe;
     this.gridColumn2.FieldName = "Additional";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 152;
     //
     // repositoryItemCheckEditCheckMe
     //
     this.repositoryItemCheckEditCheckMe.AutoHeight = false;
     this.repositoryItemCheckEditCheckMe.Name = "repositoryItemCheckEditCheckMe";
     this.repositoryItemCheckEditCheckMe.ValueGrayed = false;
     this.repositoryItemCheckEditCheckMe.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK)});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.Tag = "save";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_ButtonClick);
     this.repositoryItemButtonEditSave.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.Tag = "delete";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     this.repositoryItemButtonEditDel.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // gridControlCode
     //
     this.gridControlCode.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlCode.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;
     this.gridControlCode.EmbeddedNavigator.Buttons.Edit.Visible = false;
     this.gridControlCode.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
     this.gridControlCode.EmbeddedNavigator.Buttons.Remove.Visible = false;
     gridLevelNode1.LevelTemplate = this.gridViewCD_PayType;
     gridLevelNode1.RelationName = "Level1";
     gridLevelNode2.LevelTemplate = this.gridViewCD_PayTypeDetiel;
     gridLevelNode2.RelationName = "Level2";
     gridLevelNode3.LevelTemplate = this.gridViewCD_PayMony;
     gridLevelNode3.RelationName = "Level3";
     gridLevelNode4.LevelTemplate = this.gridViewCD_Discounts;
     gridLevelNode4.RelationName = "Level4";
     gridLevelNode5.LevelTemplate = this.gridViewCD_KastNo;
     gridLevelNode5.RelationName = "Level5";
     gridLevelNode6.LevelTemplate = this.gridViewCD_KastSaf;
     gridLevelNode6.RelationName = "Level6";
     gridLevelNode7.LevelTemplate = this.gridViewCD_KastBnood;
     gridLevelNode7.RelationName = "Level19";
     gridLevelNode8.LevelTemplate = this.gridViewCD_Specialization;
     gridLevelNode8.RelationName = "Level21";
     gridLevelNode9.LevelTemplate = this.gridViewCD_MaritalStatus;
     gridLevelNode9.RelationName = "Level22";
     gridLevelNode10.LevelTemplate = this.gridViewCD_Courses;
     gridLevelNode10.RelationName = "Level23";
     gridLevelNode11.LevelTemplate = this.gridViewCDPlaceTraining;
     gridLevelNode11.RelationName = "Level24";
     gridLevelNode12.LevelTemplate = this.gridViewCD_AgazaType;
     gridLevelNode12.RelationName = "Level7";
     gridLevelNode13.LevelTemplate = this.gridViewCDTakdeer;
     gridLevelNode13.RelationName = "Level8";
     gridLevelNode14.LevelTemplate = this.gridViewCD_EznType;
     gridLevelNode14.RelationName = "Level9";
     gridLevelNode15.LevelTemplate = this.gridViewCD_GzaaType;
     gridLevelNode15.RelationName = "Level10";
     gridLevelNode16.LevelTemplate = this.gridViewCD_GehaGazaa;
     gridLevelNode16.RelationName = "Level11";
     this.gridControlCode.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1,
     gridLevelNode2,
     gridLevelNode3,
     gridLevelNode4,
     gridLevelNode5,
     gridLevelNode6,
     gridLevelNode7,
     gridLevelNode8,
     gridLevelNode9,
     gridLevelNode10,
     gridLevelNode11,
     gridLevelNode12,
     gridLevelNode13,
     gridLevelNode14,
     gridLevelNode15,
     gridLevelNode16});
     this.gridControlCode.Location = new System.Drawing.Point(0, 0);
     this.gridControlCode.MainView = this.gridViewCD_AsaseACC;
     this.gridControlCode.Name = "gridControlCode";
     this.gridControlCode.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemCheckEditCheckMe,
     this.repositoryItemGridLookUpEditSPOS,
     this.repositoryItemTimeEditTime,
     this.repositoryItemGridLookUpEditJobDescriptionId,
     this.repositoryItemGridLookUpEditqualId,
     this.repositoryItemGridLookUpEditPayTypeId,
     this.repositoryItemGridLookUpEditPayTypeDetielId,
     this.repositoryItemGridLookUpEditalsofof_code,
     this.repositoryItemCalcEditf2,
     this.repositoryItemGridLookUpEditKastNoId});
     this.gridControlCode.Size = new System.Drawing.Size(534, 362);
     this.gridControlCode.TabIndex = 0;
     this.gridControlCode.UseEmbeddedNavigator = true;
     this.gridControlCode.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewCD_PayTypeDetiel,
     this.gridViewCD_PayMony,
     this.gridViewCD_Discounts,
     this.gridViewCD_KastNo,
     this.gridViewCD_KastSaf,
     this.gridViewCD_KastBnood,
     this.gridViewCD_Specialization,
     this.gridViewCD_MaritalStatus,
     this.gridViewCD_Courses,
     this.gridViewCDPlaceTraining,
     this.gridViewCD_AgazaType,
     this.gridViewCDTakdeer,
     this.gridViewCD_EznType,
     this.gridViewCD_GzaaType,
     this.gridViewCD_GehaGazaa,
     this.gridViewCD_AsaseACC,
     this.gridViewCD_PayType});
     this.gridControlCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // gridViewCD_PayTypeDetiel
     //
     this.gridViewCD_PayTypeDetiel.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn6,
     this.gridColumn5,
     this.gridColumn10,
     this.gridColumn11});
     this.gridViewCD_PayTypeDetiel.GridControl = this.gridControlCode;
     this.gridViewCD_PayTypeDetiel.Name = "gridViewCD_PayTypeDetiel";
     this.gridViewCD_PayTypeDetiel.OptionsView.ColumnAutoWidth = false;
     //
     // 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 = "PayTypeDetiel";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     this.gridColumn6.Width = 124;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditPayTypeId;
     this.gridColumn5.FieldName = "PayTypeId";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 1;
     this.gridColumn5.Width = 107;
     //
     // repositoryItemGridLookUpEditPayTypeId
     //
     this.repositoryItemGridLookUpEditPayTypeId.AutoHeight = false;
     this.repositoryItemGridLookUpEditPayTypeId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditPayTypeId.DisplayMember = "PayType";
     this.repositoryItemGridLookUpEditPayTypeId.Name = "repositoryItemGridLookUpEditPayTypeId";
     this.repositoryItemGridLookUpEditPayTypeId.NullText = "";
     this.repositoryItemGridLookUpEditPayTypeId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditPayTypeId.ValueMember = "PayTypeId";
     this.repositoryItemGridLookUpEditPayTypeId.View = this.repositoryItemGridLookUpEdit1View;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn54});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "PayType";
     this.gridColumn54.Name = "gridColumn54";
     this.gridColumn54.Visible = true;
     this.gridColumn54.VisibleIndex = 0;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 2;
     this.gridColumn10.Width = 68;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 3;
     this.gridColumn11.Width = 54;
     //
     // gridViewCD_PayMony
     //
     this.gridViewCD_PayMony.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn14,
     this.gridColumn15,
     this.gridColumn7,
     this.gridColumn55,
     this.gridColumn16,
     this.gridColumn17});
     this.gridViewCD_PayMony.GridControl = this.gridControlCode;
     this.gridViewCD_PayMony.Name = "gridViewCD_PayMony";
     this.gridViewCD_PayMony.OptionsView.ColumnAutoWidth = false;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditPayTypeDetielId;
     this.gridColumn14.FieldName = "PayTypeDetielId";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 0;
     this.gridColumn14.Width = 164;
     //
     // repositoryItemGridLookUpEditPayTypeDetielId
     //
     this.repositoryItemGridLookUpEditPayTypeDetielId.AutoHeight = false;
     this.repositoryItemGridLookUpEditPayTypeDetielId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditPayTypeDetielId.DisplayMember = "PayTypeDetiel";
     this.repositoryItemGridLookUpEditPayTypeDetielId.Name = "repositoryItemGridLookUpEditPayTypeDetielId";
     this.repositoryItemGridLookUpEditPayTypeDetielId.NullText = "";
     this.repositoryItemGridLookUpEditPayTypeDetielId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditPayTypeDetielId.ValueMember = "PayTypeDetielId";
     this.repositoryItemGridLookUpEditPayTypeDetielId.View = this.gridView1;
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn56});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "PayTypeDetiel";
     this.gridColumn56.Name = "gridColumn56";
     this.gridColumn56.Visible = true;
     this.gridColumn56.VisibleIndex = 0;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditalsofof_code;
     this.gridColumn15.FieldName = "alsofof_code";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 1;
     this.gridColumn15.Width = 147;
     //
     // repositoryItemGridLookUpEditalsofof_code
     //
     this.repositoryItemGridLookUpEditalsofof_code.AutoHeight = false;
     this.repositoryItemGridLookUpEditalsofof_code.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditalsofof_code.DisplayMember = "alsofof_name";
     this.repositoryItemGridLookUpEditalsofof_code.Name = "repositoryItemGridLookUpEditalsofof_code";
     this.repositoryItemGridLookUpEditalsofof_code.NullText = "";
     this.repositoryItemGridLookUpEditalsofof_code.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditalsofof_code.ValueMember = "alsofof_code";
     this.repositoryItemGridLookUpEditalsofof_code.View = this.gridView5;
     //
     // gridView5
     //
     this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn57});
     this.gridView5.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView5.Name = "gridView5";
     this.gridView5.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView5.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn57
     //
     this.gridColumn57.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn57.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn57.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn57.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn57.Caption = "الاسم";
     this.gridColumn57.FieldName = "alsofof_name";
     this.gridColumn57.Name = "gridColumn57";
     this.gridColumn57.Visible = true;
     this.gridColumn57.VisibleIndex = 0;
     //
     // 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.ColumnEdit = this.repositoryItemCalcEditf2;
     this.gridColumn7.FieldName = "PayMony";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 2;
     //
     // repositoryItemCalcEditf2
     //
     this.repositoryItemCalcEditf2.AutoHeight = false;
     this.repositoryItemCalcEditf2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditf2.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.Mask.EditMask = "f2";
     this.repositoryItemCalcEditf2.Name = "repositoryItemCalcEditf2";
     //
     // 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 = "asase_year";
     this.gridColumn55.Name = "gridColumn55";
     this.gridColumn55.Visible = true;
     this.gridColumn55.VisibleIndex = 3;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 4;
     //
     // gridColumn17
     //
     this.gridColumn17.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn17.Caption = "حذف";
     this.gridColumn17.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 5;
     //
     // gridViewCD_Discounts
     //
     this.gridViewCD_Discounts.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn18,
     this.gridColumn19,
     this.gridColumn58,
     this.gridColumn20,
     this.gridColumn21});
     this.gridViewCD_Discounts.GridControl = this.gridControlCode;
     this.gridViewCD_Discounts.Name = "gridViewCD_Discounts";
     this.gridViewCD_Discounts.OptionsView.ColumnAutoWidth = 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 = "Discounts";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 0;
     this.gridColumn18.Width = 153;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditPayTypeDetielId;
     this.gridColumn19.FieldName = "PayTypeDetielId";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 1;
     this.gridColumn19.Width = 155;
     //
     // gridColumn58
     //
     this.gridColumn58.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn58.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn58.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn58.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn58.Caption = "نسبة الخصم";
     this.gridColumn58.ColumnEdit = this.repositoryItemCalcEditf2;
     this.gridColumn58.FieldName = "Percentage";
     this.gridColumn58.Name = "gridColumn58";
     this.gridColumn58.Visible = true;
     this.gridColumn58.VisibleIndex = 2;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 3;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 4;
     //
     // gridViewCD_KastNo
     //
     this.gridViewCD_KastNo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn22,
     this.gridColumn24,
     this.gridColumn25});
     this.gridViewCD_KastNo.GridControl = this.gridControlCode;
     this.gridViewCD_KastNo.Name = "gridViewCD_KastNo";
     this.gridViewCD_KastNo.OptionsView.ColumnAutoWidth = false;
     //
     // 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.FieldName = "KastName";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 0;
     this.gridColumn22.Width = 177;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 1;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 2;
     //
     // gridViewCD_KastSaf
     //
     this.gridViewCD_KastSaf.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn26,
     this.gridColumn27,
     this.gridColumn59,
     this.gridColumn28,
     this.gridColumn29});
     this.gridViewCD_KastSaf.GridControl = this.gridControlCode;
     this.gridViewCD_KastSaf.Name = "gridViewCD_KastSaf";
     this.gridViewCD_KastSaf.OptionsView.ColumnAutoWidth = false;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditKastNoId;
     this.gridColumn26.FieldName = "KastNoId";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 0;
     this.gridColumn26.Width = 177;
     //
     // repositoryItemGridLookUpEditKastNoId
     //
     this.repositoryItemGridLookUpEditKastNoId.AutoHeight = false;
     this.repositoryItemGridLookUpEditKastNoId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditKastNoId.DisplayMember = "KastName";
     this.repositoryItemGridLookUpEditKastNoId.Name = "repositoryItemGridLookUpEditKastNoId";
     this.repositoryItemGridLookUpEditKastNoId.NullText = "";
     this.repositoryItemGridLookUpEditKastNoId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditKastNoId.ValueMember = "KastNoId";
     this.repositoryItemGridLookUpEditKastNoId.View = this.gridView6;
     //
     // gridView6
     //
     this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn23});
     this.gridView6.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView6.Name = "gridView6";
     this.gridView6.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView6.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "القســـــــط";
     this.gridColumn23.FieldName = "KastName";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 0;
     //
     // 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.ColumnEdit = this.repositoryItemGridLookUpEditalsofof_code;
     this.gridColumn27.FieldName = "alsofof_code";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 1;
     this.gridColumn27.Width = 151;
     //
     // gridColumn59
     //
     this.gridColumn59.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn59.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn59.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn59.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn59.Caption = "مبلغ القسط";
     this.gridColumn59.ColumnEdit = this.repositoryItemCalcEditf2;
     this.gridColumn59.FieldName = "KastSafMony";
     this.gridColumn59.Name = "gridColumn59";
     this.gridColumn59.Visible = true;
     this.gridColumn59.VisibleIndex = 2;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 3;
     //
     // 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 = "حذف";
     this.gridColumn29.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 4;
     //
     // gridViewCD_KastBnood
     //
     this.gridViewCD_KastBnood.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn79,
     this.gridColumn80,
     this.gridColumn81,
     this.gridColumn82,
     this.gridColumn83});
     this.gridViewCD_KastBnood.GridControl = this.gridControlCode;
     this.gridViewCD_KastBnood.Name = "gridViewCD_KastBnood";
     this.gridViewCD_KastBnood.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn79
     //
     this.gridColumn79.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn79.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn79.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn79.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn79.Caption = "القسط";
     this.gridColumn79.ColumnEdit = this.repositoryItemGridLookUpEditKastNoId;
     this.gridColumn79.FieldName = "KastNoId";
     this.gridColumn79.Name = "gridColumn79";
     this.gridColumn79.Visible = true;
     this.gridColumn79.VisibleIndex = 0;
     this.gridColumn79.Width = 193;
     //
     // gridColumn80
     //
     this.gridColumn80.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn80.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn80.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn80.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn80.Caption = "بند التحصيـــــل";
     this.gridColumn80.ColumnEdit = this.repositoryItemGridLookUpEditPayTypeDetielId;
     this.gridColumn80.FieldName = "PayTypeDetielId";
     this.gridColumn80.Name = "gridColumn80";
     this.gridColumn80.Visible = true;
     this.gridColumn80.VisibleIndex = 1;
     this.gridColumn80.Width = 170;
     //
     // gridColumn81
     //
     this.gridColumn81.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn81.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn81.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn81.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn81.Caption = "اولوية التحصيل";
     this.gridColumn81.FieldName = "Awlawea";
     this.gridColumn81.Name = "gridColumn81";
     this.gridColumn81.Visible = true;
     this.gridColumn81.VisibleIndex = 2;
     this.gridColumn81.Width = 96;
     //
     // gridColumn82
     //
     this.gridColumn82.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn82.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn82.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn82.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn82.Caption = "حفظ";
     this.gridColumn82.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn82.Name = "gridColumn82";
     this.gridColumn82.Visible = true;
     this.gridColumn82.VisibleIndex = 3;
     //
     // gridColumn83
     //
     this.gridColumn83.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn83.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn83.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn83.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn83.Caption = "حذف";
     this.gridColumn83.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn83.Name = "gridColumn83";
     this.gridColumn83.Visible = true;
     this.gridColumn83.VisibleIndex = 4;
     //
     // gridViewCD_Specialization
     //
     this.gridViewCD_Specialization.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn88,
     this.gridColumn34,
     this.gridColumn35,
     this.gridColumn89,
     this.gridColumn90});
     this.gridViewCD_Specialization.GridControl = this.gridControlCode;
     this.gridViewCD_Specialization.Name = "gridViewCD_Specialization";
     this.gridViewCD_Specialization.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn88
     //
     this.gridColumn88.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn88.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn88.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn88.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn88.Caption = "المؤهل";
     this.gridColumn88.ColumnEdit = this.repositoryItemGridLookUpEditqualId;
     this.gridColumn88.FieldName = "qualId";
     this.gridColumn88.Name = "gridColumn88";
     this.gridColumn88.Visible = true;
     this.gridColumn88.VisibleIndex = 0;
     this.gridColumn88.Width = 239;
     //
     // repositoryItemGridLookUpEditqualId
     //
     this.repositoryItemGridLookUpEditqualId.AutoHeight = false;
     this.repositoryItemGridLookUpEditqualId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditqualId.DisplayMember = "qualName";
     this.repositoryItemGridLookUpEditqualId.Name = "repositoryItemGridLookUpEditqualId";
     this.repositoryItemGridLookUpEditqualId.NullText = "";
     this.repositoryItemGridLookUpEditqualId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditqualId.ValueMember = "qualId";
     this.repositoryItemGridLookUpEditqualId.View = this.gridView4;
     //
     // gridView4
     //
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn36});
     this.gridView4.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "qualName";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 0;
     //
     // 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 = "التخصص بالعربيه";
     this.gridColumn34.FieldName = "SpecializationName";
     this.gridColumn34.Name = "gridColumn34";
     this.gridColumn34.Visible = true;
     this.gridColumn34.VisibleIndex = 1;
     //
     // 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 = "SpecializationName_e";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Visible = true;
     this.gridColumn35.VisibleIndex = 2;
     //
     // gridColumn89
     //
     this.gridColumn89.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn89.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn89.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn89.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn89.Caption = "حفظ";
     this.gridColumn89.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn89.Name = "gridColumn89";
     this.gridColumn89.Visible = true;
     this.gridColumn89.VisibleIndex = 3;
     //
     // gridColumn90
     //
     this.gridColumn90.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn90.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn90.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn90.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn90.Caption = "حذف";
     this.gridColumn90.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn90.Name = "gridColumn90";
     this.gridColumn90.Visible = true;
     this.gridColumn90.VisibleIndex = 4;
     //
     // gridViewCD_MaritalStatus
     //
     this.gridViewCD_MaritalStatus.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn91,
     this.gridColumn92,
     this.gridColumn93,
     this.gridColumn94});
     this.gridViewCD_MaritalStatus.GridControl = this.gridControlCode;
     this.gridViewCD_MaritalStatus.Name = "gridViewCD_MaritalStatus";
     this.gridViewCD_MaritalStatus.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn91
     //
     this.gridColumn91.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn91.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn91.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn91.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn91.Caption = "الحالة بالعربيه";
     this.gridColumn91.FieldName = "MaritalStatus";
     this.gridColumn91.Name = "gridColumn91";
     this.gridColumn91.Visible = true;
     this.gridColumn91.VisibleIndex = 0;
     this.gridColumn91.Width = 187;
     //
     // gridColumn92
     //
     this.gridColumn92.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn92.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn92.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn92.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn92.Caption = "الحالة بالانجليزيه";
     this.gridColumn92.FieldName = "MaritalStatus_e";
     this.gridColumn92.Name = "gridColumn92";
     this.gridColumn92.Visible = true;
     this.gridColumn92.VisibleIndex = 1;
     this.gridColumn92.Width = 175;
     //
     // gridColumn93
     //
     this.gridColumn93.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn93.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn93.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn93.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn93.Caption = "حفظ";
     this.gridColumn93.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn93.Name = "gridColumn93";
     this.gridColumn93.Visible = true;
     this.gridColumn93.VisibleIndex = 2;
     //
     // gridColumn94
     //
     this.gridColumn94.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn94.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn94.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn94.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn94.Caption = "حذف";
     this.gridColumn94.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn94.Name = "gridColumn94";
     this.gridColumn94.Visible = true;
     this.gridColumn94.VisibleIndex = 3;
     //
     // gridViewCD_Courses
     //
     this.gridViewCD_Courses.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn95,
     this.gridColumn96,
     this.gridColumn98,
     this.gridColumn99});
     this.gridViewCD_Courses.GridControl = this.gridControlCode;
     this.gridViewCD_Courses.Name = "gridViewCD_Courses";
     this.gridViewCD_Courses.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn95
     //
     this.gridColumn95.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn95.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn95.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn95.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn95.Caption = "اسم الدوره بالعربيه";
     this.gridColumn95.FieldName = "CourseName";
     this.gridColumn95.Name = "gridColumn95";
     this.gridColumn95.Visible = true;
     this.gridColumn95.VisibleIndex = 0;
     this.gridColumn95.Width = 149;
     //
     // gridColumn96
     //
     this.gridColumn96.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn96.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn96.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn96.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn96.Caption = "اسم الدوره بالانجليزيه";
     this.gridColumn96.FieldName = "CourseName_e";
     this.gridColumn96.Name = "gridColumn96";
     this.gridColumn96.Visible = true;
     this.gridColumn96.VisibleIndex = 1;
     this.gridColumn96.Width = 128;
     //
     // gridColumn98
     //
     this.gridColumn98.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn98.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn98.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn98.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn98.Caption = "حفظ";
     this.gridColumn98.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn98.Name = "gridColumn98";
     this.gridColumn98.Visible = true;
     this.gridColumn98.VisibleIndex = 2;
     this.gridColumn98.Width = 63;
     //
     // gridColumn99
     //
     this.gridColumn99.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn99.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn99.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn99.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn99.Caption = "حذف";
     this.gridColumn99.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn99.Name = "gridColumn99";
     this.gridColumn99.Visible = true;
     this.gridColumn99.VisibleIndex = 3;
     this.gridColumn99.Width = 60;
     //
     // gridViewCDPlaceTraining
     //
     this.gridViewCDPlaceTraining.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn102,
     this.gridColumn103,
     this.gridColumn37,
     this.gridColumn38,
     this.gridColumn104,
     this.gridColumn105});
     this.gridViewCDPlaceTraining.GridControl = this.gridControlCode;
     this.gridViewCDPlaceTraining.Name = "gridViewCDPlaceTraining";
     //
     // gridColumn102
     //
     this.gridColumn102.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn102.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn102.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn102.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn102.Caption = "اسم الجهه بالعربيه";
     this.gridColumn102.FieldName = "PlaceTrainingName";
     this.gridColumn102.Name = "gridColumn102";
     this.gridColumn102.Visible = true;
     this.gridColumn102.VisibleIndex = 0;
     this.gridColumn102.Width = 177;
     //
     // gridColumn103
     //
     this.gridColumn103.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn103.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn103.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn103.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn103.Caption = "اسم الجهه بالانجليزيه";
     this.gridColumn103.FieldName = "PlaceTrainingName_e";
     this.gridColumn103.Name = "gridColumn103";
     this.gridColumn103.Visible = true;
     this.gridColumn103.VisibleIndex = 1;
     this.gridColumn103.Width = 177;
     //
     // 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 = "PlaceTrainingTell";
     this.gridColumn37.Name = "gridColumn37";
     this.gridColumn37.Visible = true;
     this.gridColumn37.VisibleIndex = 2;
     this.gridColumn37.Width = 177;
     //
     // gridColumn38
     //
     this.gridColumn38.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn38.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn38.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn38.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn38.Caption = "بريد";
     this.gridColumn38.FieldName = "PlaceTrainingemail";
     this.gridColumn38.Name = "gridColumn38";
     this.gridColumn38.Visible = true;
     this.gridColumn38.VisibleIndex = 3;
     this.gridColumn38.Width = 177;
     //
     // gridColumn104
     //
     this.gridColumn104.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn104.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn104.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn104.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn104.Caption = "حفظ";
     this.gridColumn104.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn104.Name = "gridColumn104";
     this.gridColumn104.Visible = true;
     this.gridColumn104.VisibleIndex = 4;
     this.gridColumn104.Width = 112;
     //
     // gridColumn105
     //
     this.gridColumn105.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn105.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn105.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn105.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn105.Caption = "حذف";
     this.gridColumn105.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn105.Name = "gridColumn105";
     this.gridColumn105.Visible = true;
     this.gridColumn105.VisibleIndex = 5;
     this.gridColumn105.Width = 245;
     //
     // gridViewCD_AgazaType
     //
     this.gridViewCD_AgazaType.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn30,
     this.gridColumn31,
     this.gridColumn39,
     this.gridColumn32,
     this.gridColumn33});
     this.gridViewCD_AgazaType.GridControl = this.gridControlCode;
     this.gridViewCD_AgazaType.Name = "gridViewCD_AgazaType";
     this.gridViewCD_AgazaType.OptionsView.ColumnAutoWidth = 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 = "AgazaTypeName";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 0;
     this.gridColumn30.Width = 157;
     //
     // 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 = "AgazaTypeName_e";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 1;
     this.gridColumn31.Width = 153;
     //
     // gridColumn39
     //
     this.gridColumn39.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn39.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn39.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn39.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn39.Caption = "مسموح";
     this.gridColumn39.ColumnEdit = this.repositoryItemCheckEditCheckMe;
     this.gridColumn39.FieldName = "allow";
     this.gridColumn39.Name = "gridColumn39";
     this.gridColumn39.Visible = true;
     this.gridColumn39.VisibleIndex = 2;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn32.Name = "gridColumn32";
     this.gridColumn32.Visible = true;
     this.gridColumn32.VisibleIndex = 3;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn33.Name = "gridColumn33";
     this.gridColumn33.Visible = true;
     this.gridColumn33.VisibleIndex = 4;
     //
     // gridViewCDTakdeer
     //
     this.gridViewCDTakdeer.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn12,
     this.gridColumn13,
     this.gridColumn40,
     this.gridColumn41});
     this.gridViewCDTakdeer.GridControl = this.gridControlCode;
     this.gridViewCDTakdeer.Name = "gridViewCDTakdeer";
     this.gridViewCDTakdeer.OptionsView.ColumnAutoWidth = false;
     //
     // 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 = "TakdeerName";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 0;
     this.gridColumn12.Width = 205;
     //
     // 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 = "TakdeerName_e";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 1;
     this.gridColumn13.Width = 169;
     //
     // gridColumn40
     //
     this.gridColumn40.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn40.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn40.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn40.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn40.Caption = "حفظ";
     this.gridColumn40.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn40.Name = "gridColumn40";
     this.gridColumn40.Visible = true;
     this.gridColumn40.VisibleIndex = 2;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn41.Name = "gridColumn41";
     this.gridColumn41.Visible = true;
     this.gridColumn41.VisibleIndex = 3;
     //
     // gridViewCD_EznType
     //
     this.gridViewCD_EznType.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn42,
     this.gridColumn43,
     this.gridColumn44,
     this.gridColumn45});
     this.gridViewCD_EznType.GridControl = this.gridControlCode;
     this.gridViewCD_EznType.Name = "gridViewCD_EznType";
     this.gridViewCD_EznType.OptionsView.ColumnAutoWidth = false;
     //
     // 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 = "EznType";
     this.gridColumn42.Name = "gridColumn42";
     this.gridColumn42.Visible = true;
     this.gridColumn42.VisibleIndex = 0;
     //
     // 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 = "EznType_e";
     this.gridColumn43.Name = "gridColumn43";
     this.gridColumn43.Visible = true;
     this.gridColumn43.VisibleIndex = 1;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn44.Name = "gridColumn44";
     this.gridColumn44.Visible = true;
     this.gridColumn44.VisibleIndex = 2;
     //
     // gridColumn45
     //
     this.gridColumn45.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn45.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn45.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn45.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn45.Caption = "حذف";
     this.gridColumn45.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn45.Name = "gridColumn45";
     this.gridColumn45.Visible = true;
     this.gridColumn45.VisibleIndex = 3;
     //
     // gridViewCD_GzaaType
     //
     this.gridViewCD_GzaaType.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn46,
     this.gridColumn47,
     this.gridColumn48,
     this.gridColumn49});
     this.gridViewCD_GzaaType.GridControl = this.gridControlCode;
     this.gridViewCD_GzaaType.Name = "gridViewCD_GzaaType";
     this.gridViewCD_GzaaType.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn46
     //
     this.gridColumn46.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn46.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn46.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn46.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn46.Caption = "الجزاء بالعربيه";
     this.gridColumn46.FieldName = "GzaaType";
     this.gridColumn46.Name = "gridColumn46";
     this.gridColumn46.Visible = true;
     this.gridColumn46.VisibleIndex = 0;
     //
     // gridColumn47
     //
     this.gridColumn47.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn47.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn47.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn47.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn47.Caption = "الجزاء بالانجليزيه";
     this.gridColumn47.FieldName = "GzaaType_e";
     this.gridColumn47.Name = "gridColumn47";
     this.gridColumn47.Visible = true;
     this.gridColumn47.VisibleIndex = 1;
     //
     // gridColumn48
     //
     this.gridColumn48.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn48.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn48.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn48.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn48.Caption = "حفظ";
     this.gridColumn48.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn48.Name = "gridColumn48";
     this.gridColumn48.Visible = true;
     this.gridColumn48.VisibleIndex = 2;
     //
     // 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.repositoryItemButtonEditDel;
     this.gridColumn49.Name = "gridColumn49";
     this.gridColumn49.Visible = true;
     this.gridColumn49.VisibleIndex = 3;
     //
     // gridViewCD_GehaGazaa
     //
     this.gridViewCD_GehaGazaa.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn50,
     this.gridColumn51,
     this.gridColumn52,
     this.gridColumn53});
     this.gridViewCD_GehaGazaa.GridControl = this.gridControlCode;
     this.gridViewCD_GehaGazaa.Name = "gridViewCD_GehaGazaa";
     this.gridViewCD_GehaGazaa.OptionsView.ColumnAutoWidth = 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 = "GehaGazaa";
     this.gridColumn50.Name = "gridColumn50";
     this.gridColumn50.Visible = true;
     this.gridColumn50.VisibleIndex = 0;
     this.gridColumn50.Width = 214;
     //
     // 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 = "GehaGazaa_e";
     this.gridColumn51.Name = "gridColumn51";
     this.gridColumn51.Visible = true;
     this.gridColumn51.VisibleIndex = 1;
     this.gridColumn51.Width = 181;
     //
     // 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 = "حفظ";
     this.gridColumn52.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn52.Name = "gridColumn52";
     this.gridColumn52.Visible = true;
     this.gridColumn52.VisibleIndex = 2;
     //
     // 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.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn53.Name = "gridColumn53";
     this.gridColumn53.Visible = true;
     this.gridColumn53.VisibleIndex = 3;
     //
     // gridViewCD_AsaseACC
     //
     this.gridViewCD_AsaseACC.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn106,
     this.gridColumn107,
     this.gridColumn108,
     this.gridColumn116,
     this.gridColumn117});
     this.gridViewCD_AsaseACC.GridControl = this.gridControlCode;
     this.gridViewCD_AsaseACC.Name = "gridViewCD_AsaseACC";
     this.gridViewCD_AsaseACC.OptionsView.ColumnAutoWidth = false;
     //
     // gridColumn106
     //
     this.gridColumn106.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn106.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn106.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn106.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn106.Caption = "العام";
     this.gridColumn106.FieldName = "asase_year";
     this.gridColumn106.Name = "gridColumn106";
     this.gridColumn106.Visible = true;
     this.gridColumn106.VisibleIndex = 0;
     this.gridColumn106.Width = 143;
     //
     // gridColumn107
     //
     this.gridColumn107.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn107.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn107.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn107.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn107.Caption = "اسم المجمع ";
     this.gridColumn107.FieldName = "school_allname";
     this.gridColumn107.Name = "gridColumn107";
     this.gridColumn107.OptionsColumn.AllowEdit = false;
     this.gridColumn107.OptionsColumn.ReadOnly = true;
     this.gridColumn107.Visible = true;
     this.gridColumn107.VisibleIndex = 2;
     this.gridColumn107.Width = 133;
     //
     // gridColumn108
     //
     this.gridColumn108.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn108.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn108.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn108.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn108.Caption = "اسم المدرسه";
     this.gridColumn108.ColumnEdit = this.repositoryItemGridLookUpEditSPOS;
     this.gridColumn108.FieldName = "SPOS";
     this.gridColumn108.Name = "gridColumn108";
     this.gridColumn108.Visible = true;
     this.gridColumn108.VisibleIndex = 1;
     this.gridColumn108.Width = 133;
     //
     // repositoryItemGridLookUpEditSPOS
     //
     this.repositoryItemGridLookUpEditSPOS.AutoHeight = false;
     this.repositoryItemGridLookUpEditSPOS.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditSPOS.DisplayMember = "SCHOOL";
     this.repositoryItemGridLookUpEditSPOS.Name = "repositoryItemGridLookUpEditSPOS";
     this.repositoryItemGridLookUpEditSPOS.NullText = "";
     this.repositoryItemGridLookUpEditSPOS.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSPOS.ValueMember = "SPOS";
     this.repositoryItemGridLookUpEditSPOS.View = this.gridView3;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn112,
     this.gridColumn113});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn112
     //
     this.gridColumn112.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn112.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn112.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn112.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn112.Caption = "اسم المدرسه بالعربيه";
     this.gridColumn112.FieldName = "SCHOOL";
     this.gridColumn112.Name = "gridColumn112";
     this.gridColumn112.Visible = true;
     this.gridColumn112.VisibleIndex = 0;
     //
     // gridColumn113
     //
     this.gridColumn113.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn113.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn113.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn113.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn113.Caption = "اسم المدرسه بالانجليزيه";
     this.gridColumn113.FieldName = "SCHOOl_e";
     this.gridColumn113.Name = "gridColumn113";
     this.gridColumn113.Visible = true;
     this.gridColumn113.VisibleIndex = 1;
     //
     // gridColumn116
     //
     this.gridColumn116.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn116.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn116.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn116.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn116.Caption = "حفظ";
     this.gridColumn116.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumn116.Name = "gridColumn116";
     this.gridColumn116.Visible = true;
     this.gridColumn116.VisibleIndex = 3;
     this.gridColumn116.Width = 133;
     //
     // gridColumn117
     //
     this.gridColumn117.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn117.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn117.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn117.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn117.Caption = "حذف";
     this.gridColumn117.ColumnEdit = this.repositoryItemButtonEditDel;
     this.gridColumn117.Name = "gridColumn117";
     this.gridColumn117.Visible = true;
     this.gridColumn117.VisibleIndex = 4;
     this.gridColumn117.Width = 133;
     //
     // repositoryItemTimeEditTime
     //
     this.repositoryItemTimeEditTime.AutoHeight = false;
     this.repositoryItemTimeEditTime.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEditTime.DisplayFormat.FormatString = "hh:mm:ss t";
     this.repositoryItemTimeEditTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemTimeEditTime.EditFormat.FormatString = "hh:mm:ss t";
     this.repositoryItemTimeEditTime.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemTimeEditTime.Mask.EditMask = "hh:mm:ss t";
     this.repositoryItemTimeEditTime.Name = "repositoryItemTimeEditTime";
     //
     // repositoryItemGridLookUpEditJobDescriptionId
     //
     this.repositoryItemGridLookUpEditJobDescriptionId.AutoHeight = false;
     this.repositoryItemGridLookUpEditJobDescriptionId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditJobDescriptionId.DisplayMember = "JobDescription";
     this.repositoryItemGridLookUpEditJobDescriptionId.Name = "repositoryItemGridLookUpEditJobDescriptionId";
     this.repositoryItemGridLookUpEditJobDescriptionId.NullText = "";
     this.repositoryItemGridLookUpEditJobDescriptionId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditJobDescriptionId.ValueMember = "JobDescriptionId";
     this.repositoryItemGridLookUpEditJobDescriptionId.View = this.gridView2;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn8,
     this.gridColumn9});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // 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 = "JobDescription";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 0;
     //
     // 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 = "JobDescription_e";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 1;
     //
     // CodeFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(534, 362);
     this.Controls.Add(this.gridControlCode);
     this.Name = "CodeFrm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "اكواد";
     this.Load += new System.EventHandler(this.CodeFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_PayType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCheckMe)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_PayTypeDetiel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPayTypeId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_PayMony)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPayTypeDetielId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditalsofof_code)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Discounts)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_KastNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_KastSaf)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditKastNoId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_KastBnood)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Specialization)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditqualId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_MaritalStatus)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_Courses)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDPlaceTraining)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_AgazaType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCDTakdeer)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_EznType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_GzaaType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_GehaGazaa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewCD_AsaseACC)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSPOS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEditTime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditJobDescriptionId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #52
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(frmPackage));
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     this.grpMDPackageTop = new DevExpress.XtraEditors.GroupControl();
     this.label31 = new System.Windows.Forms.Label();
     this.ddlPackageCategory = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.Searchpanel = new System.Windows.Forms.Panel();
     this.btn_Search = new DevExpress.XtraEditors.SimpleButton();
     this.txtSearch = new DevExpress.XtraEditors.TextEdit();
     this.grpPackage = new DevExpress.XtraEditors.GroupControl();
     this.btn_PackageAdd = new DevExpress.XtraEditors.SimpleButton();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.btn_PackageDel = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_Package = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_Package = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPKG1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPkgPriceWGST = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_DurationUnit = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.gcFreePkg = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPKG7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.StartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnPKG8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EndDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnPKG9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Peak = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_StudentPackage = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_Category = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_GIRO = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Sell = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_Peak_1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.chk_StuPackage = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.chk_RestUpgrade = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.grpPackageGroup = new DevExpress.XtraEditors.GroupControl();
     this.btnPacGroup_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacGroup_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_PackageGroup = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_PackageGroup = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnPG1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPkgComboPriceWGST = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_pkGroupCatID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumnPG5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnPG6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grpCreditPackage = new DevExpress.XtraEditors.GroupControl();
     this.btnCreditPackage_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btnCreditPackage_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl5 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_CreditPackage = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_CreditPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumnCP1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcPriceWGST = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EffCCStartDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnCP5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.EffCCEndDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.gridColumnCP6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_CreditCategoryID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcFreeCredit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnCP9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.grpPackageClass = new DevExpress.XtraEditors.GroupControl();
     this.btn_PGC_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGCAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGCAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGC_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPackageClass2 = new DevExpress.XtraGrid.GridControl();
     this.gvPackageClass2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label2 = new System.Windows.Forms.Label();
     this.gridPackageClass = new DevExpress.XtraGrid.GridControl();
     this.gvPackageClass = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn_PGB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PGUB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPcGroupBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridPcGroupUseBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupUseBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.gridPcGroupBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridPcGroupUseBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPcGroupUseBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label119 = new System.Windows.Forms.Label();
     this.label120 = new System.Windows.Forms.Label();
     this.grpPackageService = new DevExpress.XtraEditors.GroupControl();
     this.btn_PSAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PS_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PSAdd_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PS_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPackageService2 = new DevExpress.XtraGrid.GridControl();
     this.gvPackageService2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label1 = new System.Windows.Forms.Label();
     this.gridPackageService = new DevExpress.XtraGrid.GridControl();
     this.gvPackageService = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.btn_PB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUB_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUBAll_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUBAll_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PUB_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPackageBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gridPackageUseBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPSBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvPSUseBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchCode2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchName2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label3 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.gridPackageBranch = new DevExpress.XtraGrid.GridControl();
     this.gridPackageUseBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPSBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gvPSUseBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colBranchName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colUseBranchName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.PackageGroup = new DevExpress.XtraEditors.GroupControl();
     this.btn_PacGroup_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_PacGroup_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.gridControlMd_GroupEntries = new DevExpress.XtraGrid.GridControl();
     this.gridViewMd_GroupEntries = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_GrpPackageCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.splitter2 = new System.Windows.Forms.Splitter();
     this.GroupCreditPackage = new DevExpress.XtraEditors.GroupControl();
     this.btn_CreGroup_Add = new DevExpress.XtraEditors.SimpleButton();
     this.btn_CreGroup_Del = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.GridCreditRestric = new DevExpress.XtraGrid.GridControl();
     this.gridViewmd_CreditRestric = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lk_PackageCode = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.chk_AllowDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.grpBranch = new DevExpress.XtraEditors.GroupControl();
     this.btnPacBranch_Del = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_DelAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_AddAll = new DevExpress.XtraEditors.SimpleButton();
     this.btnPacBranch_Add = new DevExpress.XtraEditors.SimpleButton();
     this.gridPacBranch2 = new DevExpress.XtraGrid.GridControl();
     this.gvPacBranch2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.label6 = new System.Windows.Forms.Label();
     this.gridPacBranch = new DevExpress.XtraGrid.GridControl();
     this.gvPacBranch = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageTop)).BeginInit();
     this.grpMDPackageTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ddlPackageCategory.Properties)).BeginInit();
     this.Searchpanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackage)).BeginInit();
     this.grpPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Package)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Package)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_DurationUnit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StudentPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Category)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_GIRO)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Sell)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak_1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StuPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_RestUpgrade)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageGroup)).BeginInit();
     this.grpPackageGroup.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit();
     this.groupControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PackageGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_PackageGroup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_pkGroupCatID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCreditPackage)).BeginInit();
     this.grpCreditPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit();
     this.groupControl5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CreditPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CreditPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CreditCategoryID)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageClass)).BeginInit();
     this.grpPackageClass.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageService)).BeginInit();
     this.grpPackageService.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PackageGroup)).BeginInit();
     this.PackageGroup.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_GroupEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_GroupEntries)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GrpPackageCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupCreditPackage)).BeginInit();
     this.GroupCreditPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GridCreditRestric)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewmd_CreditRestric)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PackageCode)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_AllowDiscount)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpBranch)).BeginInit();
     this.grpBranch.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch)).BeginInit();
     this.SuspendLayout();
     //
     // grpMDPackageTop
     //
     this.grpMDPackageTop.Appearance.BackColor = System.Drawing.SystemColors.Control;
     this.grpMDPackageTop.Appearance.Options.UseBackColor = true;
     this.grpMDPackageTop.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grpMDPackageTop.AppearanceCaption.Options.UseFont = true;
     this.grpMDPackageTop.Controls.Add(this.label31);
     this.grpMDPackageTop.Controls.Add(this.ddlPackageCategory);
     this.grpMDPackageTop.Controls.Add(this.Searchpanel);
     this.grpMDPackageTop.Controls.Add(this.grpPackage);
     this.grpMDPackageTop.Controls.Add(this.grpPackageGroup);
     this.grpMDPackageTop.Controls.Add(this.grpCreditPackage);
     this.grpMDPackageTop.ImeMode = System.Windows.Forms.ImeMode.On;
     this.grpMDPackageTop.Location = new System.Drawing.Point(8, 2);
     this.grpMDPackageTop.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpMDPackageTop.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpMDPackageTop.Name = "grpMDPackageTop";
     this.grpMDPackageTop.Size = new System.Drawing.Size(968, 280);
     this.grpMDPackageTop.TabIndex = 93;
     this.grpMDPackageTop.Text = "MASTER FILE";
     //
     // label31
     //
     this.label31.BackColor = System.Drawing.Color.Transparent;
     this.label31.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(8, 24);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(136, 16);
     this.label31.TabIndex = 116;
     this.label31.Text = "Package Category";
     this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ddlPackageCategory
     //
     this.ddlPackageCategory.EditValue = "mdPKG_cbNCategoryID";
     this.ddlPackageCategory.Location = new System.Drawing.Point(144, 24);
     this.ddlPackageCategory.Name = "ddlPackageCategory";
     this.ddlPackageCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ddlPackageCategory.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.ddlPackageCategory.Size = new System.Drawing.Size(176, 20);
     this.ddlPackageCategory.TabIndex = 19;
     this.ddlPackageCategory.SelectedIndexChanged += new System.EventHandler(this.ddlPackageCategory_SelectedIndexChanged);
     //
     // Searchpanel
     //
     this.Searchpanel.Controls.Add(this.btn_Search);
     this.Searchpanel.Controls.Add(this.txtSearch);
     this.Searchpanel.Location = new System.Drawing.Point(488, 24);
     this.Searchpanel.Name = "Searchpanel";
     this.Searchpanel.Size = new System.Drawing.Size(464, 24);
     this.Searchpanel.TabIndex = 151;
     //
     // 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(392, 0);
     this.btn_Search.Name = "btn_Search";
     this.btn_Search.Size = new System.Drawing.Size(56, 20);
     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.ImeMode = System.Windows.Forms.ImeMode.On;
     this.txtSearch.Location = new System.Drawing.Point(232, 0);
     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(152, 20);
     this.txtSearch.TabIndex = 136;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // grpPackage
     //
     this.grpPackage.Controls.Add(this.btn_PackageAdd);
     this.grpPackage.Controls.Add(this.btn_PackageDel);
     this.grpPackage.Controls.Add(this.groupControl1);
     this.grpPackage.Location = new System.Drawing.Point(0, 48);
     this.grpPackage.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackage.Name = "grpPackage";
     this.grpPackage.Size = new System.Drawing.Size(960, 232);
     this.grpPackage.TabIndex = 118;
     this.grpPackage.Text = "Package";
     //
     // btn_PackageAdd
     //
     this.btn_PackageAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PackageAdd.Appearance.Options.UseFont = true;
     this.btn_PackageAdd.Appearance.Options.UseTextOptions = true;
     this.btn_PackageAdd.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PackageAdd.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PackageAdd.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PackageAdd.ImageIndex = 0;
     this.btn_PackageAdd.ImageList = this.imageList1;
     this.btn_PackageAdd.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_PackageAdd.Location = new System.Drawing.Point(8, 24);
     this.btn_PackageAdd.Name = "btn_PackageAdd";
     this.btn_PackageAdd.Size = new System.Drawing.Size(38, 16);
     this.btn_PackageAdd.TabIndex = 132;
     this.btn_PackageAdd.Click += new System.EventHandler(this.btn_PackageAdd_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_PackageDel
     //
     this.btn_PackageDel.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PackageDel.Appearance.Options.UseFont = true;
     this.btn_PackageDel.Appearance.Options.UseTextOptions = true;
     this.btn_PackageDel.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PackageDel.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PackageDel.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PackageDel.ImageIndex = 1;
     this.btn_PackageDel.ImageList = this.imageList1;
     this.btn_PackageDel.Location = new System.Drawing.Point(48, 24);
     this.btn_PackageDel.Name = "btn_PackageDel";
     this.btn_PackageDel.Size = new System.Drawing.Size(38, 16);
     this.btn_PackageDel.TabIndex = 131;
     this.btn_PackageDel.Click += new System.EventHandler(this.btn_PackageDel_Click);
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.gridControlMd_Package);
     this.groupControl1.Location = new System.Drawing.Point(0, 40);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(952, 192);
     this.groupControl1.TabIndex = 121;
     //
     // gridControlMd_Package
     //
     this.gridControlMd_Package.Dock = System.Windows.Forms.DockStyle.Fill;
     gridLevelNode1.RelationName = "Level1";
     this.gridControlMd_Package.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.gridControlMd_Package.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_Package.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_Package.MainView = this.gridViewMd_Package;
     this.gridControlMd_Package.Name = "gridControlMd_Package";
     this.gridControlMd_Package.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.chk_Peak_1,
     this.chk_StuPackage,
     this.lk_Category,
     this.chk_GIRO,
     this.repositoryItemCheckEdit1,
     this.chk_Peak,
     this.chk_StudentPackage,
     this.chk_RestUpgrade,
     this.StartDate,
     this.EndDate,
     this.chk_Sell,
     this.chk_DurationUnit});
     this.gridControlMd_Package.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_Package.TabIndex = 2;
     this.gridControlMd_Package.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_Package});
     //
     // gridViewMd_Package
     //
     this.gridViewMd_Package.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPKG1,
     this.gridColumnPKG2,
     this.gridColumnPKG3,
     this.gcPkgPriceWGST,
     this.gridColumnPKG4,
     this.gridColumnPKG5,
     this.gridColumn30,
     this.gcFreePkg,
     this.gridColumnPKG6,
     this.gridColumnPKG7,
     this.gridColumnPKG8,
     this.gridColumnPKG9,
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn28,
     this.gridColumn31});
     this.gridViewMd_Package.GridControl = this.gridControlMd_Package;
     this.gridViewMd_Package.Name = "gridViewMd_Package";
     this.gridViewMd_Package.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_Package.OptionsCustomization.AllowSort = false;
     this.gridViewMd_Package.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_Package.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_Package.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_Package_FocusedRowChanged);
     this.gridViewMd_Package.LostFocus += new System.EventHandler(this.gridViewMd_Package_LostFocus);
     //
     // gridColumnPKG1
     //
     this.gridColumnPKG1.Caption = "Package Code";
     this.gridColumnPKG1.FieldName = "strPackageCode";
     this.gridColumnPKG1.Name = "gridColumnPKG1";
     this.gridColumnPKG1.Visible = true;
     this.gridColumnPKG1.VisibleIndex = 0;
     this.gridColumnPKG1.Width = 84;
     //
     // gridColumnPKG2
     //
     this.gridColumnPKG2.Caption = "Description";
     this.gridColumnPKG2.FieldName = "strDescription";
     this.gridColumnPKG2.Name = "gridColumnPKG2";
     this.gridColumnPKG2.Visible = true;
     this.gridColumnPKG2.VisibleIndex = 1;
     this.gridColumnPKG2.Width = 147;
     //
     // gridColumnPKG3
     //
     this.gridColumnPKG3.Caption = "Price";
     this.gridColumnPKG3.DisplayFormat.FormatString = "d2";
     this.gridColumnPKG3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPKG3.FieldName = "mListPrice";
     this.gridColumnPKG3.Name = "gridColumnPKG3";
     this.gridColumnPKG3.Visible = true;
     this.gridColumnPKG3.VisibleIndex = 3;
     this.gridColumnPKG3.Width = 61;
     //
     // gcPkgPriceWGST
     //
     this.gcPkgPriceWGST.Caption = "Price w GST";
     this.gcPkgPriceWGST.DisplayFormat.FormatString = "d2";
     this.gcPkgPriceWGST.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcPkgPriceWGST.FieldName = "mListPriceWGST";
     this.gcPkgPriceWGST.Name = "gcPkgPriceWGST";
     this.gcPkgPriceWGST.Visible = true;
     this.gcPkgPriceWGST.VisibleIndex = 4;
     this.gcPkgPriceWGST.Width = 61;
     //
     // gridColumnPKG4
     //
     this.gridColumnPKG4.Caption = "Max Session";
     this.gridColumnPKG4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPKG4.FieldName = "nMaxSession";
     this.gridColumnPKG4.Name = "gridColumnPKG4";
     this.gridColumnPKG4.Visible = true;
     this.gridColumnPKG4.VisibleIndex = 5;
     this.gridColumnPKG4.Width = 71;
     //
     // gridColumnPKG5
     //
     this.gridColumnPKG5.Caption = "Duration";
     this.gridColumnPKG5.FieldName = "nPackageDuration";
     this.gridColumnPKG5.Name = "gridColumnPKG5";
     this.gridColumnPKG5.Visible = true;
     this.gridColumnPKG5.VisibleIndex = 6;
     this.gridColumnPKG5.Width = 53;
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "Duration Unit";
     this.gridColumn30.ColumnEdit = this.chk_DurationUnit;
     this.gridColumn30.FieldName = "strDurationUnit";
     this.gridColumn30.Name = "gridColumn30";
     this.gridColumn30.Visible = true;
     this.gridColumn30.VisibleIndex = 7;
     //
     // chk_DurationUnit
     //
     this.chk_DurationUnit.AutoHeight = false;
     this.chk_DurationUnit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_DurationUnit.Items.AddRange(new object[] {
     "MONTH",
     "WEEK",
     "DAY"});
     this.chk_DurationUnit.Name = "chk_DurationUnit";
     //
     // gcFreePkg
     //
     this.gcFreePkg.Caption = "Free Package";
     this.gcFreePkg.FieldName = "strFreePkgCode";
     this.gcFreePkg.Name = "gcFreePkg";
     this.gcFreePkg.Visible = true;
     this.gcFreePkg.VisibleIndex = 8;
     //
     // gridColumnPKG6
     //
     this.gridColumnPKG6.Caption = "Price per session ";
     this.gridColumnPKG6.DisplayFormat.FormatString = "d2";
     this.gridColumnPKG6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPKG6.FieldName = "mBaseUnitPrice";
     this.gridColumnPKG6.Name = "gridColumnPKG6";
     this.gridColumnPKG6.Visible = true;
     this.gridColumnPKG6.VisibleIndex = 9;
     this.gridColumnPKG6.Width = 95;
     //
     // gridColumnPKG7
     //
     this.gridColumnPKG7.Caption = "Eff. Start Date";
     this.gridColumnPKG7.ColumnEdit = this.StartDate;
     this.gridColumnPKG7.FieldName = "dtValidStart";
     this.gridColumnPKG7.Name = "gridColumnPKG7";
     this.gridColumnPKG7.Visible = true;
     this.gridColumnPKG7.VisibleIndex = 10;
     this.gridColumnPKG7.Width = 89;
     //
     // StartDate
     //
     this.StartDate.AutoHeight = false;
     this.StartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.StartDate.Name = "StartDate";
     this.StartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnPKG8
     //
     this.gridColumnPKG8.Caption = "Eff. End Date";
     this.gridColumnPKG8.ColumnEdit = this.EndDate;
     this.gridColumnPKG8.FieldName = "dtValidEnd";
     this.gridColumnPKG8.Name = "gridColumnPKG8";
     this.gridColumnPKG8.Visible = true;
     this.gridColumnPKG8.VisibleIndex = 11;
     //
     // EndDate
     //
     this.EndDate.AutoHeight = false;
     this.EndDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EndDate.Name = "EndDate";
     this.EndDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnPKG9
     //
     this.gridColumnPKG9.Caption = "Status";
     this.gridColumnPKG9.FieldName = "nStatus";
     this.gridColumnPKG9.Name = "gridColumnPKG9";
     this.gridColumnPKG9.Visible = true;
     this.gridColumnPKG9.VisibleIndex = 20;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Receipt Desc";
     this.gridColumn1.FieldName = "strReceiptDesc";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 2;
     this.gridColumn1.Width = 119;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Peak";
     this.gridColumn2.ColumnEdit = this.chk_Peak;
     this.gridColumn2.FieldName = "fPeak";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 12;
     this.gridColumn2.Width = 39;
     //
     // chk_Peak
     //
     this.chk_Peak.AutoHeight = false;
     this.chk_Peak.Name = "chk_Peak";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Student Package";
     this.gridColumn3.ColumnEdit = this.chk_StudentPackage;
     this.gridColumn3.FieldName = "fStudentPackage";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 13;
     this.gridColumn3.Width = 97;
     //
     // chk_StudentPackage
     //
     this.chk_StudentPackage.AutoHeight = false;
     this.chk_StudentPackage.Name = "chk_StudentPackage";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Category";
     this.gridColumn4.ColumnEdit = this.lk_Category;
     this.gridColumn4.FieldName = "nCategoryID";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 14;
     //
     // lk_Category
     //
     this.lk_Category.AutoHeight = false;
     this.lk_Category.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_Category.Name = "lk_Category";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Valid Months";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "nValidMonths";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 15;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Warranty Months";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "nWarrantyMonths";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 16;
     this.gridColumn6.Width = 97;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "GIRO";
     this.gridColumn7.ColumnEdit = this.chk_GIRO;
     this.gridColumn7.FieldName = "fGIRO";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 17;
     this.gridColumn7.Width = 49;
     //
     // chk_GIRO
     //
     this.chk_GIRO.AutoHeight = false;
     this.chk_GIRO.Name = "chk_GIRO";
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Upgrade Group";
     this.gridColumn8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn8.FieldName = "fNoRestrictionUpgrade";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 18;
     this.gridColumn8.Width = 108;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "POS";
     this.gridColumn28.ColumnEdit = this.chk_Sell;
     this.gridColumn28.FieldName = "fSell";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 19;
     //
     // chk_Sell
     //
     this.chk_Sell.AutoHeight = false;
     this.chk_Sell.Name = "chk_Sell";
     //
     // gridColumn31
     //
     this.gridColumn31.Caption = "Is Entries?";
     this.gridColumn31.FieldName = "fEntries";
     this.gridColumn31.Name = "gridColumn31";
     this.gridColumn31.Visible = true;
     this.gridColumn31.VisibleIndex = 21;
     //
     // chk_Peak_1
     //
     this.chk_Peak_1.AutoHeight = false;
     this.chk_Peak_1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_Peak_1.Name = "chk_Peak_1";
     //
     // chk_StuPackage
     //
     this.chk_StuPackage.AutoHeight = false;
     this.chk_StuPackage.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.chk_StuPackage.Name = "chk_StuPackage";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // chk_RestUpgrade
     //
     this.chk_RestUpgrade.AutoHeight = false;
     this.chk_RestUpgrade.Name = "chk_RestUpgrade";
     //
     // grpPackageGroup
     //
     this.grpPackageGroup.Controls.Add(this.btnPacGroup_Add);
     this.grpPackageGroup.Controls.Add(this.btnPacGroup_Del);
     this.grpPackageGroup.Controls.Add(this.groupControl4);
     this.grpPackageGroup.Location = new System.Drawing.Point(0, 48);
     this.grpPackageGroup.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackageGroup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackageGroup.Name = "grpPackageGroup";
     this.grpPackageGroup.Size = new System.Drawing.Size(960, 232);
     this.grpPackageGroup.TabIndex = 119;
     this.grpPackageGroup.Text = "Package Group";
     //
     // btnPacGroup_Add
     //
     this.btnPacGroup_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPacGroup_Add.Appearance.Options.UseFont = true;
     this.btnPacGroup_Add.Appearance.Options.UseTextOptions = true;
     this.btnPacGroup_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnPacGroup_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnPacGroup_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnPacGroup_Add.ImageIndex = 0;
     this.btnPacGroup_Add.ImageList = this.imageList1;
     this.btnPacGroup_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnPacGroup_Add.Location = new System.Drawing.Point(8, 24);
     this.btnPacGroup_Add.Name = "btnPacGroup_Add";
     this.btnPacGroup_Add.Size = new System.Drawing.Size(38, 16);
     this.btnPacGroup_Add.TabIndex = 134;
     this.btnPacGroup_Add.Click += new System.EventHandler(this.btnPacGroup_Add_Click);
     //
     // btnPacGroup_Del
     //
     this.btnPacGroup_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPacGroup_Del.Appearance.Options.UseFont = true;
     this.btnPacGroup_Del.Appearance.Options.UseTextOptions = true;
     this.btnPacGroup_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnPacGroup_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnPacGroup_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnPacGroup_Del.ImageIndex = 1;
     this.btnPacGroup_Del.ImageList = this.imageList1;
     this.btnPacGroup_Del.Location = new System.Drawing.Point(48, 24);
     this.btnPacGroup_Del.Name = "btnPacGroup_Del";
     this.btnPacGroup_Del.Size = new System.Drawing.Size(38, 16);
     this.btnPacGroup_Del.TabIndex = 133;
     this.btnPacGroup_Del.Click += new System.EventHandler(this.btnPacGroup_Del_Click);
     //
     // groupControl4
     //
     this.groupControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl4.Controls.Add(this.gridControlMd_PackageGroup);
     this.groupControl4.Location = new System.Drawing.Point(0, 40);
     this.groupControl4.Name = "groupControl4";
     this.groupControl4.Size = new System.Drawing.Size(944, 184);
     this.groupControl4.TabIndex = 2;
     //
     // gridControlMd_PackageGroup
     //
     this.gridControlMd_PackageGroup.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_PackageGroup.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_PackageGroup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_PackageGroup.MainView = this.gridViewMd_PackageGroup;
     this.gridControlMd_PackageGroup.Name = "gridControlMd_PackageGroup";
     this.gridControlMd_PackageGroup.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_pkGroupCatID});
     this.gridControlMd_PackageGroup.Size = new System.Drawing.Size(944, 184);
     this.gridControlMd_PackageGroup.TabIndex = 2;
     this.gridControlMd_PackageGroup.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_PackageGroup});
     //
     // gridViewMd_PackageGroup
     //
     this.gridViewMd_PackageGroup.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnPG1,
     this.gridColumnPG2,
     this.gridColumnPG3,
     this.gcPkgComboPriceWGST,
     this.gridColumnPG4,
     this.gridColumnPG5,
     this.gridColumnPG6});
     this.gridViewMd_PackageGroup.GridControl = this.gridControlMd_PackageGroup;
     this.gridViewMd_PackageGroup.Name = "gridViewMd_PackageGroup";
     this.gridViewMd_PackageGroup.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_PackageGroup.OptionsCustomization.AllowSort = false;
     this.gridViewMd_PackageGroup.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_PackageGroup.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_PackageGroup_FocusedRowChanged);
     this.gridViewMd_PackageGroup.LostFocus += new System.EventHandler(this.gridViewMd_PackageGroup_LostFocus);
     //
     // gridColumnPG1
     //
     this.gridColumnPG1.Caption = "Package Group Code";
     this.gridColumnPG1.FieldName = "strPackageGroupCode";
     this.gridColumnPG1.Name = "gridColumnPG1";
     this.gridColumnPG1.Visible = true;
     this.gridColumnPG1.VisibleIndex = 0;
     //
     // gridColumnPG2
     //
     this.gridColumnPG2.Caption = "Description";
     this.gridColumnPG2.FieldName = "strDescription";
     this.gridColumnPG2.Name = "gridColumnPG2";
     this.gridColumnPG2.Visible = true;
     this.gridColumnPG2.VisibleIndex = 1;
     //
     // gridColumnPG3
     //
     this.gridColumnPG3.Caption = "Price";
     this.gridColumnPG3.DisplayFormat.FormatString = "d2";
     this.gridColumnPG3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnPG3.FieldName = "mListPrice";
     this.gridColumnPG3.Name = "gridColumnPG3";
     this.gridColumnPG3.Visible = true;
     this.gridColumnPG3.VisibleIndex = 2;
     //
     // gcPkgComboPriceWGST
     //
     this.gcPkgComboPriceWGST.Caption = "Price w GST";
     this.gcPkgComboPriceWGST.DisplayFormat.FormatString = "d2";
     this.gcPkgComboPriceWGST.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcPkgComboPriceWGST.FieldName = "mListPriceWGST";
     this.gcPkgComboPriceWGST.Name = "gcPkgComboPriceWGST";
     this.gcPkgComboPriceWGST.Visible = true;
     this.gcPkgComboPriceWGST.VisibleIndex = 3;
     //
     // gridColumnPG4
     //
     this.gridColumnPG4.Caption = "Package Category";
     this.gridColumnPG4.ColumnEdit = this.lk_pkGroupCatID;
     this.gridColumnPG4.FieldName = "nCategoryID";
     this.gridColumnPG4.Name = "gridColumnPG4";
     this.gridColumnPG4.Visible = true;
     this.gridColumnPG4.VisibleIndex = 4;
     //
     // lk_pkGroupCatID
     //
     this.lk_pkGroupCatID.AutoHeight = false;
     this.lk_pkGroupCatID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_pkGroupCatID.Name = "lk_pkGroupCatID";
     //
     // gridColumnPG5
     //
     this.gridColumnPG5.Caption = "Eff.Start Date";
     this.gridColumnPG5.FieldName = "dtValidStart";
     this.gridColumnPG5.Name = "gridColumnPG5";
     this.gridColumnPG5.Visible = true;
     this.gridColumnPG5.VisibleIndex = 5;
     //
     // gridColumnPG6
     //
     this.gridColumnPG6.Caption = "Eff.End Date";
     this.gridColumnPG6.FieldName = "dtValidEnd";
     this.gridColumnPG6.Name = "gridColumnPG6";
     this.gridColumnPG6.Visible = true;
     this.gridColumnPG6.VisibleIndex = 6;
     //
     // grpCreditPackage
     //
     this.grpCreditPackage.Controls.Add(this.btnCreditPackage_Add);
     this.grpCreditPackage.Controls.Add(this.btnCreditPackage_Del);
     this.grpCreditPackage.Controls.Add(this.groupControl5);
     this.grpCreditPackage.Location = new System.Drawing.Point(0, 48);
     this.grpCreditPackage.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpCreditPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpCreditPackage.Name = "grpCreditPackage";
     this.grpCreditPackage.Size = new System.Drawing.Size(960, 232);
     this.grpCreditPackage.TabIndex = 121;
     this.grpCreditPackage.Text = "Credit Package";
     //
     // btnCreditPackage_Add
     //
     this.btnCreditPackage_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCreditPackage_Add.Appearance.Options.UseFont = true;
     this.btnCreditPackage_Add.Appearance.Options.UseTextOptions = true;
     this.btnCreditPackage_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnCreditPackage_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnCreditPackage_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnCreditPackage_Add.ImageIndex = 0;
     this.btnCreditPackage_Add.ImageList = this.imageList1;
     this.btnCreditPackage_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btnCreditPackage_Add.Location = new System.Drawing.Point(8, 24);
     this.btnCreditPackage_Add.Name = "btnCreditPackage_Add";
     this.btnCreditPackage_Add.Size = new System.Drawing.Size(38, 16);
     this.btnCreditPackage_Add.TabIndex = 136;
     this.btnCreditPackage_Add.Click += new System.EventHandler(this.btnCreditPackage_Add_Click);
     //
     // btnCreditPackage_Del
     //
     this.btnCreditPackage_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCreditPackage_Del.Appearance.Options.UseFont = true;
     this.btnCreditPackage_Del.Appearance.Options.UseTextOptions = true;
     this.btnCreditPackage_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btnCreditPackage_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btnCreditPackage_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btnCreditPackage_Del.ImageIndex = 1;
     this.btnCreditPackage_Del.ImageList = this.imageList1;
     this.btnCreditPackage_Del.Location = new System.Drawing.Point(48, 24);
     this.btnCreditPackage_Del.Name = "btnCreditPackage_Del";
     this.btnCreditPackage_Del.Size = new System.Drawing.Size(38, 16);
     this.btnCreditPackage_Del.TabIndex = 135;
     this.btnCreditPackage_Del.Click += new System.EventHandler(this.btnCreditPackage_Del_Click);
     //
     // groupControl5
     //
     this.groupControl5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl5.Controls.Add(this.gridControlMd_CreditPackage);
     this.groupControl5.Location = new System.Drawing.Point(0, 40);
     this.groupControl5.Name = "groupControl5";
     this.groupControl5.Size = new System.Drawing.Size(952, 192);
     this.groupControl5.TabIndex = 2;
     this.groupControl5.Text = "groupControl5";
     //
     // gridControlMd_CreditPackage
     //
     this.gridControlMd_CreditPackage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_CreditPackage.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_CreditPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_CreditPackage.MainView = this.gridViewMd_CreditPackage;
     this.gridControlMd_CreditPackage.Name = "gridControlMd_CreditPackage";
     this.gridControlMd_CreditPackage.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_CreditCategoryID,
     this.EffCCStartDate,
     this.EffCCEndDate});
     this.gridControlMd_CreditPackage.Size = new System.Drawing.Size(952, 192);
     this.gridControlMd_CreditPackage.TabIndex = 2;
     this.gridControlMd_CreditPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_CreditPackage});
     //
     // gridViewMd_CreditPackage
     //
     this.gridViewMd_CreditPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumnCP1,
     this.gridColumnCP2,
     this.gridColumn24,
     this.gridColumnCP3,
     this.gcPriceWGST,
     this.gridColumnCP4,
     this.gridColumnCP5,
     this.gridColumnCP6,
     this.gridColumn29,
     this.gridColumnCP7,
     this.gridColumnCP8,
     this.gcFreeCredit,
     this.gridColumnCP9});
     this.gridViewMd_CreditPackage.GridControl = this.gridControlMd_CreditPackage;
     this.gridViewMd_CreditPackage.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMd_CreditPackage.Name = "gridViewMd_CreditPackage";
     this.gridViewMd_CreditPackage.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_CreditPackage.OptionsCustomization.AllowSort = false;
     this.gridViewMd_CreditPackage.OptionsView.ColumnAutoWidth = false;
     this.gridViewMd_CreditPackage.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_CreditPackage.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMd_CreditPackage_FocusedRowChanged);
     this.gridViewMd_CreditPackage.LostFocus += new System.EventHandler(this.gridViewMd_CreditPackage_LostFocus);
     //
     // gridColumnCP1
     //
     this.gridColumnCP1.Caption = "Credit Package Code";
     this.gridColumnCP1.FieldName = "strCreditPackageCode";
     this.gridColumnCP1.Name = "gridColumnCP1";
     this.gridColumnCP1.Visible = true;
     this.gridColumnCP1.VisibleIndex = 0;
     this.gridColumnCP1.Width = 111;
     //
     // gridColumnCP2
     //
     this.gridColumnCP2.Caption = "Description";
     this.gridColumnCP2.FieldName = "strDescription";
     this.gridColumnCP2.Name = "gridColumnCP2";
     this.gridColumnCP2.Visible = true;
     this.gridColumnCP2.VisibleIndex = 1;
     this.gridColumnCP2.Width = 200;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "Receipt Description";
     this.gridColumn24.FieldName = "strReceiptDesc";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 10;
     this.gridColumn24.Width = 262;
     //
     // gridColumnCP3
     //
     this.gridColumnCP3.Caption = "Price";
     this.gridColumnCP3.DisplayFormat.FormatString = "d2";
     this.gridColumnCP3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP3.FieldName = "mListPrice";
     this.gridColumnCP3.Name = "gridColumnCP3";
     this.gridColumnCP3.Visible = true;
     this.gridColumnCP3.VisibleIndex = 2;
     //
     // gcPriceWGST
     //
     this.gcPriceWGST.Caption = "Price w GST";
     this.gcPriceWGST.DisplayFormat.FormatString = "d2";
     this.gcPriceWGST.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcPriceWGST.FieldName = "mListPriceWGST";
     this.gcPriceWGST.Name = "gcPriceWGST";
     this.gcPriceWGST.Visible = true;
     this.gcPriceWGST.VisibleIndex = 3;
     //
     // gridColumnCP4
     //
     this.gridColumnCP4.Caption = "Eff.Start Date";
     this.gridColumnCP4.ColumnEdit = this.EffCCStartDate;
     this.gridColumnCP4.FieldName = "dtValidStart";
     this.gridColumnCP4.Name = "gridColumnCP4";
     this.gridColumnCP4.Visible = true;
     this.gridColumnCP4.VisibleIndex = 4;
     this.gridColumnCP4.Width = 98;
     //
     // EffCCStartDate
     //
     this.EffCCStartDate.AutoHeight = false;
     this.EffCCStartDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EffCCStartDate.Name = "EffCCStartDate";
     this.EffCCStartDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnCP5
     //
     this.gridColumnCP5.Caption = "Eff.End Date";
     this.gridColumnCP5.ColumnEdit = this.EffCCEndDate;
     this.gridColumnCP5.FieldName = "dtValidEnd";
     this.gridColumnCP5.Name = "gridColumnCP5";
     this.gridColumnCP5.Visible = true;
     this.gridColumnCP5.VisibleIndex = 5;
     this.gridColumnCP5.Width = 91;
     //
     // EffCCEndDate
     //
     this.EffCCEndDate.AutoHeight = false;
     this.EffCCEndDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.EffCCEndDate.Name = "EffCCEndDate";
     this.EffCCEndDate.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // gridColumnCP6
     //
     this.gridColumnCP6.Caption = "Category";
     this.gridColumnCP6.ColumnEdit = this.lk_CreditCategoryID;
     this.gridColumnCP6.FieldName = "nCategoryID";
     this.gridColumnCP6.Name = "gridColumnCP6";
     this.gridColumnCP6.OptionsColumn.AllowEdit = false;
     this.gridColumnCP6.Visible = true;
     this.gridColumnCP6.VisibleIndex = 6;
     this.gridColumnCP6.Width = 97;
     //
     // lk_CreditCategoryID
     //
     this.lk_CreditCategoryID.AutoHeight = false;
     this.lk_CreditCategoryID.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_CreditCategoryID.Name = "lk_CreditCategoryID";
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "Upgrade Group";
     this.gridColumn29.FieldName = "fNoRestrictionUpgrade";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 8;
     this.gridColumn29.Width = 65;
     //
     // gridColumnCP7
     //
     this.gridColumnCP7.Caption = "Valid Months";
     this.gridColumnCP7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP7.FieldName = "nValidMonths";
     this.gridColumnCP7.Name = "gridColumnCP7";
     this.gridColumnCP7.Visible = true;
     this.gridColumnCP7.VisibleIndex = 7;
     //
     // gridColumnCP8
     //
     this.gridColumnCP8.Caption = "Credit Amount";
     this.gridColumnCP8.DisplayFormat.FormatString = "d2";
     this.gridColumnCP8.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP8.FieldName = "mCreditAmount";
     this.gridColumnCP8.Name = "gridColumnCP8";
     this.gridColumnCP8.Visible = true;
     this.gridColumnCP8.VisibleIndex = 9;
     this.gridColumnCP8.Width = 80;
     //
     // gcFreeCredit
     //
     this.gcFreeCredit.Caption = "Free Credit";
     this.gcFreeCredit.DisplayFormat.FormatString = "d2";
     this.gcFreeCredit.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gcFreeCredit.FieldName = "mFreeCredit";
     this.gcFreeCredit.Name = "gcFreeCredit";
     this.gcFreeCredit.Visible = true;
     this.gcFreeCredit.VisibleIndex = 11;
     this.gcFreeCredit.Width = 80;
     //
     // gridColumnCP9
     //
     this.gridColumnCP9.Caption = "Credit discount";
     this.gridColumnCP9.DisplayFormat.FormatString = "d2";
     this.gridColumnCP9.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumnCP9.FieldName = "dCreditDiscount";
     this.gridColumnCP9.Name = "gridColumnCP9";
     this.gridColumnCP9.Visible = true;
     this.gridColumnCP9.VisibleIndex = 12;
     this.gridColumnCP9.Width = 80;
     //
     // grpPackageClass
     //
     this.grpPackageClass.Controls.Add(this.btn_PGC_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGCAll_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGCAll_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGC_Add);
     this.grpPackageClass.Controls.Add(this.gridPackageClass2);
     this.grpPackageClass.Controls.Add(this.label2);
     this.grpPackageClass.Controls.Add(this.gridPackageClass);
     this.grpPackageClass.Controls.Add(this.btn_PGB_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGBAll_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGBAll_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGB_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGUB_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGUBAll_Del);
     this.grpPackageClass.Controls.Add(this.btn_PGUBAll_Add);
     this.grpPackageClass.Controls.Add(this.btn_PGUB_Add);
     this.grpPackageClass.Controls.Add(this.gridPcGroupBranch2);
     this.grpPackageClass.Controls.Add(this.gridPcGroupUseBranch2);
     this.grpPackageClass.Controls.Add(this.label4);
     this.grpPackageClass.Controls.Add(this.label5);
     this.grpPackageClass.Controls.Add(this.gridPcGroupBranch);
     this.grpPackageClass.Controls.Add(this.gridPcGroupUseBranch);
     this.grpPackageClass.Controls.Add(this.label119);
     this.grpPackageClass.Controls.Add(this.label120);
     this.grpPackageClass.Location = new System.Drawing.Point(8, 288);
     this.grpPackageClass.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackageClass.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackageClass.Name = "grpPackageClass";
     this.grpPackageClass.Size = new System.Drawing.Size(968, 424);
     this.grpPackageClass.TabIndex = 94;
     this.grpPackageClass.Text = "EMPLOYEE PACKAGE SETUP .....";
     this.grpPackageClass.AlwaysScrollActiveControlIntoView = true;
     //
     // btn_PGC_Del
     //
     this.btn_PGC_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGC_Del.Location = new System.Drawing.Point(496, 232);
     this.btn_PGC_Del.Name = "btn_PGC_Del";
     this.btn_PGC_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGC_Del.TabIndex = 151;
     this.btn_PGC_Del.Text = "<";
     this.btn_PGC_Del.Click += new System.EventHandler(this.btn_PGC_Del_Click);
     //
     // btn_PGCAll_Del
     //
     this.btn_PGCAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGCAll_Del.Location = new System.Drawing.Point(496, 208);
     this.btn_PGCAll_Del.Name = "btn_PGCAll_Del";
     this.btn_PGCAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGCAll_Del.TabIndex = 150;
     this.btn_PGCAll_Del.Text = "<<";
     this.btn_PGCAll_Del.Click += new System.EventHandler(this.btn_PGCAll_Del_Click);
     //
     // btn_PGCAll_Add
     //
     this.btn_PGCAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGCAll_Add.Location = new System.Drawing.Point(496, 184);
     this.btn_PGCAll_Add.Name = "btn_PGCAll_Add";
     this.btn_PGCAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGCAll_Add.TabIndex = 149;
     this.btn_PGCAll_Add.Text = ">>";
     this.btn_PGCAll_Add.Click += new System.EventHandler(this.btn_PGCAll_Add_Click);
     //
     // btn_PGC_Add
     //
     this.btn_PGC_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGC_Add.Location = new System.Drawing.Point(496, 160);
     this.btn_PGC_Add.Name = "btn_PGC_Add";
     this.btn_PGC_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGC_Add.TabIndex = 148;
     this.btn_PGC_Add.Text = ">";
     this.btn_PGC_Add.Click += new System.EventHandler(this.btn_PGC_Add_Click);
     //
     // gridPackageClass2
     //
     this.gridPackageClass2.Location = new System.Drawing.Point(536, 160);
     this.gridPackageClass2.MainView = this.gvPackageClass2;
     this.gridPackageClass2.Name = "gridPackageClass2";
     this.gridPackageClass2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageClass2.TabIndex = 152;
     this.gridPackageClass2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageClass2});
     //
     // gvPackageClass2
     //
     this.gvPackageClass2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn21});
     this.gvPackageClass2.GridControl = this.gridPackageClass2;
     this.gvPackageClass2.Name = "gvPackageClass2";
     this.gvPackageClass2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageClass2.OptionsBehavior.Editable = false;
     this.gvPackageClass2.OptionsCustomization.AllowFilter = false;
     this.gvPackageClass2.OptionsSelection.MultiSelect = true;
     this.gvPackageClass2.OptionsView.ShowGroupPanel = false;
     this.gvPackageClass2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn13, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Class Code";
     this.gridColumn13.FieldName = "strClassCode";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 0;
     this.gridColumn13.Width = 104;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Description";
     this.gridColumn14.FieldName = "strDescription";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.Visible = true;
     this.gridColumn14.VisibleIndex = 1;
     this.gridColumn14.Width = 282;
     //
     // gridColumn21
     //
     this.gridColumn21.FieldName = "strPackageCode";
     this.gridColumn21.Name = "gridColumn21";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(8, 160);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(56, 34);
     this.label2.TabIndex = 153;
     this.label2.Text = "Package Class";
     //
     // gridPackageClass
     //
     this.gridPackageClass.Location = new System.Drawing.Point(64, 160);
     this.gridPackageClass.MainView = this.gvPackageClass;
     this.gridPackageClass.Name = "gridPackageClass";
     this.gridPackageClass.Size = new System.Drawing.Size(424, 128);
     this.gridPackageClass.TabIndex = 147;
     this.gridPackageClass.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageClass});
     //
     // gvPackageClass
     //
     this.gvPackageClass.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn15,
     this.gridColumn16});
     this.gvPackageClass.GridControl = this.gridPackageClass;
     this.gvPackageClass.Name = "gvPackageClass";
     this.gvPackageClass.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageClass.OptionsBehavior.Editable = false;
     this.gvPackageClass.OptionsCustomization.AllowFilter = false;
     this.gvPackageClass.OptionsSelection.MultiSelect = true;
     this.gvPackageClass.OptionsView.ShowGroupPanel = false;
     this.gvPackageClass.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn15, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "Class Code";
     this.gridColumn15.FieldName = "strClassCode";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 0;
     this.gridColumn15.Width = 107;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "Description";
     this.gridColumn16.FieldName = "strDescription";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 1;
     this.gridColumn16.Width = 279;
     //
     // btn_PGB_Del
     //
     this.btn_PGB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGB_Del.Location = new System.Drawing.Point(496, 96);
     this.btn_PGB_Del.Name = "btn_PGB_Del";
     this.btn_PGB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGB_Del.TabIndex = 144;
     this.btn_PGB_Del.Text = "<";
     this.btn_PGB_Del.Click += new System.EventHandler(this.btn_PGB_Del_Click);
     //
     // btn_PGBAll_Del
     //
     this.btn_PGBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGBAll_Del.Location = new System.Drawing.Point(496, 72);
     this.btn_PGBAll_Del.Name = "btn_PGBAll_Del";
     this.btn_PGBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGBAll_Del.TabIndex = 143;
     this.btn_PGBAll_Del.Text = "<<";
     this.btn_PGBAll_Del.Click += new System.EventHandler(this.btn_PGBAll_Del_Click);
     //
     // btn_PGBAll_Add
     //
     this.btn_PGBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGBAll_Add.Location = new System.Drawing.Point(496, 48);
     this.btn_PGBAll_Add.Name = "btn_PGBAll_Add";
     this.btn_PGBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGBAll_Add.TabIndex = 142;
     this.btn_PGBAll_Add.Text = ">>";
     this.btn_PGBAll_Add.Click += new System.EventHandler(this.btn_PGBAll_Add_Click);
     //
     // btn_PGB_Add
     //
     this.btn_PGB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGB_Add.Location = new System.Drawing.Point(496, 24);
     this.btn_PGB_Add.Name = "btn_PGB_Add";
     this.btn_PGB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGB_Add.TabIndex = 141;
     this.btn_PGB_Add.Text = ">";
     this.btn_PGB_Add.Click += new System.EventHandler(this.btn_PGB_Add_Click);
     //
     // btn_PGUB_Del
     //
     this.btn_PGUB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUB_Del.Location = new System.Drawing.Point(496, 362);
     this.btn_PGUB_Del.Name = "btn_PGUB_Del";
     this.btn_PGUB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUB_Del.TabIndex = 144;
     this.btn_PGUB_Del.Text = "<";
     this.btn_PGUB_Del.Click += new System.EventHandler(this.btn_PGUB_Del_Click);
     //
     // btn_PGUBAll_Del
     //
     this.btn_PGUBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUBAll_Del.Location = new System.Drawing.Point(496, 338);
     this.btn_PGUBAll_Del.Name = "btn_PGUBAll_Del";
     this.btn_PGUBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUBAll_Del.TabIndex = 143;
     this.btn_PGUBAll_Del.Text = "<<";
     this.btn_PGUBAll_Del.Click += new System.EventHandler(this.btn_PGUBAll_Del_Click);
     //
     // btn_PGBAll_Add
     //
     this.btn_PGUBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUBAll_Add.Location = new System.Drawing.Point(496, 314);
     this.btn_PGUBAll_Add.Name = "btn_PGUBAll_Add";
     this.btn_PGUBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUBAll_Add.TabIndex = 142;
     this.btn_PGUBAll_Add.Text = ">>";
     this.btn_PGUBAll_Add.Click += new System.EventHandler(this.btn_PGUBAll_Add_Click);
     //
     // btn_PUGB_Add
     //
     this.btn_PGUB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PGUB_Add.Location = new System.Drawing.Point(496, 290);
     this.btn_PGUB_Add.Name = "btn_PGUB_Add";
     this.btn_PGUB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PGUB_Add.TabIndex = 141;
     this.btn_PGUB_Add.Text = ">";
     this.btn_PGUB_Add.Click += new System.EventHandler(this.btn_PGUB_Add_Click);
     //
     // gridPcGroupBranch2
     //
     this.gridPcGroupBranch2.Location = new System.Drawing.Point(536, 24);
     this.gridPcGroupBranch2.MainView = this.gvPcGroupBranch2;
     this.gridPcGroupBranch2.Name = "gridPcGroupBranch2";
     this.gridPcGroupBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupBranch2.TabIndex = 145;
     this.gridPcGroupBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupBranch2});
     //
     // gvPcGroupBranch2
     //
     this.gvPcGroupBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn22});
     this.gvPcGroupBranch2.GridControl = this.gridPcGroupBranch2;
     this.gvPcGroupBranch2.Name = "gvPcGroupBranch2";
     this.gvPcGroupBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupBranch2.OptionsBehavior.Editable = false;
     this.gvPcGroupBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupBranch2.OptionsSelection.MultiSelect = true;
     this.gvPcGroupBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn17, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "Branch";
     this.gridColumn17.FieldName = "strBranchCode";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 0;
     this.gridColumn17.Width = 104;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "Branch Name";
     this.gridColumn18.FieldName = "strBranchName";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 1;
     this.gridColumn18.Width = 282;
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "strPackageCode";
     this.gridColumn22.FieldName = "strPackageCode";
     this.gridColumn22.Name = "gridColumn22";
     //
     // gridColumn50
     //
     this.gridColumn50.Caption = "Branch";
     this.gridColumn50.FieldName = "strBranchCode";
     this.gridColumn50.Name = "gridColumn50";
     this.gridColumn50.Visible = true;
     this.gridColumn50.VisibleIndex = 0;
     this.gridColumn50.Width = 104;
     //
     // gridColumn51
     //
     this.gridColumn51.Caption = "Branch Name";
     this.gridColumn51.FieldName = "strBranchName";
     this.gridColumn51.Name = "gridColumn51";
     this.gridColumn51.Visible = true;
     this.gridColumn51.VisibleIndex = 1;
     this.gridColumn51.Width = 282;
     //
     // gridColumn52
     //
     this.gridColumn52.Caption = "strPackageCode";
     this.gridColumn52.FieldName = "strPackageCode";
     this.gridColumn52.Name = "gridColumn52";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(8, 24);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(56, 54);
     this.label4.TabIndex = 146;
     this.label4.Text = "Package Sell Branch";
     //
     // gridPcGroupBranch
     //
     this.gridPcGroupBranch.Location = new System.Drawing.Point(64, 24);
     this.gridPcGroupBranch.MainView = this.gvPcGroupBranch;
     this.gridPcGroupBranch.Name = "gridPcGroupBranch";
     this.gridPcGroupBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupBranch.TabIndex = 140;
     this.gridPcGroupBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupBranch});
     //
     // gvPcGroupBranch
     //
     this.gvPcGroupBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn19,
     this.gridColumn20});
     this.gvPcGroupBranch.GridControl = this.gridPcGroupBranch;
     this.gvPcGroupBranch.Name = "gvPcGroupBranch";
     this.gvPcGroupBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupBranch.OptionsBehavior.Editable = false;
     this.gvPcGroupBranch.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupBranch.OptionsSelection.MultiSelect = true;
     this.gvPcGroupBranch.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn19, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "Branch";
     this.gridColumn19.FieldName = "strBranchCode";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 0;
     this.gridColumn19.Width = 107;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "Branch Name";
     this.gridColumn20.FieldName = "strBranchName";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 1;
     this.gridColumn20.Width = 279;
     //
     // gridColumn53
     //
     this.gridColumn53.Caption = "Branch";
     this.gridColumn53.FieldName = "strBranchCode";
     this.gridColumn53.Name = "gridColumn53";
     this.gridColumn53.Visible = true;
     this.gridColumn53.VisibleIndex = 0;
     this.gridColumn53.Width = 107;
     //
     // gridColumn54
     //
     this.gridColumn54.Caption = "Branch Name";
     this.gridColumn54.FieldName = "strBranchName";
     this.gridColumn54.Name = "gridColumn54";
     this.gridColumn54.Visible = true;
     this.gridColumn54.VisibleIndex = 1;
     this.gridColumn54.Width = 279;
     //
     // label119
     //
     this.label119.BackColor = System.Drawing.Color.Transparent;
     this.label119.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label119.Location = new System.Drawing.Point(560, 24);
     this.label119.Name = "label119";
     this.label119.Size = new System.Drawing.Size(56, 16);
     this.label119.TabIndex = 139;
     this.label119.Text = "Services";
     this.label119.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label120
     //
     this.label120.BackColor = System.Drawing.Color.Transparent;
     this.label120.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label120.Location = new System.Drawing.Point(288, 24);
     this.label120.Name = "label120";
     this.label120.Size = new System.Drawing.Size(56, 16);
     this.label120.TabIndex = 138;
     this.label120.Text = "Class";
     this.label120.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // gridPcGroupUseBranch2
     //
     this.gridPcGroupUseBranch2.Location = new System.Drawing.Point(536, 290);
     this.gridPcGroupUseBranch2.MainView = this.gvPcGroupUseBranch2;
     this.gridPcGroupUseBranch2.Name = "gridPcGroupBranch2";
     this.gridPcGroupUseBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupUseBranch2.TabIndex = 145;
     this.gridPcGroupUseBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupUseBranch2});
     //
     // gvPcGroupUseBranch2
     //
     this.gvPcGroupUseBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn50,
     this.gridColumn51,
     this.gridColumn52});
     this.gvPcGroupUseBranch2.GridControl = this.gridPcGroupUseBranch2;
     this.gvPcGroupUseBranch2.Name = "gvPcGroupUseBranch2";
     this.gvPcGroupUseBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupUseBranch2.OptionsBehavior.Editable = false;
     this.gvPcGroupUseBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupUseBranch2.OptionsSelection.MultiSelect = true;
     this.gvPcGroupUseBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupUseBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn17, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(8, 290);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(56, 54);
     this.label5.TabIndex = 146;
     this.label5.Text = "Package Use Branch";
     //
     // gridPcGroupUseBranch
     //
     this.gridPcGroupUseBranch.Location = new System.Drawing.Point(64, 290);
     this.gridPcGroupUseBranch.MainView = this.gvPcGroupUseBranch;
     this.gridPcGroupUseBranch.Name = "gridPcGroupBranch";
     this.gridPcGroupUseBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPcGroupUseBranch.TabIndex = 140;
     this.gridPcGroupUseBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPcGroupUseBranch});
     //
     // gvPcGroupUseBranch
     //
     this.gvPcGroupUseBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn53,
     this.gridColumn54});
     this.gvPcGroupUseBranch.GridControl = this.gridPcGroupUseBranch;
     this.gvPcGroupUseBranch.Name = "gvPcGroupBranch";
     this.gvPcGroupUseBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPcGroupUseBranch.OptionsBehavior.Editable = false;
     this.gvPcGroupUseBranch.OptionsCustomization.AllowFilter = false;
     this.gvPcGroupUseBranch.OptionsSelection.MultiSelect = true;
     this.gvPcGroupUseBranch.OptionsView.ShowGroupPanel = false;
     this.gvPcGroupUseBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn19, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // grpPackageService
     //
     this.grpPackageService.Controls.Add(this.btn_PSAll_Del);
     this.grpPackageService.Controls.Add(this.btn_PS_Del);
     this.grpPackageService.Controls.Add(this.btn_PSAdd_Add);
     this.grpPackageService.Controls.Add(this.btn_PS_Add);
     this.grpPackageService.Controls.Add(this.gridPackageService2);
     this.grpPackageService.Controls.Add(this.label1);
     this.grpPackageService.Controls.Add(this.gridPackageService);
     this.grpPackageService.Controls.Add(this.btn_PB_Del);
     this.grpPackageService.Controls.Add(this.btn_PBAll_Del);
     this.grpPackageService.Controls.Add(this.btn_PBAll_Add);
     this.grpPackageService.Controls.Add(this.btn_PB_Add);
     this.grpPackageService.Controls.Add(this.btn_PUB_Del);
     this.grpPackageService.Controls.Add(this.btn_PUBAll_Del);
     this.grpPackageService.Controls.Add(this.btn_PUBAll_Add);
     this.grpPackageService.Controls.Add(this.btn_PUB_Add);
     this.grpPackageService.Controls.Add(this.gridPackageBranch2);
     this.grpPackageService.Controls.Add(this.gridPackageUseBranch2);
     this.grpPackageService.Controls.Add(this.label3);
     this.grpPackageService.Controls.Add(this.label7);
     this.grpPackageService.Controls.Add(this.gridPackageBranch);
     this.grpPackageService.Controls.Add(this.gridPackageUseBranch);
     this.grpPackageService.Location = new System.Drawing.Point(8, 288);
     this.grpPackageService.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpPackageService.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpPackageService.Name = "grpPackageService";
     this.grpPackageService.Size = new System.Drawing.Size(960, 424);
     this.grpPackageService.TabIndex = 99;
     this.grpPackageService.Text = "EMPLOYEE PACKAGE SETUP .....";
     //
     // btn_PSAll_Del
     //
     this.btn_PSAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PSAll_Del.Location = new System.Drawing.Point(496, 232);
     this.btn_PSAll_Del.Name = "btn_PSAll_Del";
     this.btn_PSAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PSAll_Del.TabIndex = 28;
     this.btn_PSAll_Del.Text = "<";
     this.btn_PSAll_Del.Click += new System.EventHandler(this.btn_PSAll_Del_Click);
     //
     // btn_PS_Del
     //
     this.btn_PS_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PS_Del.Location = new System.Drawing.Point(496, 208);
     this.btn_PS_Del.Name = "btn_PS_Del";
     this.btn_PS_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PS_Del.TabIndex = 27;
     this.btn_PS_Del.Text = "<<";
     this.btn_PS_Del.Click += new System.EventHandler(this.btn_PS_Del_Click);
     //
     // btn_PSAdd_Add
     //
     this.btn_PSAdd_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PSAdd_Add.Location = new System.Drawing.Point(496, 184);
     this.btn_PSAdd_Add.Name = "btn_PSAdd_Add";
     this.btn_PSAdd_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PSAdd_Add.TabIndex = 26;
     this.btn_PSAdd_Add.Text = ">>";
     this.btn_PSAdd_Add.Click += new System.EventHandler(this.btn_PSAdd_Add_Click);
     //
     // btn_PS_Add
     //
     this.btn_PS_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PS_Add.Location = new System.Drawing.Point(496, 160);
     this.btn_PS_Add.Name = "btn_PS_Add";
     this.btn_PS_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PS_Add.TabIndex = 25;
     this.btn_PS_Add.Text = ">";
     this.btn_PS_Add.Click += new System.EventHandler(this.btn_PS_Add_Click);
     //
     // gridPackageService2
     //
     this.gridPackageService2.Location = new System.Drawing.Point(536, 160);
     this.gridPackageService2.MainView = this.gvPackageService2;
     this.gridPackageService2.Name = "gridPackageService2";
     this.gridPackageService2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageService2.TabIndex = 29;
     this.gridPackageService2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageService2});
     //
     // gvPackageService2
     //
     this.gvPackageService2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn23});
     this.gvPackageService2.GridControl = this.gridPackageService2;
     this.gvPackageService2.Name = "gvPackageService2";
     this.gvPackageService2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageService2.OptionsBehavior.Editable = false;
     this.gvPackageService2.OptionsCustomization.AllowFilter = false;
     this.gvPackageService2.OptionsSelection.MultiSelect = true;
     this.gvPackageService2.OptionsView.ShowGroupPanel = false;
     this.gvPackageService2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn9, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "Service Code";
     this.gridColumn9.FieldName = "strServiceCode";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 0;
     this.gridColumn9.Width = 104;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "Description";
     this.gridColumn10.FieldName = "strDescription";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 1;
     this.gridColumn10.Width = 282;
     //
     // gridColumn23
     //
     this.gridColumn23.FieldName = "strPackageCode";
     this.gridColumn23.Name = "gridColumn23";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 168);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(56, 34);
     this.label1.TabIndex = 30;
     this.label1.Text = "Package Service";
     //
     // gridPackageService
     //
     this.gridPackageService.Location = new System.Drawing.Point(64, 160);
     this.gridPackageService.MainView = this.gvPackageService;
     this.gridPackageService.Name = "gridPackageService";
     this.gridPackageService.Size = new System.Drawing.Size(424, 128);
     this.gridPackageService.TabIndex = 24;
     this.gridPackageService.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPackageService});
     //
     // gvPackageService
     //
     this.gvPackageService.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn11,
     this.gridColumn12});
     this.gvPackageService.GridControl = this.gridPackageService;
     this.gvPackageService.Name = "gvPackageService";
     this.gvPackageService.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPackageService.OptionsBehavior.Editable = false;
     this.gvPackageService.OptionsCustomization.AllowFilter = false;
     this.gvPackageService.OptionsSelection.MultiSelect = true;
     this.gvPackageService.OptionsView.ShowGroupPanel = false;
     this.gvPackageService.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn11, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "Service Code";
     this.gridColumn11.FieldName = "strServiceCode";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 0;
     this.gridColumn11.Width = 107;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "Description";
     this.gridColumn12.FieldName = "strDescription";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 1;
     this.gridColumn12.Width = 279;
     //
     // btn_PB_Del
     //
     this.btn_PB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PB_Del.Location = new System.Drawing.Point(496, 96);
     this.btn_PB_Del.Name = "btn_PB_Del";
     this.btn_PB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PB_Del.TabIndex = 21;
     this.btn_PB_Del.Text = "<";
     this.btn_PB_Del.Click += new System.EventHandler(this.btn_PB_Del_Click);
     //
     // btn_PBAll_Del
     //
     this.btn_PBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PBAll_Del.Location = new System.Drawing.Point(496, 72);
     this.btn_PBAll_Del.Name = "btn_PBAll_Del";
     this.btn_PBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PBAll_Del.TabIndex = 20;
     this.btn_PBAll_Del.Text = "<<";
     this.btn_PBAll_Del.Click += new System.EventHandler(this.btn_PBAll_Del_Click);
     //
     // btn_PBAll_Add
     //
     this.btn_PBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PBAll_Add.Location = new System.Drawing.Point(496, 48);
     this.btn_PBAll_Add.Name = "btn_PBAll_Add";
     this.btn_PBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PBAll_Add.TabIndex = 19;
     this.btn_PBAll_Add.Text = ">>";
     this.btn_PBAll_Add.Click += new System.EventHandler(this.btn_PBAll_Add_Click);
     //
     // btn_PB_Add
     //
     this.btn_PB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PB_Add.Location = new System.Drawing.Point(496, 24);
     this.btn_PB_Add.Name = "btn_PB_Add";
     this.btn_PB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PB_Add.TabIndex = 18;
     this.btn_PB_Add.Text = ">";
     this.btn_PB_Add.Click += new System.EventHandler(this.btn_PB_Add_Click);
     //
     // btn_PUB_Del
     //
     this.btn_PUB_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUB_Del.Location = new System.Drawing.Point(496, 362);
     this.btn_PUB_Del.Name = "btn_PUB_Del";
     this.btn_PUB_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PUB_Del.TabIndex = 21;
     this.btn_PUB_Del.Text = "<";
     this.btn_PUB_Del.Click += new System.EventHandler(this.btn_PUB_Del_Click);
     //
     // btn_PUBAll_Del
     //
     this.btn_PUBAll_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUBAll_Del.Location = new System.Drawing.Point(496, 338);
     this.btn_PUBAll_Del.Name = "btn_PUBAll_Del";
     this.btn_PUBAll_Del.Size = new System.Drawing.Size(30, 20);
     this.btn_PUBAll_Del.TabIndex = 20;
     this.btn_PUBAll_Del.Text = "<<";
     this.btn_PUBAll_Del.Click += new System.EventHandler(this.btn_PUBAll_Del_Click);
     //
     // btn_PUBAll_Add
     //
     this.btn_PUBAll_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUBAll_Add.Location = new System.Drawing.Point(496, 314);
     this.btn_PUBAll_Add.Name = "btn_PUBAll_Add";
     this.btn_PUBAll_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PUBAll_Add.TabIndex = 19;
     this.btn_PUBAll_Add.Text = ">>";
     this.btn_PUBAll_Add.Click += new System.EventHandler(this.btn_PUBAll_Add_Click);
     //
     // btn_PUB_Add
     //
     this.btn_PUB_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btn_PUB_Add.Location = new System.Drawing.Point(496, 290);
     this.btn_PUB_Add.Name = "btn_PUB_Add";
     this.btn_PUB_Add.Size = new System.Drawing.Size(30, 20);
     this.btn_PUB_Add.TabIndex = 18;
     this.btn_PUB_Add.Text = ">";
     this.btn_PUB_Add.Click += new System.EventHandler(this.btn_PUB_Add_Click);
     //
     // gridPackageBranch2
     //
     this.gridPackageBranch2.Location = new System.Drawing.Point(536, 24);
     this.gridPackageBranch2.MainView = this.gvPSBranch2;
     this.gridPackageBranch2.Name = "gridPackageBranch2";
     this.gridPackageBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageBranch2.TabIndex = 22;
     this.gridPackageBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSBranch2});
     //
     // gridPackageUseBranch2
     //
     this.gridPackageUseBranch2.Location = new System.Drawing.Point(536, 290);
     this.gridPackageUseBranch2.MainView = this.gvPSUseBranch2;
     this.gridPackageUseBranch2.Name = "gridPackageUseBranch2";
     this.gridPackageUseBranch2.Size = new System.Drawing.Size(424, 128);
     this.gridPackageUseBranch2.TabIndex = 22;
     this.gridPackageUseBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSUseBranch2});
     //
     // gvPSBranch2
     //
     this.gvPSBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colBranchCode2,
     this.colBranchName2});
     this.gvPSBranch2.GridControl = this.gridPackageBranch2;
     this.gvPSBranch2.Name = "gvPSBranch2";
     this.gvPSBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSBranch2.OptionsBehavior.Editable = false;
     this.gvPSBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPSBranch2.OptionsSelection.MultiSelect = true;
     this.gvPSBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPSBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colBranchCode2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colBranchCode2
     //
     this.colBranchCode2.Caption = "Branch";
     this.colBranchCode2.FieldName = "strBranchCode";
     this.colBranchCode2.Name = "colBranchCode2";
     this.colBranchCode2.Visible = true;
     this.colBranchCode2.VisibleIndex = 0;
     this.colBranchCode2.Width = 104;
     //
     // colBranchName2
     //
     this.colBranchName2.Caption = "Branch Name";
     this.colBranchName2.FieldName = "strBranchName";
     this.colBranchName2.Name = "colBranchName2";
     this.colBranchName2.Visible = true;
     this.colBranchName2.VisibleIndex = 1;
     this.colBranchName2.Width = 282;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(8, 24);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 54);
     this.label3.TabIndex = 23;
     this.label3.Text = "Package Sell Branch";
     //
     // gvPSUseBranch2
     //
     this.gvPSUseBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colUseBranchCode2,
     this.colUseBranchName2});
     this.gvPSUseBranch2.GridControl = this.gridPackageUseBranch2;
     this.gvPSUseBranch2.Name = "gvPSUseBranch2";
     this.gvPSUseBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSUseBranch2.OptionsBehavior.Editable = false;
     this.gvPSUseBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPSUseBranch2.OptionsSelection.MultiSelect = true;
     this.gvPSUseBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPSUseBranch2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colUseBranchCode2, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colUseBranchCode2
     //
     this.colUseBranchCode2.Caption = "Branch";
     this.colUseBranchCode2.FieldName = "strBranchCode";
     this.colUseBranchCode2.Name = "colUseBranchCode2";
     this.colUseBranchCode2.Visible = true;
     this.colUseBranchCode2.VisibleIndex = 0;
     this.colUseBranchCode2.Width = 104;
     //
     // colUseBranchName2
     //
     this.colUseBranchName2.Caption = "Branch Name";
     this.colUseBranchName2.FieldName = "strBranchName";
     this.colUseBranchName2.Name = "colUseBranchName2";
     this.colUseBranchName2.Visible = true;
     this.colUseBranchName2.VisibleIndex = 1;
     this.colUseBranchName2.Width = 282;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(8, 290);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(56, 54);
     this.label7.TabIndex = 23;
     this.label7.Text = "Package Use Branch";
     //
     // gridPackageBranch
     //
     this.gridPackageBranch.Location = new System.Drawing.Point(64, 24);
     this.gridPackageBranch.MainView = this.gvPSBranch;
     this.gridPackageBranch.Name = "gridPackageBranch";
     this.gridPackageBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPackageBranch.TabIndex = 17;
     this.gridPackageBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSBranch});
     //
     // gvPSBranch
     //
     this.gvPSBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colBranchCode,
     this.colBranchName});
     this.gvPSBranch.GridControl = this.gridPackageBranch;
     this.gvPSBranch.Name = "gvPSBranch";
     this.gvPSBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSBranch.OptionsBehavior.Editable = false;
     this.gvPSBranch.OptionsCustomization.AllowFilter = false;
     this.gvPSBranch.OptionsSelection.MultiSelect = true;
     this.gvPSBranch.OptionsView.ShowGroupPanel = false;
     this.gvPSBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colBranchCode, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colBranchCode
     //
     this.colBranchCode.Caption = "Branch";
     this.colBranchCode.FieldName = "strBranchCode";
     this.colBranchCode.Name = "colBranchCode";
     this.colBranchCode.Visible = true;
     this.colBranchCode.VisibleIndex = 0;
     this.colBranchCode.Width = 107;
     //
     // colBranchName
     //
     this.colBranchName.Caption = "Branch Name";
     this.colBranchName.FieldName = "strBranchName";
     this.colBranchName.Name = "colBranchName";
     this.colBranchName.Visible = true;
     this.colBranchName.VisibleIndex = 1;
     this.colBranchName.Width = 279;
     //
     // gridPackageUseBranch
     //
     this.gridPackageUseBranch.Location = new System.Drawing.Point(64, 290);
     this.gridPackageUseBranch.MainView = this.gvPSUseBranch;
     this.gridPackageUseBranch.Name = "gridPackageUseBranch";
     this.gridPackageUseBranch.Size = new System.Drawing.Size(424, 128);
     this.gridPackageUseBranch.TabIndex = 17;
     this.gridPackageUseBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPSUseBranch});
     //
     // gvPSUseBranch
     //
     this.gvPSUseBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colUseBranchCode,
     this.colUseBranchName});
     this.gvPSUseBranch.GridControl = this.gridPackageUseBranch;
     this.gvPSUseBranch.Name = "gvPSUseBranch";
     this.gvPSUseBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPSUseBranch.OptionsBehavior.Editable = false;
     this.gvPSUseBranch.OptionsCustomization.AllowFilter = false;
     this.gvPSUseBranch.OptionsSelection.MultiSelect = true;
     this.gvPSUseBranch.OptionsView.ShowGroupPanel = false;
     this.gvPSUseBranch.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colUseBranchCode, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // colUseBranchCode
     //
     this.colUseBranchCode.Caption = "Branch";
     this.colUseBranchCode.FieldName = "strBranchCode";
     this.colUseBranchCode.Name = "colUseBranchCode";
     this.colUseBranchCode.Visible = true;
     this.colUseBranchCode.VisibleIndex = 0;
     this.colUseBranchCode.Width = 107;
     //
     // colUseBranchName
     //
     this.colUseBranchName.Caption = "Branch Name";
     this.colUseBranchName.FieldName = "strBranchName";
     this.colUseBranchName.Name = "colUseBranchName";
     this.colUseBranchName.Visible = true;
     this.colUseBranchName.VisibleIndex = 1;
     this.colUseBranchName.Width = 279;
     //
     // PackageGroup
     //
     this.PackageGroup.Controls.Add(this.btn_PacGroup_Add);
     this.PackageGroup.Controls.Add(this.btn_PacGroup_Del);
     this.PackageGroup.Controls.Add(this.groupControl2);
     this.PackageGroup.Controls.Add(this.splitter2);
     this.PackageGroup.ImeMode = System.Windows.Forms.ImeMode.On;
     this.PackageGroup.Location = new System.Drawing.Point(8, 288);
     this.PackageGroup.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.PackageGroup.LookAndFeel.UseDefaultLookAndFeel = false;
     this.PackageGroup.Name = "PackageGroup";
     this.PackageGroup.Size = new System.Drawing.Size(952, 434);
     this.PackageGroup.TabIndex = 100;
     this.PackageGroup.Text = "PACKAGE GROUP ENTRIES SETUP .....";
     //
     // btn_PacGroup_Add
     //
     this.btn_PacGroup_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PacGroup_Add.Appearance.Options.UseFont = true;
     this.btn_PacGroup_Add.Appearance.Options.UseTextOptions = true;
     this.btn_PacGroup_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PacGroup_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PacGroup_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PacGroup_Add.ImageIndex = 0;
     this.btn_PacGroup_Add.ImageList = this.imageList1;
     this.btn_PacGroup_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_PacGroup_Add.Location = new System.Drawing.Point(8, 24);
     this.btn_PacGroup_Add.Name = "btn_PacGroup_Add";
     this.btn_PacGroup_Add.Size = new System.Drawing.Size(32, 16);
     this.btn_PacGroup_Add.TabIndex = 134;
     this.btn_PacGroup_Add.Click += new System.EventHandler(this.btn_PacGroup_Add_Click);
     //
     // btn_PacGroup_Del
     //
     this.btn_PacGroup_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_PacGroup_Del.Appearance.Options.UseFont = true;
     this.btn_PacGroup_Del.Appearance.Options.UseTextOptions = true;
     this.btn_PacGroup_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_PacGroup_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_PacGroup_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_PacGroup_Del.ImageIndex = 1;
     this.btn_PacGroup_Del.ImageList = this.imageList1;
     this.btn_PacGroup_Del.Location = new System.Drawing.Point(40, 24);
     this.btn_PacGroup_Del.Name = "btn_PacGroup_Del";
     this.btn_PacGroup_Del.Size = new System.Drawing.Size(32, 16);
     this.btn_PacGroup_Del.TabIndex = 133;
     this.btn_PacGroup_Del.Click += new System.EventHandler(this.btn_PacGroup_Del_Click);
     //
     // groupControl2
     //
     this.groupControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl2.Controls.Add(this.gridControlMd_GroupEntries);
     this.groupControl2.Location = new System.Drawing.Point(0, 40);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(968, 248);
     this.groupControl2.TabIndex = 12;
     this.groupControl2.Text = "groupControl2";
     //
     // gridControlMd_GroupEntries
     //
     this.gridControlMd_GroupEntries.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMd_GroupEntries.Location = new System.Drawing.Point(0, 0);
     this.gridControlMd_GroupEntries.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gridControlMd_GroupEntries.MainView = this.gridViewMd_GroupEntries;
     this.gridControlMd_GroupEntries.Name = "gridControlMd_GroupEntries";
     this.gridControlMd_GroupEntries.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_GrpPackageCode});
     this.gridControlMd_GroupEntries.Size = new System.Drawing.Size(968, 248);
     this.gridControlMd_GroupEntries.TabIndex = 12;
     this.gridControlMd_GroupEntries.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMd_GroupEntries});
     //
     // gridViewMd_GroupEntries
     //
     this.gridViewMd_GroupEntries.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn44,
     this.gridColumn45,
     this.gridColumn46});
     this.gridViewMd_GroupEntries.GridControl = this.gridControlMd_GroupEntries;
     this.gridViewMd_GroupEntries.Name = "gridViewMd_GroupEntries";
     this.gridViewMd_GroupEntries.OptionsCustomization.AllowFilter = false;
     this.gridViewMd_GroupEntries.OptionsCustomization.AllowSort = false;
     this.gridViewMd_GroupEntries.OptionsView.ShowGroupPanel = false;
     this.gridViewMd_GroupEntries.LostFocus += new System.EventHandler(this.gridViewMd_GroupEntries_LostFocus);
     //
     // gridColumn44
     //
     this.gridColumn44.Caption = "Package Group Code";
     this.gridColumn44.FieldName = "strPackageGroupCode";
     this.gridColumn44.Name = "gridColumn44";
     //
     // gridColumn45
     //
     this.gridColumn45.Caption = "Package Code";
     this.gridColumn45.ColumnEdit = this.lk_GrpPackageCode;
     this.gridColumn45.FieldName = "strPackageCode";
     this.gridColumn45.Name = "gridColumn45";
     this.gridColumn45.Visible = true;
     this.gridColumn45.VisibleIndex = 0;
     //
     // lk_GrpPackageCode
     //
     this.lk_GrpPackageCode.AutoHeight = false;
     this.lk_GrpPackageCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_GrpPackageCode.Name = "lk_GrpPackageCode";
     //
     // gridColumn46
     //
     this.gridColumn46.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn46.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn46.Caption = "Quantity";
     this.gridColumn46.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn46.FieldName = "nQuantity";
     this.gridColumn46.Name = "gridColumn46";
     this.gridColumn46.Visible = true;
     this.gridColumn46.VisibleIndex = 1;
     //
     // splitter2
     //
     this.splitter2.BackColor = System.Drawing.SystemColors.Control;
     this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
     this.splitter2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.splitter2.Location = new System.Drawing.Point(948, 19);
     this.splitter2.Name = "splitter2";
     this.splitter2.Size = new System.Drawing.Size(2, 413);
     this.splitter2.TabIndex = 7;
     this.splitter2.TabStop = false;
     //
     // GroupCreditPackage
     //
     this.GroupCreditPackage.Controls.Add(this.btn_CreGroup_Add);
     this.GroupCreditPackage.Controls.Add(this.btn_CreGroup_Del);
     this.GroupCreditPackage.Controls.Add(this.groupControl3);
     this.GroupCreditPackage.Location = new System.Drawing.Point(8, 288);
     this.GroupCreditPackage.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.GroupCreditPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GroupCreditPackage.Name = "GroupCreditPackage";
     this.GroupCreditPackage.Size = new System.Drawing.Size(968, 300);
     this.GroupCreditPackage.TabIndex = 101;
     this.GroupCreditPackage.Text = "EMPLOYEE CREDIT PACKAGE SETUP .....";
     //
     // btn_CreGroup_Add
     //
     this.btn_CreGroup_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_CreGroup_Add.Appearance.Options.UseFont = true;
     this.btn_CreGroup_Add.Appearance.Options.UseTextOptions = true;
     this.btn_CreGroup_Add.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_CreGroup_Add.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_CreGroup_Add.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_CreGroup_Add.ImageIndex = 0;
     this.btn_CreGroup_Add.ImageList = this.imageList1;
     this.btn_CreGroup_Add.ImeMode = System.Windows.Forms.ImeMode.On;
     this.btn_CreGroup_Add.Location = new System.Drawing.Point(0, 24);
     this.btn_CreGroup_Add.Name = "btn_CreGroup_Add";
     this.btn_CreGroup_Add.Size = new System.Drawing.Size(32, 16);
     this.btn_CreGroup_Add.TabIndex = 136;
     this.btn_CreGroup_Add.Click += new System.EventHandler(this.btn_CreGroup_Add_Click);
     //
     // btn_CreGroup_Del
     //
     this.btn_CreGroup_Del.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_CreGroup_Del.Appearance.Options.UseFont = true;
     this.btn_CreGroup_Del.Appearance.Options.UseTextOptions = true;
     this.btn_CreGroup_Del.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.btn_CreGroup_Del.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.btn_CreGroup_Del.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Wrap;
     this.btn_CreGroup_Del.ImageIndex = 1;
     this.btn_CreGroup_Del.ImageList = this.imageList1;
     this.btn_CreGroup_Del.Location = new System.Drawing.Point(32, 24);
     this.btn_CreGroup_Del.Name = "btn_CreGroup_Del";
     this.btn_CreGroup_Del.Size = new System.Drawing.Size(32, 16);
     this.btn_CreGroup_Del.TabIndex = 135;
     this.btn_CreGroup_Del.Click += new System.EventHandler(this.btn_CreGroup_Del_Click);
     //
     // groupControl3
     //
     this.groupControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl3.Controls.Add(this.GridCreditRestric);
     this.groupControl3.Location = new System.Drawing.Point(0, 40);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(944, 256);
     this.groupControl3.TabIndex = 12;
     this.groupControl3.Text = "groupControl3";
     //
     // GridCreditRestric
     //
     this.GridCreditRestric.Dock = System.Windows.Forms.DockStyle.Fill;
     gridLevelNode2.RelationName = "Level1";
     this.GridCreditRestric.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     this.GridCreditRestric.Location = new System.Drawing.Point(0, 0);
     this.GridCreditRestric.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridCreditRestric.MainView = this.gridViewmd_CreditRestric;
     this.GridCreditRestric.Name = "GridCreditRestric";
     this.GridCreditRestric.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.lk_PackageCode,
     this.chk_AllowDiscount});
     this.GridCreditRestric.Size = new System.Drawing.Size(944, 256);
     this.GridCreditRestric.TabIndex = 12;
     this.GridCreditRestric.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewmd_CreditRestric});
     //
     // gridViewmd_CreditRestric
     //
     this.gridViewmd_CreditRestric.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27});
     this.gridViewmd_CreditRestric.GridControl = this.GridCreditRestric;
     this.gridViewmd_CreditRestric.Name = "gridViewmd_CreditRestric";
     this.gridViewmd_CreditRestric.OptionsCustomization.AllowFilter = false;
     this.gridViewmd_CreditRestric.OptionsCustomization.AllowSort = false;
     this.gridViewmd_CreditRestric.OptionsView.ShowGroupPanel = false;
     this.gridViewmd_CreditRestric.LostFocus += new System.EventHandler(this.gridViewmd_CreditRestric_LostFocus);
     //
     // gridColumn25
     //
     this.gridColumn25.FieldName = "strCreditPackageCode";
     this.gridColumn25.Name = "gridColumn25";
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "Package Code";
     this.gridColumn26.ColumnEdit = this.lk_PackageCode;
     this.gridColumn26.FieldName = "strPackageCode";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 0;
     //
     // lk_PackageCode
     //
     this.lk_PackageCode.AutoHeight = false;
     this.lk_PackageCode.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lk_PackageCode.Name = "lk_PackageCode";
     //
     // gridColumn27
     //
     this.gridColumn27.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gridColumn27.Caption = "Allow Discount";
     this.gridColumn27.ColumnEdit = this.chk_AllowDiscount;
     this.gridColumn27.FieldName = "fAllowDiscount";
     this.gridColumn27.ImageAlignment = System.Drawing.StringAlignment.Center;
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 1;
     //
     // chk_AllowDiscount
     //
     this.chk_AllowDiscount.AutoHeight = false;
     this.chk_AllowDiscount.Name = "chk_AllowDiscount";
     //
     // grpBranch
     //
     this.grpBranch.Controls.Add(this.btnPacBranch_Del);
     this.grpBranch.Controls.Add(this.btnPacBranch_DelAll);
     this.grpBranch.Controls.Add(this.btnPacBranch_AddAll);
     this.grpBranch.Controls.Add(this.btnPacBranch_Add);
     this.grpBranch.Controls.Add(this.gridPacBranch2);
     this.grpBranch.Controls.Add(this.label6);
     this.grpBranch.Controls.Add(this.gridPacBranch);
     this.grpBranch.Location = new System.Drawing.Point(3, 290);
     this.grpBranch.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Office2003;
     this.grpBranch.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grpBranch.Name = "grpBranch";
     this.grpBranch.Size = new System.Drawing.Size(960, 296);
     this.grpBranch.TabIndex = 102;
     this.grpBranch.Text = "PACKAGE SETUP .....";
     //
     // btnPacBranch_Del
     //
     this.btnPacBranch_Del.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_Del.Location = new System.Drawing.Point(496, 96);
     this.btnPacBranch_Del.Name = "btnPacBranch_Del";
     this.btnPacBranch_Del.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_Del.TabIndex = 21;
     this.btnPacBranch_Del.Text = "<";
     this.btnPacBranch_Del.Click += new System.EventHandler(this.btnPacBranch_Del_Click);
     //
     // btnPacBranch_DelAll
     //
     this.btnPacBranch_DelAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_DelAll.Location = new System.Drawing.Point(496, 72);
     this.btnPacBranch_DelAll.Name = "btnPacBranch_DelAll";
     this.btnPacBranch_DelAll.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_DelAll.TabIndex = 20;
     this.btnPacBranch_DelAll.Text = "<<";
     this.btnPacBranch_DelAll.Click += new System.EventHandler(this.btnPacBranch_DelAll_Click);
     //
     // btnPacBranch_AddAll
     //
     this.btnPacBranch_AddAll.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_AddAll.Location = new System.Drawing.Point(496, 48);
     this.btnPacBranch_AddAll.Name = "btnPacBranch_AddAll";
     this.btnPacBranch_AddAll.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_AddAll.TabIndex = 19;
     this.btnPacBranch_AddAll.Text = ">>";
     this.btnPacBranch_AddAll.Click += new System.EventHandler(this.btnPacBranch_AddAll_Click);
     //
     // btnPacBranch_Add
     //
     this.btnPacBranch_Add.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
     this.btnPacBranch_Add.Location = new System.Drawing.Point(496, 24);
     this.btnPacBranch_Add.Name = "btnPacBranch_Add";
     this.btnPacBranch_Add.Size = new System.Drawing.Size(30, 20);
     this.btnPacBranch_Add.TabIndex = 18;
     this.btnPacBranch_Add.Text = ">";
     this.btnPacBranch_Add.Click += new System.EventHandler(this.btnPacBranch_Add_Click);
     //
     // gridPacBranch2
     //
     this.gridPacBranch2.Location = new System.Drawing.Point(536, 24);
     this.gridPacBranch2.MainView = this.gvPacBranch2;
     this.gridPacBranch2.Name = "gridPacBranch2";
     this.gridPacBranch2.Size = new System.Drawing.Size(424, 264);
     this.gridPacBranch2.TabIndex = 22;
     this.gridPacBranch2.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPacBranch2});
     //
     // gvPacBranch2
     //
     this.gvPacBranch2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn33,
     this.gridColumn34});
     this.gvPacBranch2.GridControl = this.gridPacBranch2;
     this.gvPacBranch2.Name = "gvPacBranch2";
     this.gvPacBranch2.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPacBranch2.OptionsBehavior.Editable = false;
     this.gvPacBranch2.OptionsCustomization.AllowFilter = false;
     this.gvPacBranch2.OptionsSelection.MultiSelect = true;
     this.gvPacBranch2.OptionsView.ShowGroupPanel = false;
     this.gvPacBranch2.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;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(8, 24);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(56, 34);
     this.label6.TabIndex = 23;
     this.label6.Text = "Package Branch";
     //
     // gridPacBranch
     //
     this.gridPacBranch.Location = new System.Drawing.Point(64, 24);
     this.gridPacBranch.MainView = this.gvPacBranch;
     this.gridPacBranch.Name = "gridPacBranch";
     this.gridPacBranch.Size = new System.Drawing.Size(424, 264);
     this.gridPacBranch.TabIndex = 17;
     this.gridPacBranch.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvPacBranch});
     //
     // gvPacBranch
     //
     this.gvPacBranch.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn35,
     this.gridColumn36});
     this.gvPacBranch.GridControl = this.gridPacBranch;
     this.gvPacBranch.Name = "gvPacBranch";
     this.gvPacBranch.OptionsBehavior.AllowIncrementalSearch = true;
     this.gvPacBranch.OptionsBehavior.Editable = false;
     this.gvPacBranch.OptionsCustomization.AllowFilter = false;
     this.gvPacBranch.OptionsSelection.MultiSelect = true;
     this.gvPacBranch.OptionsView.ShowGroupPanel = false;
     this.gvPacBranch.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;
     //
     // frmPackage
     //
     this.BackColor = System.Drawing.Color.White;
     this.AutoScroll = true;
     this.ClientSize = new System.Drawing.Size(982, 600);
     this.Controls.Add(this.grpPackageService);
     this.Controls.Add(this.grpMDPackageTop);
     this.Controls.Add(this.grpPackageClass);
     this.Controls.Add(this.GroupCreditPackage);
     this.Controls.Add(this.grpBranch);
     this.Controls.Add(this.PackageGroup);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "frmPackage";
     this.Text = "frmPackage";
     this.Load += new System.EventHandler(this.frmPackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.grpMDPackageTop)).EndInit();
     this.grpMDPackageTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ddlPackageCategory.Properties)).EndInit();
     this.Searchpanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtSearch.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackage)).EndInit();
     this.grpPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_Package)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_Package)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_DurationUnit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StudentPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_Category)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_GIRO)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Sell)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_Peak_1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_StuPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_RestUpgrade)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageGroup)).EndInit();
     this.grpPackageGroup.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit();
     this.groupControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_PackageGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_PackageGroup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_pkGroupCatID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpCreditPackage)).EndInit();
     this.grpCreditPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit();
     this.groupControl5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_CreditPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_CreditPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCStartDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EffCCEndDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_CreditCategoryID)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageClass)).EndInit();
     this.grpPackageClass.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageClass)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageClass)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPcGroupUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPcGroupUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpPackageService)).EndInit();
     this.grpPackageService.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPackageService)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPackageUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPSUseBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PackageGroup)).EndInit();
     this.PackageGroup.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMd_GroupEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMd_GroupEntries)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_GrpPackageCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GroupCreditPackage)).EndInit();
     this.GroupCreditPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GridCreditRestric)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewmd_CreditRestric)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lk_PackageCode)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_AllowDiscount)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpBranch)).EndInit();
     this.grpBranch.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridPacBranch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvPacBranch)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// 创建Grid列
        /// </summary>
        private void CreateGridColumn()
        {
            try
            {
                gvSearch.Columns.Clear();
                int i = 0;
                List<DataRow> LDataRows = dtDetail.Select("bIsShow=1").ToList();
                if (IsGroup)
                {
                    string sDisGroupField = "";
                    foreach (var item in GetGroupFields().Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries))
                    {
                        sDisGroupField += "'" + item + "',";
                    }
                    if (sDisGroupField != "")
                    {
                        sDisGroupField = "(" + sDisGroupField.Substring(0, sDisGroupField.Length - 1) + ")";
                        //将统计字段也加入Grid列中
                        LDataRows = dtDetail.Select("bIsShow=1 AND bIsGroup=1 AND sColumnFieldName IN " + sDisGroupField).Union(dtDetail.Select("bIsStat=1")).ToList();
                    }
                    else
                    {
                        Public.SystemInfo("必须至少选择一列分组字段!");
                        return;
                    }

                }
                foreach (DataRow dr in LDataRows)
                {
                    DevExpress.XtraGrid.Columns.GridColumn col = new DevExpress.XtraGrid.Columns.GridColumn();
                    col.FieldName = dr["sColumnFieldName"].ToString();
                    col.Caption = dr["sColumnCaption"].ToString();
                    col.Name = "col" + dr["sColumnFieldName"].ToString() + i.ToString();
                    col.Width = 100;
                    col.Visible = true;
                    col.VisibleIndex = i;
                    if (dr["sColumnType"].ToString() == "K")
                    {
                        DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit colItem = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
                        colItem.AutoHeight = false;
                        colItem.Name = "repositoryItem" + dr["sColumnFieldName"].ToString() + i.ToString();
                        colItem.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
                        col.ColumnEdit = colItem;
                        gcSearch.RepositoryItems.Add(colItem);
                    }
                    //先计算有没有合计的,再计算计数
                    if (dr["bIsSum"].ToString() != "" && Convert.ToBoolean(dr["bIsSum"]))
                    {
                        col.SummaryItem.FieldName = dr["sColumnFieldName"].ToString();
                        col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                        //显示分组脚注后也要合计
                        gvSearch.GroupSummary.Add(DevExpress.Data.SummaryItemType.Sum, dr["sColumnFieldName"].ToString(), col);

                    }
                    if (dr["bIsCount"].ToString() != "" && Convert.ToBoolean(dr["bIsCount"]))
                    {
                        col.SummaryItem.FieldName = dr["sColumnFieldName"].ToString();
                        col.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
                        gvSearch.GroupSummary.Add(DevExpress.Data.SummaryItemType.Count, dr["sColumnFieldName"].ToString(), col);
                    }
                    gvSearch.Columns.Add(col);
                    i++;
                }

                //添加图表值字段到ComboBox中
                if (IsChart)
                {
                    //数据值
                    cbxValueType.Properties.Items.Clear();
                    DataTable dtTemp = dtDetail.Clone();
                    foreach (DataRow item in dtDetail.Select("bChartValue"))
                    {
                        //DataRow dr = dtTemp.NewRow();
                        //dr["sColumnFieldName"] = item["sColumnFieldName"];
                        //dr["sColumnCaption"] = item["sColumnCaption"];
                        //dtTemp.Rows.Add(dr);
                        cbxValueType.Properties.Items.Add(new DevExpress.XtraEditors.Controls.ImageComboBoxItem(item["sColumnCaption"].ToString(), item["sColumnFieldName"]));
                    }
                    cbxValueType.SelectedIndex = 0;
                    //cbxValueType.DataSource = dtTemp;
                    //cbxValueType.ValueMember = "sColumnFieldName";
                    //cbxValueType.DisplayMember = "sColumnCaption";

                    //比较值
                    cbxField.Properties.Items.Clear();
                    DataTable dtField = dtDetail.Clone();
                    foreach (DataRow item in dtDetail.Select("bChartField"))
                    {
                        //DataRow dr = dtField.NewRow();
                        //dr["sColumnFieldName"] = item["sColumnFieldName"];
                        //dr["sColumnCaption"] = item["sColumnCaption"];
                        //dtField.Rows.Add(dr);
                        cbxField.Properties.Items.Add(new DevExpress.XtraEditors.Controls.ImageComboBoxItem(item["sColumnCaption"].ToString(), item["sColumnFieldName"]));
                    }
                    cbxField.SelectedIndex = 0;
                    //cbxField.DataSource = dtField;
                    //cbxField.ValueMember = "sColumnFieldName";
                    //cbxField.DisplayMember = "sColumnCaption";
                }
            }
            catch (Exception ex)
            {
                Public.SystemInfo("创建查询Grid列错误!" + ex.Message, true);
            }
        }
Exemple #54
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.label2 = new System.Windows.Forms.Label();
     this.panelControlPackage = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK1 = new DevExpress.XtraEditors.SimpleButton();
     this.GcMemberGiro = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.GridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControlTop = new DevExpress.XtraEditors.PanelControl();
     this.label1 = new System.Windows.Forms.Label();
     this.panelControlMemberPackage = new DevExpress.XtraEditors.PanelControl();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).BeginInit();
     this.panelControlPackage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GcMemberGiro)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlTop)).BeginInit();
     this.panelControlTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.label2);
     this.panelControl1.Location = new System.Drawing.Point(-11, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(864, 42);
     this.panelControl1.TabIndex = 10;
     //
     // label2
     //
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(10, 16);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(310, 16);
     this.label2.TabIndex = 11;
     this.label2.Text = "CHOOSE A MEMBER PACKAGE TO UPDATE:";
     //
     // panelControlPackage
     //
     this.panelControlPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlPackage.Controls.Add(this.simpleButton1);
     this.panelControlPackage.Controls.Add(this.simpleButton3);
     this.panelControlPackage.Controls.Add(this.simpleButton2);
     this.panelControlPackage.Controls.Add(this.simpleButtonOK1);
     this.panelControlPackage.Controls.Add(this.GcMemberGiro);
     this.panelControlPackage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControlPackage.Location = new System.Drawing.Point(0, 44);
     this.panelControlPackage.Name = "panelControlPackage";
     this.panelControlPackage.Size = new System.Drawing.Size(617, 342);
     this.panelControlPackage.TabIndex = 9;
     //
     // simpleButton1
     //
     this.simpleButton1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton1.Location = new System.Drawing.Point(280, 304);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 14;
     this.simpleButton1.Text = "Cancel";
     //
     // simpleButton3
     //
     this.simpleButton3.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButton3.Location = new System.Drawing.Point(200, 304);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(75, 23);
     this.simpleButton3.TabIndex = 13;
     this.simpleButton3.Text = "OK";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location = new System.Drawing.Point(778, 502);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 12;
     this.simpleButton2.Text = "Cancel";
     //
     // simpleButtonOK1
     //
     this.simpleButtonOK1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK1.Location = new System.Drawing.Point(692, 504);
     this.simpleButtonOK1.Name = "simpleButtonOK1";
     this.simpleButtonOK1.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonOK1.TabIndex = 11;
     this.simpleButtonOK1.Text = "OK";
     //
     // GcMemberGiro
     //
     this.GcMemberGiro.Location = new System.Drawing.Point(0, -4);
     this.GcMemberGiro.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GcMemberGiro.MainView = this.gridViewMemberPackage;
     this.GcMemberGiro.Name = "GcMemberGiro";
     this.GcMemberGiro.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.GcMemberGiro.Size = new System.Drawing.Size(864, 288);
     this.GcMemberGiro.TabIndex = 8;
     this.GcMemberGiro.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMemberPackage});
     //
     // gridViewMemberPackage
     //
     this.gridViewMemberPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.GridColumn28,
     this.GridColumn30,
     this.GridColumn31,
     this.gridColumn1,
     this.GridColumn44,
     this.GridColumn32,
     this.GridColumn33,
     this.GridColumn35});
     this.gridViewMemberPackage.GridControl = this.GcMemberGiro;
     this.gridViewMemberPackage.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMemberPackage.Name = "gridViewMemberPackage";
     this.gridViewMemberPackage.OptionsView.ColumnAutoWidth = false;
     this.gridViewMemberPackage.OptionsView.ShowGroupPanel = false;
     //
     // GridColumn28
     //
     this.GridColumn28.Caption = "Package ID";
     this.GridColumn28.FieldName = "nPackageID";
     this.GridColumn28.Name = "GridColumn28";
     this.GridColumn28.OptionsColumn.AllowEdit = false;
     this.GridColumn28.OptionsColumn.AllowFocus = false;
     this.GridColumn28.OptionsFilter.AllowFilter = false;
     this.GridColumn28.Visible = true;
     this.GridColumn28.VisibleIndex = 0;
     this.GridColumn28.Width = 69;
     //
     // GridColumn30
     //
     this.GridColumn30.Caption = "Package Code";
     this.GridColumn30.FieldName = "strPackageCode";
     this.GridColumn30.Name = "GridColumn30";
     this.GridColumn30.OptionsColumn.AllowEdit = false;
     this.GridColumn30.OptionsColumn.AllowFocus = false;
     this.GridColumn30.OptionsFilter.AllowFilter = false;
     this.GridColumn30.Visible = true;
     this.GridColumn30.VisibleIndex = 1;
     this.GridColumn30.Width = 90;
     //
     // GridColumn31
     //
     this.GridColumn31.Caption = "Package Description";
     this.GridColumn31.FieldName = "strDescription";
     this.GridColumn31.Name = "GridColumn31";
     this.GridColumn31.OptionsColumn.AllowEdit = false;
     this.GridColumn31.OptionsColumn.AllowFocus = false;
     this.GridColumn31.OptionsFilter.AllowFilter = false;
     this.GridColumn31.Visible = true;
     this.GridColumn31.VisibleIndex = 2;
     this.GridColumn31.Width = 108;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "List Price";
     this.gridColumn1.FieldName = "mListPrice";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.AllowFocus = false;
     this.gridColumn1.OptionsFilter.AllowFilter = false;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 6;
     //
     // GridColumn44
     //
     this.GridColumn44.Caption = "Expiry Date";
     this.GridColumn44.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn44.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn44.FieldName = "dtExpiryDate";
     this.GridColumn44.Name = "GridColumn44";
     this.GridColumn44.OptionsColumn.AllowEdit = false;
     this.GridColumn44.OptionsColumn.AllowFocus = false;
     this.GridColumn44.OptionsFilter.AllowFilter = false;
     this.GridColumn44.Visible = true;
     this.GridColumn44.VisibleIndex = 5;
     this.GridColumn44.Width = 90;
     //
     // GridColumn32
     //
     this.GridColumn32.Caption = "Purchase Date";
     this.GridColumn32.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn32.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn32.FieldName = "dtPurchaseDate";
     this.GridColumn32.Name = "GridColumn32";
     this.GridColumn32.OptionsColumn.AllowEdit = false;
     this.GridColumn32.OptionsColumn.AllowFocus = false;
     this.GridColumn32.OptionsFilter.AllowFilter = false;
     this.GridColumn32.Width = 84;
     //
     // GridColumn33
     //
     this.GridColumn33.Caption = "Receipt No";
     this.GridColumn33.FieldName = "strReceiptNo";
     this.GridColumn33.Name = "GridColumn33";
     this.GridColumn33.OptionsColumn.AllowEdit = false;
     this.GridColumn33.OptionsColumn.AllowFocus = false;
     this.GridColumn33.OptionsFilter.AllowFilter = false;
     this.GridColumn33.Visible = true;
     this.GridColumn33.VisibleIndex = 3;
     this.GridColumn33.Width = 82;
     //
     // GridColumn35
     //
     this.GridColumn35.Caption = "Start Date";
     this.GridColumn35.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn35.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn35.FieldName = "dtStartDate";
     this.GridColumn35.Name = "GridColumn35";
     this.GridColumn35.OptionsColumn.AllowEdit = false;
     this.GridColumn35.OptionsColumn.AllowFocus = false;
     this.GridColumn35.OptionsFilter.AllowFilter = false;
     this.GridColumn35.Visible = true;
     this.GridColumn35.VisibleIndex = 4;
     this.GridColumn35.Width = 83;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // panelControlTop
     //
     this.panelControlTop.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlTop.Controls.Add(this.label1);
     this.panelControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControlTop.Location = new System.Drawing.Point(0, 6);
     this.panelControlTop.Name = "panelControlTop";
     this.panelControlTop.Size = new System.Drawing.Size(617, 38);
     this.panelControlTop.TabIndex = 6;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(286, 23);
     this.label1.TabIndex = 0;
     this.label1.Text = "Upgrade Package";
     //
     // panelControlMemberPackage
     //
     this.panelControlMemberPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlMemberPackage.Location = new System.Drawing.Point(-5, 0);
     this.panelControlMemberPackage.Name = "panelControlMemberPackage";
     this.panelControlMemberPackage.Size = new System.Drawing.Size(864, 220);
     this.panelControlMemberPackage.TabIndex = 7;
     //
     // splitterControl1
     //
     this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 0);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(617, 6);
     this.splitterControl1.TabIndex = 8;
     this.splitterControl1.TabStop = false;
     //
     // UpdateMemberGiro
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(617, 386);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControlPackage);
     this.Controls.Add(this.panelControlTop);
     this.Controls.Add(this.panelControlMemberPackage);
     this.Controls.Add(this.splitterControl1);
     this.Name = "UpdateMemberGiro";
     this.Text = "Update Member Giro Pkg";
     this.Load += new System.EventHandler(this.v_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).EndInit();
     this.panelControlPackage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.GcMemberGiro)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlTop)).EndInit();
     this.panelControlTop.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).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.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     this.gridControlData = new DevExpress.XtraGrid.GridControl();
     this.tblWarasaAmanatBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.dsRetirementCenter = new RetirementCenter.DataSources.dsRetirementCenter();
     this.gridViewData = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colPersonId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfAId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditDofatSarfAId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.cdDofaatAmanatBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDofatSarfA = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colMMashatId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEditPersonId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.LSMSTBLWarasa = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colMMashatName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colPersonId1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colpersonName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfnumber = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSyndicate1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSubCommitte = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanatrem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoExEditamanatrem = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.colamanatmony = new DevExpress.XtraGrid.Columns.GridColumn();
     this.coldatein = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemDateEditdatein = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.coluserin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemGridLookUpEdituserin = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.usersBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colRealName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnSave = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditSave = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEditDel = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.colaccReview = 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.coluseracc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamantvisa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colsarfcheek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditDofatSarfId = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMSDofatSarfId = new DevExpress.Data.Linq.LinqServerModeSource();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDofatSarfAId1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colamanattypeid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEditamanattypeid = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.LSMScd_amanattype = new DevExpress.Data.Linq.LinqServerModeSource();
     this.coldateReview = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditf2 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.repositoryItemDateEditDMY = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.repositoryItemGridLookUpEditSyndicateId = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSyndicate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCalcEditn0 = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
     this.repositoryItemCheckEditCardType = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.colEDARET = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEDARET1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEdaraMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colnkapaMandopName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.btnNew = new DevExpress.XtraEditors.SimpleButton();
     this.tblWarasaAmanatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.TblWarasaAmanatTableAdapter();
     this.cdDofaatAmanatTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.CdDofaatAmanatTableAdapter();
     this.usersTableAdapter = new RetirementCenter.DataSources.dsRetirementCenterTableAdapters.UsersTableAdapter();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblWarasaAmanatBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditDofatSarfAId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPersonId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditamanatrem)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDofatSarfId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditamanattypeid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCardType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControlData
     //
     this.gridControlData.DataSource = this.tblWarasaAmanatBindingSource;
     this.gridControlData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlData.EmbeddedNavigator.Buttons.Append.Visible = false;
     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.Location = new System.Drawing.Point(2, 21);
     this.gridControlData.MainView = this.gridViewData;
     this.gridControlData.Name = "gridControlData";
     this.gridControlData.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEditSave,
     this.repositoryItemButtonEditDel,
     this.repositoryItemCalcEditf2,
     this.repositoryItemDateEditDMY,
     this.repositoryItemGridLookUpEditSyndicateId,
     this.repositoryItemCalcEditn0,
     this.repositoryItemDateEditdatein,
     this.repositoryItemGridLookUpEdituserin,
     this.repositoryItemMemoExEditamanatrem,
     this.repositoryItemCheckEditCardType,
     this.repositoryItemGridLookUpEditPersonId,
     this.repositoryItemGridLookUpEditDofatSarfAId,
     this.repositoryItemLookUpEditDofatSarfId,
     this.repositoryItemLookUpEditamanattypeid});
     this.gridControlData.Size = new System.Drawing.Size(756, 273);
     this.gridControlData.TabIndex = 0;
     this.gridControlData.UseEmbeddedNavigator = true;
     this.gridControlData.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewData});
     this.gridControlData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ActiveKeyDownEvent);
     //
     // tblWarasaAmanatBindingSource
     //
     this.tblWarasaAmanatBindingSource.DataMember = "TblWarasaAmanat";
     this.tblWarasaAmanatBindingSource.DataSource = this.dsRetirementCenter;
     //
     // dsRetirementCenter
     //
     this.dsRetirementCenter.DataSetName = "dsRetirementCenter";
     this.dsRetirementCenter.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // gridViewData
     //
     this.gridViewData.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colPersonId,
     this.colDofatSarfAId,
     this.colMMashatId,
     this.colamanatrem,
     this.colamanatmony,
     this.coldatein,
     this.coluserin,
     this.gridColumnSave,
     this.gridColumnDelete,
     this.colaccReview,
     this.colestktaa,
     this.colmostahek,
     this.colsefa,
     this.coluseracc,
     this.colamantvisa,
     this.colsarfcheek,
     this.colDofatSarfId,
     this.gridColumn1,
     this.gridColumn3,
     this.colDofatSarfAId1,
     this.colamanattypeid,
     this.coldateReview,
     this.gridColumn4});
     this.gridViewData.GridControl = this.gridControlData;
     this.gridViewData.Name = "gridViewData";
     this.gridViewData.NewItemRowText = "اضغط لاضافة جديد";
     this.gridViewData.OptionsBehavior.ReadOnly = true;
     this.gridViewData.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewData.OptionsView.ColumnAutoWidth = false;
     this.gridViewData.OptionsView.ShowAutoFilterRow = true;
     this.gridViewData.OptionsView.ShowDetailButtons = false;
     this.gridViewData.InvalidRowException += new DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventHandler(this.gridViewData_InvalidRowException);
     //
     // 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;
     //
     // colDofatSarfAId
     //
     this.colDofatSarfAId.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfAId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId.Caption = "الدفعة";
     this.colDofatSarfAId.ColumnEdit = this.repositoryItemGridLookUpEditDofatSarfAId;
     this.colDofatSarfAId.FieldName = "DofatSarfAId";
     this.colDofatSarfAId.Name = "colDofatSarfAId";
     this.colDofatSarfAId.OptionsColumn.ReadOnly = true;
     this.colDofatSarfAId.Visible = true;
     this.colDofatSarfAId.VisibleIndex = 3;
     this.colDofatSarfAId.Width = 128;
     //
     // repositoryItemGridLookUpEditDofatSarfAId
     //
     this.repositoryItemGridLookUpEditDofatSarfAId.AutoHeight = false;
     this.repositoryItemGridLookUpEditDofatSarfAId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditDofatSarfAId.DataSource = this.cdDofaatAmanatBindingSource;
     this.repositoryItemGridLookUpEditDofatSarfAId.DisplayMember = "DofatSarfA";
     this.repositoryItemGridLookUpEditDofatSarfAId.Name = "repositoryItemGridLookUpEditDofatSarfAId";
     this.repositoryItemGridLookUpEditDofatSarfAId.ValueMember = "DofatSarfAId";
     this.repositoryItemGridLookUpEditDofatSarfAId.View = this.gridView3;
     //
     // cdDofaatAmanatBindingSource
     //
     this.cdDofaatAmanatBindingSource.DataMember = "CdDofaatAmanat";
     this.cdDofaatAmanatBindingSource.DataSource = this.dsRetirementCenter;
     //
     // gridView3
     //
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDofatSarfA});
     this.gridView3.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView3.OptionsView.ShowGroupPanel = false;
     //
     // 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 = 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.ColumnEdit = this.repositoryItemGridLookUpEditPersonId;
     this.colMMashatId.FieldName = "PersonId";
     this.colMMashatId.Name = "colMMashatId";
     this.colMMashatId.OptionsColumn.ReadOnly = true;
     this.colMMashatId.Visible = true;
     this.colMMashatId.VisibleIndex = 4;
     this.colMMashatId.Width = 150;
     //
     // repositoryItemGridLookUpEditPersonId
     //
     this.repositoryItemGridLookUpEditPersonId.AutoHeight = false;
     this.repositoryItemGridLookUpEditPersonId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEditPersonId.DataSource = this.LSMSTBLWarasa;
     this.repositoryItemGridLookUpEditPersonId.DisplayMember = "personName";
     this.repositoryItemGridLookUpEditPersonId.Name = "repositoryItemGridLookUpEditPersonId";
     this.repositoryItemGridLookUpEditPersonId.ValueMember = "PersonId";
     this.repositoryItemGridLookUpEditPersonId.View = this.gridView1;
     //
     // LSMSTBLWarasa
     //
     this.LSMSTBLWarasa.ElementType = typeof(RetirementCenter.DataSources.Linq.vTBLWarasa_TBLMashat);
     this.LSMSTBLWarasa.KeyExpression = "PersonId";
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colMMashatName,
     this.colPersonId1,
     this.colpersonName,
     this.colsarfnumber,
     this.colSyndicate1,
     this.colSubCommitte});
     this.gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // 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 = 0;
     //
     // colPersonId1
     //
     this.colPersonId1.AppearanceCell.Options.UseTextOptions = true;
     this.colPersonId1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId1.AppearanceHeader.Options.UseTextOptions = true;
     this.colPersonId1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colPersonId1.Caption = "كود";
     this.colPersonId1.FieldName = "PersonId";
     this.colPersonId1.Name = "colPersonId1";
     this.colPersonId1.Visible = true;
     this.colPersonId1.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;
     //
     // 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 = 3;
     //
     // colSyndicate1
     //
     this.colSyndicate1.AppearanceCell.Options.UseTextOptions = true;
     this.colSyndicate1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate1.AppearanceHeader.Options.UseTextOptions = true;
     this.colSyndicate1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colSyndicate1.Caption = "فرعية";
     this.colSyndicate1.FieldName = "Syndicate";
     this.colSyndicate1.Name = "colSyndicate1";
     this.colSyndicate1.Visible = true;
     this.colSyndicate1.VisibleIndex = 4;
     //
     // 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 = 5;
     //
     // 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.ColumnEdit = this.repositoryItemMemoExEditamanatrem;
     this.colamanatrem.FieldName = "amanatrem";
     this.colamanatrem.Name = "colamanatrem";
     this.colamanatrem.OptionsColumn.ReadOnly = true;
     this.colamanatrem.Visible = true;
     this.colamanatrem.VisibleIndex = 5;
     //
     // repositoryItemMemoExEditamanatrem
     //
     this.repositoryItemMemoExEditamanatrem.AutoHeight = false;
     this.repositoryItemMemoExEditamanatrem.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEditamanatrem.Name = "repositoryItemMemoExEditamanatrem";
     //
     // 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.OptionsColumn.ReadOnly = true;
     this.colamanatmony.Visible = true;
     this.colamanatmony.VisibleIndex = 6;
     this.colamanatmony.Width = 81;
     //
     // 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.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldatein.FieldName = "datein";
     this.coldatein.Name = "coldatein";
     this.coldatein.OptionsColumn.AllowEdit = false;
     this.coldatein.OptionsColumn.ReadOnly = true;
     this.coldatein.Visible = true;
     this.coldatein.VisibleIndex = 11;
     this.coldatein.Width = 94;
     //
     // repositoryItemDateEditdatein
     //
     this.repositoryItemDateEditdatein.AutoHeight = false;
     this.repositoryItemDateEditdatein.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditdatein.DisplayFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.EditFormat.FormatString = "g";
     this.repositoryItemDateEditdatein.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditdatein.Mask.EditMask = "g";
     this.repositoryItemDateEditdatein.Name = "repositoryItemDateEditdatein";
     this.repositoryItemDateEditdatein.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // coluserin
     //
     this.coluserin.AppearanceCell.Options.UseTextOptions = true;
     this.coluserin.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.AppearanceHeader.Options.UseTextOptions = true;
     this.coluserin.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluserin.Caption = "مسئول الادخال";
     this.coluserin.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluserin.FieldName = "userin";
     this.coluserin.Name = "coluserin";
     this.coluserin.OptionsColumn.AllowEdit = false;
     this.coluserin.OptionsColumn.ReadOnly = true;
     this.coluserin.Visible = true;
     this.coluserin.VisibleIndex = 12;
     this.coluserin.Width = 97;
     //
     // repositoryItemGridLookUpEdituserin
     //
     this.repositoryItemGridLookUpEdituserin.AutoHeight = false;
     this.repositoryItemGridLookUpEdituserin.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdituserin.DataSource = this.usersBindingSource;
     this.repositoryItemGridLookUpEdituserin.DisplayMember = "RealName";
     this.repositoryItemGridLookUpEdituserin.Name = "repositoryItemGridLookUpEdituserin";
     this.repositoryItemGridLookUpEdituserin.NullText = "";
     this.repositoryItemGridLookUpEdituserin.ValueMember = "UserID";
     this.repositoryItemGridLookUpEdituserin.View = this.gridView2;
     //
     // usersBindingSource
     //
     this.usersBindingSource.DataMember = "Users";
     this.usersBindingSource.DataSource = this.dsRetirementCenter;
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colRealName});
     this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // colRealName
     //
     this.colRealName.FieldName = "RealName";
     this.colRealName.Name = "colRealName";
     this.colRealName.Visible = true;
     this.colRealName.VisibleIndex = 0;
     //
     // gridColumnSave
     //
     this.gridColumnSave.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumnSave.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumnSave.Caption = "تعديل";
     this.gridColumnSave.ColumnEdit = this.repositoryItemButtonEditSave;
     this.gridColumnSave.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnSave.Name = "gridColumnSave";
     this.gridColumnSave.Visible = true;
     this.gridColumnSave.VisibleIndex = 21;
     this.gridColumnSave.Width = 55;
     //
     // repositoryItemButtonEditSave
     //
     this.repositoryItemButtonEditSave.AutoHeight = false;
     this.repositoryItemButtonEditSave.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEditSave.Name = "repositoryItemButtonEditSave";
     this.repositoryItemButtonEditSave.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditSave.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditSave_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.repositoryItemButtonEditDel;
     this.gridColumnDelete.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridColumnDelete.Name = "gridColumnDelete";
     this.gridColumnDelete.Visible = true;
     this.gridColumnDelete.VisibleIndex = 22;
     this.gridColumnDelete.Width = 51;
     //
     // repositoryItemButtonEditDel
     //
     this.repositoryItemButtonEditDel.AutoHeight = false;
     this.repositoryItemButtonEditDel.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEditDel.Name = "repositoryItemButtonEditDel";
     this.repositoryItemButtonEditDel.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repositoryItemButtonEditDel.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repositoryItemButtonEditDel_ButtonClick);
     //
     // 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.OptionsColumn.ReadOnly = true;
     this.colaccReview.Visible = true;
     this.colaccReview.VisibleIndex = 7;
     this.colaccReview.Width = 100;
     //
     // 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.OptionsColumn.ReadOnly = true;
     this.colestktaa.Visible = true;
     this.colestktaa.VisibleIndex = 8;
     //
     // 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.OptionsColumn.ReadOnly = true;
     this.colmostahek.Visible = true;
     this.colmostahek.VisibleIndex = 9;
     //
     // 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.OptionsColumn.ReadOnly = true;
     this.colsefa.Visible = true;
     this.colsefa.VisibleIndex = 10;
     //
     // coluseracc
     //
     this.coluseracc.AppearanceCell.Options.UseTextOptions = true;
     this.coluseracc.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluseracc.AppearanceHeader.Options.UseTextOptions = true;
     this.coluseracc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.coluseracc.Caption = "مسئول الادخال (حسابات)";
     this.coluseracc.ColumnEdit = this.repositoryItemGridLookUpEdituserin;
     this.coluseracc.FieldName = "useracc";
     this.coluseracc.Name = "coluseracc";
     this.coluseracc.OptionsColumn.ReadOnly = true;
     this.coluseracc.Visible = true;
     this.coluseracc.VisibleIndex = 13;
     this.coluseracc.Width = 136;
     //
     // 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 = 15;
     //
     // 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 = 16;
     this.colsarfcheek.Width = 77;
     //
     // colDofatSarfId
     //
     this.colDofatSarfId.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfId.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfId.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfId.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfId.Caption = "الدفعة المستحقه";
     this.colDofatSarfId.ColumnEdit = this.repositoryItemLookUpEditDofatSarfId;
     this.colDofatSarfId.FieldName = "DofatSarfId";
     this.colDofatSarfId.Name = "colDofatSarfId";
     this.colDofatSarfId.Visible = true;
     this.colDofatSarfId.VisibleIndex = 17;
     this.colDofatSarfId.Width = 99;
     //
     // repositoryItemLookUpEditDofatSarfId
     //
     this.repositoryItemLookUpEditDofatSarfId.AutoHeight = false;
     this.repositoryItemLookUpEditDofatSarfId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditDofatSarfId.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("DofatSarf", "الاسم", 61, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.repositoryItemLookUpEditDofatSarfId.DataSource = this.LSMSDofatSarfId;
     this.repositoryItemLookUpEditDofatSarfId.DisplayMember = "DofatSarf";
     this.repositoryItemLookUpEditDofatSarfId.Name = "repositoryItemLookUpEditDofatSarfId";
     this.repositoryItemLookUpEditDofatSarfId.NullText = "";
     this.repositoryItemLookUpEditDofatSarfId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditDofatSarfId.ValueMember = "DofatSarfId";
     //
     // LSMSDofatSarfId
     //
     this.LSMSDofatSarfId.ElementType = typeof(RetirementCenter.DataSources.Linq.TBLDofatSarf);
     this.LSMSDofatSarfId.KeyExpression = "[DofatSarfId]";
     //
     // 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 = "sarfnumber";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 18;
     //
     // 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 = "MMashatId";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 19;
     //
     // colDofatSarfAId1
     //
     this.colDofatSarfAId1.AppearanceCell.Options.UseTextOptions = true;
     this.colDofatSarfAId1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId1.AppearanceHeader.Options.UseTextOptions = true;
     this.colDofatSarfAId1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colDofatSarfAId1.Caption = "كود الدفعة";
     this.colDofatSarfAId1.FieldName = "DofatSarfAId";
     this.colDofatSarfAId1.Name = "colDofatSarfAId1";
     this.colDofatSarfAId1.Visible = true;
     this.colDofatSarfAId1.VisibleIndex = 2;
     //
     // colamanattypeid
     //
     this.colamanattypeid.AppearanceCell.Options.UseTextOptions = true;
     this.colamanattypeid.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanattypeid.AppearanceHeader.Options.UseTextOptions = true;
     this.colamanattypeid.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colamanattypeid.Caption = "نوع الامانات";
     this.colamanattypeid.ColumnEdit = this.repositoryItemLookUpEditamanattypeid;
     this.colamanattypeid.FieldName = "amanattypeid";
     this.colamanattypeid.Name = "colamanattypeid";
     this.colamanattypeid.Visible = true;
     this.colamanattypeid.VisibleIndex = 20;
     //
     // repositoryItemLookUpEditamanattypeid
     //
     this.repositoryItemLookUpEditamanattypeid.AutoHeight = false;
     this.repositoryItemLookUpEditamanattypeid.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEditamanattypeid.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("amanattype", "الاسم", 68, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)});
     this.repositoryItemLookUpEditamanattypeid.DataSource = this.LSMScd_amanattype;
     this.repositoryItemLookUpEditamanattypeid.DisplayMember = "amanattype";
     this.repositoryItemLookUpEditamanattypeid.Name = "repositoryItemLookUpEditamanattypeid";
     this.repositoryItemLookUpEditamanattypeid.NullText = "";
     this.repositoryItemLookUpEditamanattypeid.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemLookUpEditamanattypeid.ValueMember = "amanattypeid";
     //
     // LSMScd_amanattype
     //
     this.LSMScd_amanattype.ElementType = typeof(RetirementCenter.DataSources.Linq.cd_amanattype);
     this.LSMScd_amanattype.KeyExpression = "[amanattypeid]";
     //
     // 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.ColumnEdit = this.repositoryItemDateEditdatein;
     this.coldateReview.FieldName = "dateReview";
     this.coldateReview.Name = "coldateReview";
     this.coldateReview.Visible = true;
     this.coldateReview.VisibleIndex = 14;
     this.coldateReview.Width = 116;
     //
     // repositoryItemCalcEditf2
     //
     this.repositoryItemCalcEditf2.AutoHeight = false;
     this.repositoryItemCalcEditf2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditf2.DisplayFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.EditFormat.FormatString = "f2";
     this.repositoryItemCalcEditf2.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditf2.Mask.EditMask = "f2";
     this.repositoryItemCalcEditf2.Name = "repositoryItemCalcEditf2";
     //
     // repositoryItemDateEditDMY
     //
     this.repositoryItemDateEditDMY.AutoHeight = false;
     this.repositoryItemDateEditDMY.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemDateEditDMY.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.EditFormat.FormatString = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemDateEditDMY.Mask.EditMask = "dd/MM/yyyy";
     this.repositoryItemDateEditDMY.Name = "repositoryItemDateEditDMY";
     this.repositoryItemDateEditDMY.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     //
     // repositoryItemGridLookUpEditSyndicateId
     //
     this.repositoryItemGridLookUpEditSyndicateId.AutoHeight = false;
     this.repositoryItemGridLookUpEditSyndicateId.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.repositoryItemGridLookUpEditSyndicateId.DisplayMember = "Syndicate";
     this.repositoryItemGridLookUpEditSyndicateId.Name = "repositoryItemGridLookUpEditSyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.NullText = "";
     this.repositoryItemGridLookUpEditSyndicateId.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.repositoryItemGridLookUpEditSyndicateId.ValueMember = "SyndicateId";
     this.repositoryItemGridLookUpEditSyndicateId.View = this.repositoryItemGridLookUpEdit1View;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSyndicate});
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // 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 = 0;
     //
     // repositoryItemCalcEditn0
     //
     this.repositoryItemCalcEditn0.AutoHeight = false;
     this.repositoryItemCalcEditn0.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemCalcEditn0.DisplayFormat.FormatString = "n0";
     this.repositoryItemCalcEditn0.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn0.EditFormat.FormatString = "n0";
     this.repositoryItemCalcEditn0.EditFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.repositoryItemCalcEditn0.Mask.EditMask = "n0";
     this.repositoryItemCalcEditn0.Name = "repositoryItemCalcEditn0";
     //
     // repositoryItemCheckEditCardType
     //
     this.repositoryItemCheckEditCardType.AutoHeight = false;
     this.repositoryItemCheckEditCardType.Name = "repositoryItemCheckEditCardType";
     //
     // colEDARET
     //
     this.colEDARET.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET.Caption = "اسم الاداره";
     this.colEDARET.FieldName = "EDARET";
     this.colEDARET.Name = "colEDARET";
     this.colEDARET.Visible = true;
     this.colEDARET.VisibleIndex = 0;
     //
     // colEDARET1
     //
     this.colEDARET1.AppearanceCell.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.AppearanceHeader.Options.UseTextOptions = true;
     this.colEDARET1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEDARET1.Caption = "الادارة";
     this.colEDARET1.FieldName = "EDARET";
     this.colEDARET1.Name = "colEDARET1";
     this.colEDARET1.Visible = true;
     this.colEDARET1.VisibleIndex = 0;
     //
     // colEdaraMandopName
     //
     this.colEdaraMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colEdaraMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colEdaraMandopName.Caption = "الاسم";
     this.colEdaraMandopName.FieldName = "EdaraMandopName";
     this.colEdaraMandopName.Name = "colEdaraMandopName";
     this.colEdaraMandopName.Visible = true;
     this.colEdaraMandopName.VisibleIndex = 0;
     //
     // colnkapaMandopName
     //
     this.colnkapaMandopName.AppearanceCell.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.AppearanceHeader.Options.UseTextOptions = true;
     this.colnkapaMandopName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.colnkapaMandopName.Caption = "الاسم";
     this.colnkapaMandopName.FieldName = "nkapaMandopName";
     this.colnkapaMandopName.Name = "colnkapaMandopName";
     this.colnkapaMandopName.Visible = true;
     this.colnkapaMandopName.VisibleIndex = 0;
     //
     // 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 = "MonthName";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // groupControl1
     //
     this.groupControl1.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.groupControl1.Controls.Add(this.gridControlData);
     this.groupControl1.Location = new System.Drawing.Point(12, 12);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(760, 296);
     this.groupControl1.TabIndex = 1;
     //
     // groupControl2
     //
     this.groupControl2.AllowTouchScroll = true;
     this.groupControl2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl2.Controls.Add(this.btnNew);
     this.groupControl2.Location = new System.Drawing.Point(12, 314);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(760, 62);
     this.groupControl2.TabIndex = 2;
     //
     // btnNew
     //
     this.btnNew.Anchor = System.Windows.Forms.AnchorStyles.Right;
     this.btnNew.Image = global::RetirementCenter.Properties.Resources.Add;
     this.btnNew.Location = new System.Drawing.Point(555, 23);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(200, 35);
     this.btnNew.TabIndex = 0;
     this.btnNew.Text = "جديد";
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // tblWarasaAmanatTableAdapter
     //
     this.tblWarasaAmanatTableAdapter.ClearBeforeFill = true;
     //
     // cdDofaatAmanatTableAdapter
     //
     this.cdDofaatAmanatTableAdapter.ClearBeforeFill = true;
     //
     // usersTableAdapter
     //
     this.usersTableAdapter.ClearBeforeFill = true;
     //
     // 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 = "كود 60";
     this.gridColumn4.FieldName = "code60";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 0;
     //
     // TblWarasaAmanatFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(784, 388);
     this.Controls.Add(this.groupControl2);
     this.Controls.Add(this.groupControl1);
     this.Name = "TblWarasaAmanatFrm";
     this.Text = "امانات الورثة";
     this.Load += new System.EventHandler(this.FormFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tblWarasaAmanatBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsRetirementCenter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewData)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditDofatSarfAId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cdDofaatAmanatBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditPersonId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSTBLWarasa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEditamanatrem)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditdatein)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdituserin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usersBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditSave)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEditDel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditDofatSarfId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMSDofatSarfId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditamanattypeid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LSMScd_amanattype)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditf2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEditDMY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEditSyndicateId)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCalcEditn0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEditCardType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #56
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.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.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();
     ((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();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // lkpEdtPromotionCode
     //
     this.lkpEdtPromotionCode.EditValue = "";
     this.lkpEdtPromotionCode.Location = new System.Drawing.Point(136, 10);
     this.lkpEdtPromotionCode.Name = "lkpEdtPromotionCode";
     //
     // lkpEdtPromotionCode.Properties
     //
     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(274, 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, ((System.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;
     this.panelControl1.Text = "panelControl1";
     //
     // 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;
     this.panelControl2.Text = "panelControl2";
     //
     // simpleButtonCancel
     //
     this.simpleButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButtonCancel.Location = new System.Drawing.Point(360, 10);
     this.simpleButtonCancel.Name = "simpleButtonCancel";
     this.simpleButtonCancel.TabIndex = 12;
     this.simpleButtonCancel.Text = "Cancel";
     //
     // simpleButtonOK
     //
     this.simpleButtonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK.Location = new System.Drawing.Point(276, 10);
     this.simpleButtonOK.Name = "simpleButtonOK";
     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;
     this.panelControl3.Text = "panelControl3";
     //
     // 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, ((System.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});
     this.xtraTabControl1.Text = "xtraTabControl1";
     //
     // 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, ((System.Byte)(134)));
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(436, 184);
     this.xtraTabPage1.Text = "Freebie-Package";
     //
     // gridControl1
     //
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl1.EmbeddedNavigator
     //
     this.gridControl1.EmbeddedNavigator.Name = "";
     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.gridControl1.Size = new System.Drawing.Size(436, 184);
     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.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     //
     // 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;
     //
     // 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, ((System.Byte)(134)));
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(436, 184);
     this.xtraTabPage2.Text = "Freebie-Product";
     //
     // gridControl2
     //
     this.gridControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     //
     // gridControl2.EmbeddedNavigator
     //
     this.gridControl2.EmbeddedNavigator.Name = "";
     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.gridControl2.Size = new System.Drawing.Size(436, 184);
     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.gridView2.GridControl = this.gridControl2;
     this.gridView2.Name = "gridView2";
     //
     // 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;
     //
     // 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();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.treeList1);
     this.panelControl1.Controls.Add(this.checkEdit1);
     this.panelControl1.Controls.Add(this.simpleButton2);
     this.panelControl1.Controls.Add(this.simpleButton1);
     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(462, 344);
     this.panelControl1.TabIndex = 0;
     this.panelControl1.Text = "panelControl1";
     //
     // treeList1
     //
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn2,
     this.treeListColumn3});
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Top;
     this.treeList1.KeyFieldName = "A";
     this.treeList1.Location = new System.Drawing.Point(3, 3);
     this.treeList1.Name = "treeList1";
     this.treeList1.ParentFieldName = "D";
     this.treeList1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.treeList1.Size = new System.Drawing.Size(456, 300);
     this.treeList1.TabIndex = 3;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "名称";
     this.treeListColumn2.FieldName = "B";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.OptionsColumn.AllowEdit = false;
     this.treeListColumn2.VisibleIndex = 0;
     this.treeListColumn2.Width = 96;
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "是否选择";
     this.treeListColumn3.ColumnEdit = this.repositoryItemCheckEdit1;
     this.treeListColumn3.FieldName = "C";
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.VisibleIndex = 1;
     this.treeListColumn3.Width = 96;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(12, 309);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "全选";
     this.checkEdit1.Size = new System.Drawing.Size(75, 19);
     this.checkEdit1.TabIndex = 2;
     this.checkEdit1.Visible = false;
     this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(358, 309);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(66, 23);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text = "取消";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(277, 309);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(66, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text = "确定";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // FrmPicTreeSelect
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(462, 344);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmPicTreeSelect";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "选择图层";
     this.Load += new System.EventHandler(this.FrmPicTypeSelect_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_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);
 }
 /// <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.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.panelControlMemberPackage = new DevExpress.XtraEditors.PanelControl();
     this.GridControlMemberPackage = new DevExpress.XtraGrid.GridControl();
     this.gridViewMemberPackage = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     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.GridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colChecked = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.panelControlPackage = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButtonOK1 = new DevExpress.XtraEditors.SimpleButton();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).BeginInit();
     this.panelControlPackage.SuspendLayout();
     this.SuspendLayout();
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     this.repositoryItemCheckEdit2.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.repositoryItemCheckEdit2.ValueGrayed = "";
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // panelControlMemberPackage
     //
     this.panelControlMemberPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlMemberPackage.Location = new System.Drawing.Point(0, 0);
     this.panelControlMemberPackage.Name = "panelControlMemberPackage";
     this.panelControlMemberPackage.Size = new System.Drawing.Size(864, 220);
     this.panelControlMemberPackage.TabIndex = 1;
     //
     // GridControlMemberPackage
     //
     this.GridControlMemberPackage.Location = new System.Drawing.Point(-2, 13);
     this.GridControlMemberPackage.LookAndFeel.UseDefaultLookAndFeel = false;
     this.GridControlMemberPackage.MainView = this.gridViewMemberPackage;
     this.GridControlMemberPackage.Name = "GridControlMemberPackage";
     this.GridControlMemberPackage.Size = new System.Drawing.Size(818, 229);
     this.GridControlMemberPackage.TabIndex = 8;
     this.GridControlMemberPackage.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMemberPackage});
     this.GridControlMemberPackage.Click += new System.EventHandler(this.GridControlMemberPackage_Click);
     //
     // gridViewMemberPackage
     //
     this.gridViewMemberPackage.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.GridColumn28,
     this.GridColumn30,
     this.GridColumn31,
     this.GridColumn32,
     this.GridColumn33,
     this.GridColumn35,
     this.GridColumn44,
     this.GridColumn45,
     this.GridColumn50,
     this.GridColumn49,
     this.gridColumn14,
     this.GridColumn34,
     this.gridColumn13,
     this.colChecked,
     this.gridColumn2});
     this.gridViewMemberPackage.GridControl = this.GridControlMemberPackage;
     this.gridViewMemberPackage.GroupFormat = "";
     this.gridViewMemberPackage.HorzScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Always;
     this.gridViewMemberPackage.Name = "gridViewMemberPackage";
     this.gridViewMemberPackage.OptionsCustomization.AllowGroup = false;
     this.gridViewMemberPackage.OptionsCustomization.AllowSort = false;
     this.gridViewMemberPackage.OptionsView.ColumnAutoWidth = false;
     this.gridViewMemberPackage.OptionsView.ShowGroupPanel = false;
     this.gridViewMemberPackage.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridViewMemberPackage_FocusedRowChanged);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "Type";
     this.gridColumn1.FieldName = "strPackageType";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 1;
     this.gridColumn1.Width = 100;
     //
     // GridColumn28
     //
     this.GridColumn28.Caption = "Package ID";
     this.GridColumn28.FieldName = "nPackageID";
     this.GridColumn28.Name = "GridColumn28";
     this.GridColumn28.OptionsColumn.AllowEdit = false;
     this.GridColumn28.OptionsColumn.AllowFocus = false;
     this.GridColumn28.OptionsFilter.AllowFilter = false;
     this.GridColumn28.Visible = true;
     this.GridColumn28.VisibleIndex = 2;
     this.GridColumn28.Width = 80;
     //
     // GridColumn30
     //
     this.GridColumn30.Caption = "Package Code";
     this.GridColumn30.FieldName = "strPackageCode";
     this.GridColumn30.Name = "GridColumn30";
     this.GridColumn30.OptionsColumn.AllowEdit = false;
     this.GridColumn30.OptionsColumn.AllowFocus = false;
     this.GridColumn30.OptionsFilter.AllowFilter = false;
     this.GridColumn30.Visible = true;
     this.GridColumn30.VisibleIndex = 3;
     this.GridColumn30.Width = 90;
     //
     // GridColumn31
     //
     this.GridColumn31.Caption = "Package Description";
     this.GridColumn31.FieldName = "strDescription";
     this.GridColumn31.Name = "GridColumn31";
     this.GridColumn31.OptionsColumn.AllowEdit = false;
     this.GridColumn31.OptionsColumn.AllowFocus = false;
     this.GridColumn31.OptionsFilter.AllowFilter = false;
     this.GridColumn31.Visible = true;
     this.GridColumn31.VisibleIndex = 4;
     this.GridColumn31.Width = 280;
     //
     // GridColumn32
     //
     this.GridColumn32.Caption = "Purchase Date";
     this.GridColumn32.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn32.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn32.FieldName = "dtPurchaseDate";
     this.GridColumn32.Name = "GridColumn32";
     this.GridColumn32.OptionsColumn.AllowEdit = false;
     this.GridColumn32.OptionsColumn.AllowFocus = false;
     this.GridColumn32.OptionsFilter.AllowFilter = false;
     this.GridColumn32.Width = 84;
     //
     // GridColumn33
     //
     this.GridColumn33.Caption = "Receipt No";
     this.GridColumn33.FieldName = "strReceiptNo";
     this.GridColumn33.Name = "GridColumn33";
     this.GridColumn33.OptionsColumn.AllowEdit = false;
     this.GridColumn33.OptionsColumn.AllowFocus = false;
     this.GridColumn33.OptionsFilter.AllowFilter = false;
     this.GridColumn33.Width = 82;
     //
     // GridColumn35
     //
     this.GridColumn35.Caption = "Start Date";
     this.GridColumn35.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn35.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn35.FieldName = "dtStartDate";
     this.GridColumn35.Name = "GridColumn35";
     this.GridColumn35.OptionsColumn.AllowEdit = false;
     this.GridColumn35.OptionsColumn.AllowFocus = false;
     this.GridColumn35.OptionsFilter.AllowFilter = false;
     this.GridColumn35.Width = 73;
     //
     // GridColumn44
     //
     this.GridColumn44.Caption = "Expiry Date";
     this.GridColumn44.DisplayFormat.FormatString = "dd/MM/yyyy";
     this.GridColumn44.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.GridColumn44.FieldName = "dtExpiryDate";
     this.GridColumn44.Name = "GridColumn44";
     this.GridColumn44.OptionsColumn.AllowEdit = false;
     this.GridColumn44.OptionsColumn.AllowFocus = false;
     this.GridColumn44.OptionsFilter.AllowFilter = false;
     this.GridColumn44.Width = 104;
     //
     // GridColumn45
     //
     this.GridColumn45.Caption = "Free Indicator";
     this.GridColumn45.ColumnEdit = this.repositoryItemCheckEdit1;
     this.GridColumn45.FieldName = "fFree";
     this.GridColumn45.Name = "GridColumn45";
     this.GridColumn45.OptionsColumn.AllowEdit = false;
     this.GridColumn45.OptionsColumn.AllowFocus = false;
     this.GridColumn45.OptionsFilter.AllowFilter = false;
     this.GridColumn45.Width = 110;
     //
     // GridColumn50
     //
     this.GridColumn50.Caption = "Usage Balance Amount";
     this.GridColumn50.DisplayFormat.FormatString = "{0:C}";
     this.GridColumn50.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.GridColumn50.FieldName = "UsageBalAmt";
     this.GridColumn50.Name = "GridColumn50";
     this.GridColumn50.OptionsColumn.AllowEdit = false;
     this.GridColumn50.OptionsColumn.AllowFocus = false;
     this.GridColumn50.OptionsFilter.AllowFilter = false;
     this.GridColumn50.Visible = true;
     this.GridColumn50.VisibleIndex = 5;
     this.GridColumn50.Width = 134;
     //
     // GridColumn49
     //
     this.GridColumn49.Caption = "Remark";
     this.GridColumn49.FieldName = "strRemarks";
     this.GridColumn49.Name = "GridColumn49";
     this.GridColumn49.OptionsColumn.AllowEdit = false;
     this.GridColumn49.OptionsColumn.AllowFocus = false;
     this.GridColumn49.OptionsFilter.AllowFilter = false;
     this.GridColumn49.Visible = true;
     this.GridColumn49.VisibleIndex = 6;
     this.GridColumn49.Width = 70;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "Paid Amount";
     this.gridColumn14.DisplayFormat.FormatString = "{0:C}";
     this.gridColumn14.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn14.FieldName = "PaidAmt";
     this.gridColumn14.Name = "gridColumn14";
     this.gridColumn14.OptionsColumn.AllowEdit = false;
     this.gridColumn14.OptionsColumn.AllowFocus = false;
     this.gridColumn14.OptionsFilter.AllowFilter = false;
     this.gridColumn14.Width = 90;
     //
     // GridColumn34
     //
     this.GridColumn34.Caption = "Balance";
     this.GridColumn34.FieldName = "strBalNew";
     this.GridColumn34.Name = "GridColumn34";
     this.GridColumn34.OptionsColumn.AllowEdit = false;
     this.GridColumn34.OptionsColumn.AllowFocus = false;
     this.GridColumn34.OptionsFilter.AllowFilter = false;
     this.GridColumn34.Visible = true;
     this.GridColumn34.VisibleIndex = 7;
     this.GridColumn34.Width = 60;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "Unit Price";
     this.gridColumn13.DisplayFormat.FormatString = "{0:C}";
     this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Custom;
     this.gridColumn13.FieldName = "mBaseUnitPrice";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.OptionsColumn.AllowEdit = false;
     this.gridColumn13.OptionsColumn.AllowFocus = false;
     this.gridColumn13.OptionsFilter.AllowFilter = false;
     this.gridColumn13.Width = 57;
     //
     // colChecked
     //
     this.colChecked.ColumnEdit = this.repositoryItemCheckEdit2;
     this.colChecked.FieldName = "Checked";
     this.colChecked.Name = "colChecked";
     this.colChecked.Visible = true;
     this.colChecked.VisibleIndex = 0;
     this.colChecked.Width = 34;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Calculation";
     this.gridColumn2.FieldName = "strCalculation";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 8;
     //
     // splitterControl1
     //
     this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 0);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(979, 6);
     this.splitterControl1.TabIndex = 2;
     this.splitterControl1.TabStop = false;
     //
     // panelControlPackage
     //
     this.panelControlPackage.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControlPackage.Controls.Add(this.simpleButton2);
     this.panelControlPackage.Controls.Add(this.simpleButtonOK1);
     this.panelControlPackage.Controls.Add(this.GridControlMemberPackage);
     this.panelControlPackage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControlPackage.Location = new System.Drawing.Point(0, 6);
     this.panelControlPackage.Name = "panelControlPackage";
     this.panelControlPackage.Size = new System.Drawing.Size(979, 316);
     this.panelControlPackage.TabIndex = 4;
     //
     // simpleButton2
     //
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.simpleButton2.Location = new System.Drawing.Point(644, 247);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 12;
     this.simpleButton2.Text = "Cancel";
     //
     // simpleButtonOK1
     //
     this.simpleButtonOK1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.simpleButtonOK1.Location = new System.Drawing.Point(557, 247);
     this.simpleButtonOK1.Name = "simpleButtonOK1";
     this.simpleButtonOK1.Size = new System.Drawing.Size(75, 23);
     this.simpleButtonOK1.TabIndex = 11;
     this.simpleButtonOK1.Text = "OK";
     this.simpleButtonOK1.Click += new System.EventHandler(this.simpleButtonOK_Click);
     //
     // FormUpgradePackageNew
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(979, 322);
     this.Controls.Add(this.panelControlPackage);
     this.Controls.Add(this.panelControlMemberPackage);
     this.Controls.Add(this.splitterControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormUpgradePackageNew";
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Upgrade Selection";
     this.Load += new System.EventHandler(this.FormUpgradePackage_Load);
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GridControlMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMemberPackage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControlPackage)).EndInit();
     this.panelControlPackage.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemple #60
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager            resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProcesoCambioRazonSocialAgregarProducto));
     DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.btnDeseleccionarFilas = new System.Windows.Forms.Button();
     this.btnSeleccionarFilas   = new System.Windows.Forms.Button();
     this.btnSeleccionar        = new System.Windows.Forms.Button();
     this.dgvEquipos            = new DevExpress.XtraGrid.GridControl();
     this.vista           = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.btnCancelar     = new System.Windows.Forms.Button();
     this.Seleccionar     = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CodigoEquipo    = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Marca           = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Modelo          = new DevExpress.XtraGrid.Columns.GridColumn();
     this.IdLC            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.IdSalidaDetalle = new DevExpress.XtraGrid.Columns.GridColumn();
     this.IdSucursal      = new DevExpress.XtraGrid.Columns.GridColumn();
     this.IdSalida        = new DevExpress.XtraGrid.Columns.GridColumn();
     this.GuiaSalida      = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dgvEquipos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.vista)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // btnDeseleccionarFilas
     //
     this.btnDeseleccionarFilas.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDeseleccionarFilas.AutoSize  = true;
     this.btnDeseleccionarFilas.BackColor = System.Drawing.Color.Transparent;
     this.btnDeseleccionarFilas.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.btnDeseleccionarFilas.FlatAppearance.BorderSize = 0;
     this.btnDeseleccionarFilas.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.btnDeseleccionarFilas.Font       = new System.Drawing.Font("Century Gothic", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDeseleccionarFilas.Image      = ((System.Drawing.Image)(resources.GetObject("btnDeseleccionarFilas.Image")));
     this.btnDeseleccionarFilas.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnDeseleccionarFilas.Location   = new System.Drawing.Point(144, 12);
     this.btnDeseleccionarFilas.Name       = "btnDeseleccionarFilas";
     this.btnDeseleccionarFilas.Size       = new System.Drawing.Size(144, 50);
     this.btnDeseleccionarFilas.TabIndex   = 150;
     this.btnDeseleccionarFilas.Text       = "Deseleccionar Filas";
     this.btnDeseleccionarFilas.TextAlign  = System.Drawing.ContentAlignment.BottomCenter;
     this.btnDeseleccionarFilas.UseVisualStyleBackColor = false;
     this.btnDeseleccionarFilas.Click += new System.EventHandler(this.btnDeseleccionarFilas_Click);
     //
     // btnSeleccionarFilas
     //
     this.btnSeleccionarFilas.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSeleccionarFilas.AutoSize  = true;
     this.btnSeleccionarFilas.BackColor = System.Drawing.Color.Transparent;
     this.btnSeleccionarFilas.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.btnSeleccionarFilas.FlatAppearance.BorderSize = 0;
     this.btnSeleccionarFilas.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.btnSeleccionarFilas.Font       = new System.Drawing.Font("Century Gothic", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSeleccionarFilas.Image      = ((System.Drawing.Image)(resources.GetObject("btnSeleccionarFilas.Image")));
     this.btnSeleccionarFilas.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnSeleccionarFilas.Location   = new System.Drawing.Point(22, 12);
     this.btnSeleccionarFilas.Name       = "btnSeleccionarFilas";
     this.btnSeleccionarFilas.Size       = new System.Drawing.Size(128, 50);
     this.btnSeleccionarFilas.TabIndex   = 149;
     this.btnSeleccionarFilas.Text       = "Seleccionar Filas";
     this.btnSeleccionarFilas.TextAlign  = System.Drawing.ContentAlignment.BottomCenter;
     this.btnSeleccionarFilas.UseVisualStyleBackColor = false;
     this.btnSeleccionarFilas.Click += new System.EventHandler(this.btnSeleccionarFilas_Click);
     //
     // btnSeleccionar
     //
     this.btnSeleccionar.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSeleccionar.AutoSize  = true;
     this.btnSeleccionar.BackColor = System.Drawing.Color.Transparent;
     this.btnSeleccionar.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.btnSeleccionar.FlatAppearance.BorderSize = 0;
     this.btnSeleccionar.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.btnSeleccionar.Font       = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSeleccionar.Image      = ((System.Drawing.Image)(resources.GetObject("btnSeleccionar.Image")));
     this.btnSeleccionar.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnSeleccionar.Location   = new System.Drawing.Point(498, 414);
     this.btnSeleccionar.Name       = "btnSeleccionar";
     this.btnSeleccionar.Size       = new System.Drawing.Size(111, 67);
     this.btnSeleccionar.TabIndex   = 148;
     this.btnSeleccionar.Text       = "Seleccionar";
     this.btnSeleccionar.TextAlign  = System.Drawing.ContentAlignment.BottomCenter;
     this.btnSeleccionar.UseVisualStyleBackColor = false;
     this.btnSeleccionar.Click += new System.EventHandler(this.btnSeleccionar_Click);
     //
     // dgvEquipos
     //
     this.dgvEquipos.Location = new System.Drawing.Point(22, 77);
     this.dgvEquipos.MainView = this.vista;
     this.dgvEquipos.Name     = "dgvEquipos";
     this.dgvEquipos.Size     = new System.Drawing.Size(596, 321);
     this.dgvEquipos.TabIndex = 147;
     this.dgvEquipos.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.vista
     });
     //
     // vista
     //
     this.vista.Appearance.HeaderPanel.Font                   = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.vista.Appearance.HeaderPanel.ForeColor              = System.Drawing.Color.Black;
     this.vista.Appearance.HeaderPanel.Options.UseFont        = true;
     this.vista.Appearance.HeaderPanel.Options.UseForeColor   = true;
     this.vista.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.vista.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.vista.Appearance.HeaderPanel.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
     this.vista.Appearance.Row.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.vista.Appearance.Row.ForeColor            = System.Drawing.Color.Black;
     this.vista.Appearance.Row.Options.UseFont      = true;
     this.vista.Appearance.Row.Options.UseForeColor = true;
     this.vista.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.Seleccionar,
         this.CodigoEquipo,
         this.Marca,
         this.Modelo,
         this.IdSalida,
         this.IdSalidaDetalle,
         this.IdSucursal,
         this.GuiaSalida,
         this.IdLC
     });
     this.vista.GridControl = this.dgvEquipos;
     this.vista.Name        = "vista";
     this.vista.OptionsCustomization.AllowColumnMoving = false;
     this.vista.OptionsCustomization.AllowGroup        = false;
     this.vista.OptionsDetail.EnableMasterViewMode     = false;
     this.vista.OptionsMenu.EnableColumnMenu           = false;
     this.vista.OptionsSelection.MultiSelect           = true;
     this.vista.OptionsView.ColumnAutoWidth            = false;
     this.vista.OptionsView.ColumnHeaderAutoHeight     = DevExpress.Utils.DefaultBoolean.True;
     this.vista.OptionsView.ShowAutoFilterRow          = true;
     this.vista.OptionsView.ShowGroupPanel             = false;
     this.vista.OptionsView.ShowIndicator = false;
     //
     // btnCancelar
     //
     this.btnCancelar.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancelar.AutoSize = true;
     this.btnCancelar.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.btnCancelar.FlatAppearance.BorderSize = 0;
     this.btnCancelar.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.btnCancelar.Font       = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCancelar.Image      = ((System.Drawing.Image)(resources.GetObject("btnCancelar.Image")));
     this.btnCancelar.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnCancelar.Location   = new System.Drawing.Point(400, 416);
     this.btnCancelar.Name       = "btnCancelar";
     this.btnCancelar.Size       = new System.Drawing.Size(92, 65);
     this.btnCancelar.TabIndex   = 146;
     this.btnCancelar.Text       = "Cancelar";
     this.btnCancelar.TextAlign  = System.Drawing.ContentAlignment.BottomCenter;
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // Seleccionar
     //
     this.Seleccionar.Caption            = "Seleccionar";
     repositoryItemCheckEdit1.AutoHeight = false;
     repositoryItemCheckEdit1.Name       = "repositoryItemCheckEdit1";
     this.Seleccionar.ColumnEdit         = repositoryItemCheckEdit1;
     this.Seleccionar.FieldName          = "Seleccion";
     this.Seleccionar.Fixed        = DevExpress.XtraGrid.Columns.FixedStyle.Left;
     this.Seleccionar.MinWidth     = 40;
     this.Seleccionar.Name         = "Seleccionar";
     this.Seleccionar.UnboundType  = DevExpress.Data.UnboundColumnType.Boolean;
     this.Seleccionar.Visible      = true;
     this.Seleccionar.VisibleIndex = 0;
     this.Seleccionar.Width        = 100;
     //
     // CodigoEquipo
     //
     this.CodigoEquipo.Caption   = "Código";
     this.CodigoEquipo.FieldName = "CodigoEquipo";
     this.CodigoEquipo.MinWidth  = 40;
     this.CodigoEquipo.Name      = "CodigoEquipo";
     this.CodigoEquipo.OptionsColumn.AllowEdit = false;
     this.CodigoEquipo.UnboundType             = DevExpress.Data.UnboundColumnType.String;
     this.CodigoEquipo.Visible      = true;
     this.CodigoEquipo.VisibleIndex = 1;
     this.CodigoEquipo.Width        = 150;
     //
     // Marca
     //
     this.Marca.Caption   = "Marca";
     this.Marca.FieldName = "Marca";
     this.Marca.MinWidth  = 40;
     this.Marca.Name      = "Marca";
     this.Marca.OptionsColumn.AllowEdit = false;
     this.Marca.UnboundType             = DevExpress.Data.UnboundColumnType.String;
     this.Marca.Visible      = true;
     this.Marca.VisibleIndex = 2;
     this.Marca.Width        = 140;
     //
     // Modelo
     //
     this.Modelo.Caption   = "Modelo";
     this.Modelo.FieldName = "Modelo";
     this.Modelo.MinWidth  = 40;
     this.Modelo.Name      = "Modelo";
     this.Modelo.OptionsColumn.AllowEdit = false;
     this.Modelo.Visible      = true;
     this.Modelo.VisibleIndex = 3;
     this.Modelo.Width        = 160;
     //
     // IdLC
     //
     this.IdLC.Caption   = "IdLC";
     this.IdLC.FieldName = "IdEquipo";
     this.IdLC.Name      = "IdLC";
     //
     // IdSalidaDetalle
     //
     this.IdSalidaDetalle.Caption   = "IdSalidaDetalle";
     this.IdSalidaDetalle.FieldName = "IdSalidaDetalle";
     this.IdSalidaDetalle.Name      = "IdSalidaDetalle";
     //
     // IdSucursal
     //
     this.IdSucursal.Caption   = "IdSucursal";
     this.IdSucursal.FieldName = "IdSucursal";
     this.IdSucursal.Name      = "IdSucursal";
     //
     // IdSalida
     //
     this.IdSalida.Caption     = "IdSalida";
     this.IdSalida.FieldName   = "IdSalida";
     this.IdSalida.Name        = "IdSalida";
     this.IdSalida.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     //
     // GuiaSalida
     //
     this.GuiaSalida.Caption     = "GuiaSalida";
     this.GuiaSalida.FieldName   = "GuiaSalida";
     this.GuiaSalida.Name        = "GuiaSalida";
     this.GuiaSalida.UnboundType = DevExpress.Data.UnboundColumnType.String;
     //
     // frmProcesoCambioRazonSocialAgregarProducto
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.AutoSizeMode  = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BackColor     = System.Drawing.Color.White;
     this.ClientSize    = new System.Drawing.Size(647, 493);
     this.Controls.Add(this.btnDeseleccionarFilas);
     this.Controls.Add(this.btnSeleccionarFilas);
     this.Controls.Add(this.btnSeleccionar);
     this.Controls.Add(this.dgvEquipos);
     this.Controls.Add(this.btnCancelar);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frmProcesoCambioRazonSocialAgregarProducto";
     this.ShowIcon      = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Agregar Productos";
     ((System.ComponentModel.ISupportInitialize)(this.dgvEquipos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.vista)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(repositoryItemCheckEdit1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }